Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
bdc
/
bdcjg-web
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
3a92924c
authored
2023-04-12 16:28:12 +0800
by
renchao@pashanhoo.com
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
style:定时任务
1 parent
d9026efd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
src/views/system/timedTask/index.vue
src/views/system/timedTask/index.vue
View file @
3a92924
...
...
@@ -20,7 +20,7 @@
</el-form>
</div>
<div
class=
"from-clues-content"
>
<lb-table
:page-size=
"pageData.size"
:current-page
.
sync=
"pageData.current"
:total=
"
pag
eData.total"
<lb-table
:page-size=
"pageData.size"
:current-page
.
sync=
"pageData.current"
:total=
"
tabl
eData.total"
@
size-change=
"handleSizeChange"
@
p-current-change=
"handleCurrentChange"
:column=
"tableData.columns"
:data=
"tableData.data"
>
</lb-table>
...
...
@@ -90,10 +90,11 @@ export default {
},
},
]),
data
:
[]
data
:
[],
total
:
0
},
pageData
:
{
total
:
0
,
pageSize
:
15
,
current
:
1
,
}
...
...
@@ -113,6 +114,7 @@ export default {
this
.
form
=
Object
.
assign
(
this
.
form
,
this
.
formData
)
let
{
result
}
=
await
sjsbTask
.
getTaskListByName
(
this
.
form
)
this
.
tableData
.
data
=
result
.
list
this
.
tableData
.
total
=
result
.
total
}
catch
(
error
)
{
this
.
message
=
error
}
...
...
Please
register
or
sign in
to post a comment