feat : 语音话术配置添加字段
This commit is contained in:
@@ -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: '创建时间',
|
||||||
|
|||||||
Reference in New Issue
Block a user