From d77e006ffa14f076be9df4c5b77cf12ee6735434 Mon Sep 17 00:00:00 2001 From: haoxuan <haoxuan> Date: 星期三, 01 十一月 2023 18:53:23 +0800 Subject: [PATCH] 公海客户和我的客户 类型更换 --- src/views/service/serviceFollowup/index.vue | 10 +++++++++- 1 files changed, 9 insertions(+), 1 deletions(-) diff --git a/src/views/service/serviceFollowup/index.vue b/src/views/service/serviceFollowup/index.vue index f0265e2..f032a93 100644 --- a/src/views/service/serviceFollowup/index.vue +++ b/src/views/service/serviceFollowup/index.vue @@ -245,7 +245,15 @@ console.log(row) this.editConfig.visible = true this.editConfig.title = "缂栬緫" - this.editConfig.infomation = { ...row, service_number: row.ServiceOrder.serviceNumber } + this.editConfig.infomation = { + ...row, + service_number: row.ServiceOrder.serviceNumber, + satisfactionId: row.satisfactionId === 0 ? null : row.satisfactionId, + timelyRateId: row.timelyRateId === 0 ? null : row.timelyRateId, + solveRateId: row.solveRateId === 0 ? null : row.solveRateId, + oldMemberId: row.oldMemberId === 0 ? null : row.oldMemberId, + isVisitId: row.isVisitId === 0 ? null : row.isVisitId + } }, // 鍒犻櫎 delClick(id) { -- Gitblit v1.8.0