|
@@ -19,15 +19,7 @@
|
|
|
</template>
|
|
|
<!-- 表格操作 -->
|
|
|
<template #operation="scope">
|
|
|
- <el-button
|
|
|
- type="primary"
|
|
|
- link
|
|
|
- icon="View"
|
|
|
- @click="startDataAugmentation(scope.row)"
|
|
|
- v-if="scope.row.status == '0' || scope.row.status == '3' || scope.row.status == '4'"
|
|
|
- >
|
|
|
- 开始
|
|
|
- </el-button>
|
|
|
+ <el-button type="primary" link icon="View" @click="startDataAugmentation(scope.row)" v-if="scope.row.status == '0'"> 开始 </el-button>
|
|
|
<el-popconfirm title="确定终止此任务吗?" @confirm="stopDataAugmentation(scope.row)" v-if="scope.row.status == '1'">
|
|
|
<template #reference>
|
|
|
<el-button type="primary" link icon="View"> 终止 </el-button>
|