From 02b1cc03f706da9d732fde391949b807cf44e16b Mon Sep 17 00:00:00 2001
From: odjbin <1042039504@qq.com>
Date: Sun, 13 Oct 2024 15:20:06 +0800
Subject: [PATCH] =?UTF-8?q?feat=20:=20=E8=AF=AD=E9=9F=B3=E8=AF=9D=E6=9C=AF?=
=?UTF-8?q?=E9=85=8D=E7=BD=AE=E6=B7=BB=E5=8A=A0=E5=AD=97=E6=AE=B5?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../voice-management/verbal-trick/index.vue | 24 +++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/src/views/voice-management/verbal-trick/index.vue b/src/views/voice-management/verbal-trick/index.vue
index 3fa7e40..a94aa1c 100644
--- a/src/views/voice-management/verbal-trick/index.vue
+++ b/src/views/voice-management/verbal-trick/index.vue
@@ -87,6 +87,30 @@ const verbalTrickTableConfig = reactive({
label: '内容',
align: 'center'
},
+ {
+ prop: 'calloff',
+ label: '是否挂断电话',
+ align: 'center',
+ currentRender: ({ row, index }) => {
+ if (row.calloff !== null) {
+ return ()
+ } else {
+ return '--'
+ }
+ }
+ },
+ {
+ prop: 'type',
+ label: '上下文类型',
+ align: 'center',
+ currentRender: ({ row, index }) => {
+ if (row.type !== null) {
+ return ()
+ } else {
+ return '--'
+ }
+ }
+ },
{
prop: 'createTime',
label: '创建时间',