diff --git a/src/views/task-management/all-work-order/index.vue b/src/views/task-management/all-work-order/index.vue index 8df0912..8b5d480 100644 --- a/src/views/task-management/all-work-order/index.vue +++ b/src/views/task-management/all-work-order/index.vue @@ -91,7 +91,7 @@ const searchConfig = reactive([ component: 'el-date-picker', }, { label: '处理时间', - prop: 'te', + prop: 'processedTime', props: { placeholder: '请选择', clearable: true, @@ -258,6 +258,8 @@ const headBtnClick = (key) => { } const handleDetail = (row) => { + // console.log(row); + workDialogRef.value.open(row) rowData.value = row } diff --git a/src/views/task-management/components/WorkDialog.vue b/src/views/task-management/components/WorkDialog.vue index 6228256..92e428a 100644 --- a/src/views/task-management/components/WorkDialog.vue +++ b/src/views/task-management/components/WorkDialog.vue @@ -79,6 +79,8 @@ watch(() => props.rowData, (newRowData) => { item.data.sort((a, b) => b.answer_time- a.answer_time) opsCallList.value.push(item) }) + console.log(opsCallList.value); + //工单时间线 orderContent.value = [] // console.log(orderData.value); @@ -221,7 +223,7 @@ defineExpose({ color: info.callState === '通话中' ? '#6cc23a' : '#409eff' }">{{ info.callState }} --> {{ - info.answer_time ||'00 : 00'}} + info.answer_time ||'未接通'}} diff --git a/src/views/task-management/historical-work-order/index.vue b/src/views/task-management/historical-work-order/index.vue index 436aa20..30ee23a 100644 --- a/src/views/task-management/historical-work-order/index.vue +++ b/src/views/task-management/historical-work-order/index.vue @@ -92,7 +92,7 @@ const searchConfig = reactive([ component: 'el-date-picker', }, { label: '处理时间', - prop: 'te', + prop: 'processedTime', props: { placeholder: '请选择', clearable: true, diff --git a/src/views/task-management/pending-work-order/index.vue b/src/views/task-management/pending-work-order/index.vue index 457f5ef..4e9befb 100644 --- a/src/views/task-management/pending-work-order/index.vue +++ b/src/views/task-management/pending-work-order/index.vue @@ -92,7 +92,7 @@ const searchConfig = reactive([ component: 'el-date-picker', }, { label: '处理时间', - prop: 'te', + prop: 'processedTime', props: { placeholder: '请选择', clearable: true,