任务记录列表

This commit is contained in:
shidongli 2024-08-12 16:28:01 +08:00
parent 7352ce430e
commit 34d45b2bbf

View File

@ -89,14 +89,13 @@
<span>{{ parseTime(scope.row.executeTime, "{y}-{m}-{d}") }}</span> <span>{{ parseTime(scope.row.executeTime, "{y}-{m}-{d}") }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="任务内容" align="center" prop="taskContent" :show-overflow-tooltip="true"> <el-table-column label="任务节点类型" align="center" prop="taskNodeType" :show-overflow-tooltip="true">
<template slot-scope="scope"> <template slot-scope="scope">
<span> <span>
{{ scope.row.taskContent == "PHONE_OUTBOUND" ? "电话外呼" : "" }} {{ scope.row.taskNodeType == "PHONE_OUTBOUND" ? "电话外呼" : "" }}
{{ scope.row.taskContent == "QUESTIONNAIRE_SCALE" ? "问卷量表" : "" }} {{ scope.row.taskNodeType == "QUESTIONNAIRE_SCALE" ? "问卷量表" : "" }}
{{ scope.row.taskContent == "PROPAGANDA_ARTICLE" ? "宣教文章" : "" }} {{ scope.row.taskNodeType == "PROPAGANDA_ARTICLE" ? "宣教文章" : "" }}
{{ scope.row.taskContent == "TEXT_REMIND" ? "文字提醒" : "" }} {{ scope.row.taskNodeType == "TEXT_REMIND" ? "文字提醒" : "" }}
{{ scope.row.taskContent == "ARTIFICIAL_FOLLOW_UP" ? "人工随访" : "" }}
</span> </span>
</template> </template>
</el-table-column> </el-table-column>