Explorar el Código

外呼记录详情展示优化

zyy hace 1 mes
padre
commit
7055de0d9b
Se han modificado 1 ficheros con 3 adiciones y 3 borrados
  1. 3 3
      src/views/taskStatistics/callLog/index.vue

+ 3 - 3
src/views/taskStatistics/callLog/index.vue

@@ -127,7 +127,7 @@
         <el-table v-loading="loading" :data="companySendMsgList">
             <!--      <el-table-column label="记录 ID" align="center" prop="logId" width="90" />-->
             <el-table-column label="任务 ID" align="center" prop="roboticId" width="150"/>
-            <el-table-column label="任务名称" align="center" prop="name" width="250"/>
+            <el-table-column label="任务名称" align="center" prop="roboticName" width="250"/>
             <el-table-column label="发送数量" align="center" prop="totalRecordCount" width="150"/>
             <el-table-column label="发送成功数量" align="center" prop="successCount" width="150"/>
             <el-table-column label="发送失败数量" align="center" prop="failCount" width="150"/>
@@ -278,7 +278,7 @@
 </template>
 
 <script>
-import {listCallphone, listCallPhoneByRoboticId, delSendmsg, getCallPhoneLogCount, exportCallphone} from '@/api/company/callphone'
+import {listCallphone, listCallPhoneByRoboticId, delSendmsg, getCallPhoneLogCount, exportCallphone, groupList} from '@/api/company/callphone'
 import {listAll as roboticListAll} from '@/api/company/companyVoiceRobotic'
 import {listAll as accountListAll} from '@/api/company/companyAccount'
 import CountTo from 'vue-count-to'
@@ -348,7 +348,7 @@ export default {
         },
         getList() {
             this.loading = true
-            listCallphone(this.getQueryData())
+            groupList(this.getQueryData())
                 .then((response) => {
                     this.companySendMsgList = response.rows || []
                     this.total = response.total || 0