Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Sign in / Register
Toggle navigation
Z
zxn-adputin
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lijin
zxn-adputin
Commits
e4c66708
Commit
e4c66708
authored
Mar 11, 2025
by
lijin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
modified
parent
95af0221
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
7 deletions
+14
-7
CampaignTaskManage.vue
src/views/campaignTask/CampaignTaskManage.vue
+14
-7
No files found.
src/views/campaignTask/CampaignTaskManage.vue
View file @
e4c66708
...
...
@@ -59,13 +59,7 @@
{{
getTemplateName
(
scope
.
row
.
campaignTemplateId
)
}}
</
template
>
</el-table-column>
<el-table-column
prop=
"status"
label=
"状态"
width=
"120"
>
<
template
slot-scope=
"scope"
>
<el-tag
:type=
"getStatusType(scope.row.status)"
>
{{
getStatusText
(
scope
.
row
.
status
)
}}
</el-tag>
</
template
>
</el-table-column>
<el-table-column
prop=
"startTime"
label=
"开始时间"
width=
"180"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
startTime
?
moment
(
scope
.
row
.
startTime
).
format
(
'YYYY-MM-DD HH:mm:ss'
)
:
''
}}
...
...
@@ -81,6 +75,13 @@
{{
calculateDuration
(
scope
.
row
)
}}
</
template
>
</el-table-column>
<el-table-column
prop=
"status"
label=
"状态"
width=
"120"
>
<
template
slot-scope=
"scope"
>
<el-tag
:type=
"getStatusType(scope.row.status)"
>
{{
getStatusText
(
scope
.
row
.
status
)
}}
</el-tag>
</
template
>
</el-table-column>
<el-table-column
label=
"操作"
align=
"center"
>
<
template
slot-scope=
"scope"
>
<el-button
...
...
@@ -96,6 +97,12 @@
size=
"mini"
type=
"success"
@
click=
"handleStart(scope.row)"
>
开始
</el-button>
<el-button
v-else
size=
"mini"
type=
"success"
disabled
>
开始
</el-button>
<el-button
v-if=
"scope.row.status === 4"
size=
"mini"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
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 comment