Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
csbr-daop
/
fe-data-trusted-space
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
414ef60e
authored
2026-01-12 15:38:15 +0800
by
lihua
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
修改范围传参问题
1 parent
4232a5bb
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
4 deletions
src/components/Tools/table_search.vue
src/views/data_smart_contract/actionLogManage.vue
src/components/Tools/table_search.vue
View file @
414ef60
...
...
@@ -180,8 +180,7 @@ onMounted(() => {
</template>
<
template
v-else-if=
"item.type == 'date-time'"
>
<el-date-picker
v-model=
"formInline[item.field]"
type=
"datetimerange"
:start-placeholder=
"item.startPlaceholder ?? '开始时间'"
:default-time=
"item.defaultTime ?? [item.defaultStartTime, item.defaultEndTime]"
:end-placeholder=
"item.endPlaceholder ?? '结束时间'"
format=
"YYYY-MM-DD HH:mm:ss"
value-format=
"YYYY-MM-DD HH:mm:ss"
/>
:default-time=
"item.defaultTime ?? [item.defaultStartTime, item.defaultEndTime]"
:end-placeholder=
"item.endPlaceholder ?? '结束时间'"
/>
</
template
>
<
template
v-else-if=
"item.type == 'date-range'"
>
<el-date-picker
v-model=
"formInline[item.field]"
type=
"daterange"
:start-placeholder=
"item.startPlaceholder ?? '开始日期'"
format=
"YYYY-MM-DD"
value-format=
"YYYY-MM-DD"
...
...
src/views/data_smart_contract/actionLogManage.vue
View file @
414ef60
...
...
@@ -10,6 +10,8 @@ import {
getContractProcessLogDetail
}
from
"@/api/modules/dataSmartContract"
;
import
useUserStore
from
"@/store/modules/user"
;
import
Moment
from
'moment'
;
const
{
proxy
}
=
getCurrentInstance
()
as
any
;
const
route
=
useRoute
();
const
router
=
useRouter
();
...
...
@@ -128,8 +130,8 @@ const getProcessTableData = () => {
pageIndex
:
processPage
.
value
.
curr
,
pageSize
:
processPage
.
value
.
limit
,
bizName
:
processPage
.
value
.
bizName
,
operationTimeStart
:
processPage
.
value
.
operatorTime
?.[
0
],
operationTimeEnd
:
processPage
.
value
.
operatorTime
?.[
1
],
operationTimeStart
:
processPage
.
value
.
operatorTime
?.[
0
]
?
Moment
(
processPage
.
value
.
operatorTime
?.[
0
]).
format
(
'YYYY-MM-DD HH:mm:ss'
)
:
null
,
operationTimeEnd
:
processPage
.
value
.
operatorTime
?.[
1
]
?
Moment
(
processPage
.
value
.
operatorTime
?.[
1
]).
format
(
'YYYY-MM-DD HH:mm:ss'
)
:
null
,
nodeName
:
processPage
.
value
.
nodeName
}).
then
((
res
:
any
)
=>
{
processTableInfo
.
value
.
data
=
[];
...
...
Write
Preview
Styling with
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment