| | |
| | | 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) { |