|
|
@@ -169,6 +169,13 @@
|
|
|
@click="startRoboticFun(scope.row.taskId)"
|
|
|
v-hasPermi="['system:companyVoiceRobotic:list']"
|
|
|
>开启外呼任务</el-button> -->
|
|
|
+ <el-button
|
|
|
+ size="mini"
|
|
|
+ type="text"
|
|
|
+ v-if="scope.row.taskStatus == 1 && 1==2"
|
|
|
+ @click="pauseRoboticFun(scope.row.taskId)"
|
|
|
+ v-hasPermi="['system:companyVoiceRobotic:list']"
|
|
|
+ >暂停任务</el-button>
|
|
|
<el-button
|
|
|
size="mini"
|
|
|
type="text"
|
|
|
@@ -1742,6 +1749,10 @@ export default {
|
|
|
const item = (this.levelList || []).find(e => String(e.dictValue) === String(val))
|
|
|
return item ? item.dictLabel : val
|
|
|
},
|
|
|
+ //暂停任务
|
|
|
+ pauseRoboticFun(taskId){
|
|
|
+
|
|
|
+ }
|
|
|
}
|
|
|
};
|
|
|
</script>
|