feat : 语音话术配置添加字段

This commit is contained in:
2024-10-13 15:20:06 +08:00
parent 80272fe80b
commit 02b1cc03f7

View File

@@ -87,6 +87,30 @@ const verbalTrickTableConfig = reactive({
label: '内容', label: '内容',
align: 'center' align: 'center'
}, },
{
prop: 'calloff',
label: '是否挂断电话',
align: 'center',
currentRender: ({ row, index }) => {
if (row.calloff !== null) {
return (<Tag dictType={'yes_no'} value={row.calloff} />)
} else {
return '--'
}
}
},
{
prop: 'type',
label: '上下文类型',
align: 'center',
currentRender: ({ row, index }) => {
if (row.type !== null) {
return (<Tag dictType={'context_type'} value={row.type} />)
} else {
return '--'
}
}
},
{ {
prop: 'createTime', prop: 'createTime',
label: '创建时间', label: '创建时间',