Преглед на файлове

reactor:系统日志新增操作IP;数据共享平台新增字段展示;

zhangchong преди 10 месеца
родител
ревизия
5003c6aa37

+ 1 - 3
src/views/auxiliary/smartCallOut/components/Create-task.vue

@@ -95,12 +95,10 @@
 import { computed, defineAsyncComponent, nextTick, reactive, ref } from 'vue';
 import { ElMessage, ElMessageBox, FormInstance } from 'element-plus';
 import { downloadFileByStream, throttle } from '@/utils/tools';
-import { orderLexiconAdd } from '@/api/auxiliary/orderLexicon';
 import { removeDuplicate } from '@/utils/arrayOperation';
 import { shortcuts } from '@/utils/constants';
-import { formatDate } from '@/utils/formatTime';
 import { externalCitizenImport, externalCitizenTemplate } from '@/api/auxiliary/externalCitizen';
-import { smartCallOutTaskAdd, smartCallOutTemAvailable, smartCallOutTemList } from '@/api/auxiliary/smartCallOut';
+import { smartCallOutTaskAdd, smartCallOutTemAvailable } from '@/api/auxiliary/smartCallOut';
 
 const CitizenAdd = defineAsyncComponent(() => import('@/views/auxiliary/smsTask/components/Add-citizen.vue')); // 创建任务
 

+ 1 - 1
src/views/auxiliary/smartCallOut/task.vue

@@ -190,8 +190,8 @@ const onEnd = (row: any) => {
 		})
 		.catch(() => {});
 };
-const aiCallOutTaskState = ref([]);
 // 获取基础数据
+const aiCallOutTaskState = ref([]);
 const getBaseData = async () => {
 	try {
 		const { result } = await smartCallOutTaskBaseData();

+ 0 - 9
src/views/dataShare/callLog.vue

@@ -83,15 +83,6 @@ const columns = ref<any[]>([
     render: (scope) => {
       return <span>{formatDate(scope.row.overTime, 'YYYY-mm-dd HH:MM:SS')}</span>;
     },
-  },
-  {
-    prop: 'creationTime',
-    label: '入库时间',
-    align: 'center',
-    width: 170,
-    render: (scope) => {
-      return <span>{formatDate(scope.row.creationTime, 'YYYY-mm-dd HH:MM:SS')}</span>;
-    },
   },
 	{ prop: 'cpn', label: '主叫号码', width: 120, align: 'center' },
 	{ prop: 'cdpn', label: '被叫号码', width: 120, align: 'center' },

+ 9 - 0
src/views/dataShare/orderList.vue

@@ -80,6 +80,15 @@ const columns = ref<any[]>([
       return <span>{formatDate(scope.row.startTime, 'YYYY-mm-dd HH:MM:SS')}</span>;
     },
   },
+  {
+    prop: 'creationTime',
+    label: '入库时间',
+    align: 'center',
+    width: 170,
+    render: (scope) => {
+      return <span>{formatDate(scope.row.creationTime, 'YYYY-mm-dd HH:MM:SS')}</span>;
+    },
+  },
   {
     prop: 'firstSendProvinceTime',
     label: '第一次上传省上的时间',