Commit e4c66708 authored by lijin's avatar lijin

modified

parent 95af0221
......@@ -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"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment