diff --git a/src/api/dev/deviceRepairApplyDetailApi.js b/src/api/dev/deviceRepairApplyDetailApi.js index 58592e1a..a1b97a36 100644 --- a/src/api/dev/deviceRepairApplyDetailApi.js +++ b/src/api/dev/deviceRepairApplyDetailApi.js @@ -18,3 +18,13 @@ export function deviceRepairApplyDetailDiagnosis(query) { } ) } + +export function listByIdAndCode(query) { + return axios( + { + url: "/udi/device/repair/apply/listByIdAndCode", + method: "POST", + data: query + } + ) +} diff --git a/src/views/dev/deptDeviceCheck.vue b/src/views/dev/deptDeviceCheck.vue index 6f611fe8..da4c3daa 100644 --- a/src/views/dev/deptDeviceCheck.vue +++ b/src/views/dev/deptDeviceCheck.vue @@ -128,9 +128,13 @@ >巡检详情 - 维修 + >报修 + + 报修单 - - - - 内部维修 - 外部维修 - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - + + + + + + + + @@ -342,6 +345,53 @@ width="80%" > + + + + + + + + + + {{ `巡检设备--${selectRepairRow.deviceCode}--${selectRepairRow.productName}(${selectRepairRow.ggxh})` }} + + + + + {{ selectRepairRow.productName }} + {{ selectRepairRow.ggxh }} + {{ selectRepairRow.nameCode }} + {{ selectRepairRow.zczbhhzbapzbh }} + {{ selectRepairRow.manufactory }} + {{ selectRepairRow.supName }} + {{ selectRepairRow.batchNo }} + {{ selectRepairRow.serialNo }} + {{ selectRepairRow.udi }} + {{ selectRepairRow.productionDate }} + {{ selectRepairRow.expireDate }} + + + + + + + + + + + + + + { + load.close() + if (res.code != 20000) { + // this.$message.error(res.message) + return + } + // this.$message.success(res.message) + this.selectRepairRow = res.data + }).catch(() => { + load.close() + }) + }, commitRepair() { this.$refs.repairForm.validate(b => { if (!b) { return } let load = getLoading(this) - deviceCheckDetailRepair(this.repairRow).then(res => { + let pData = { + applyUserPhone:"", + taskId:"", + details: [] + } + pData.details.push({ + deviceCode: this.repairRow.deviceCode, + description: this.repairRow.description + }) + pData.applyUserPhone = this.repairRow.repairUserPhone + pData.taskId = this.repairRow.taskId + deviceRepairApplyAdd(pData).then(res => { load.close() if (res.code != 20000) { this.$message.error(res.message) diff --git a/src/views/dev/deviceAdd.vue b/src/views/dev/deviceAdd.vue index 002ee706..2c93419d 100644 --- a/src/views/dev/deviceAdd.vue +++ b/src/views/dev/deviceAdd.vue @@ -124,8 +124,8 @@ export default { this.$message.error(res.message) return } - this.$message.success(res.message) this.closeAddDevice(res.data); + this.$message.success("添加成功") }).catch(e => { }) }, diff --git a/src/views/dev/devicePlan.vue b/src/views/dev/devicePlan.vue index a8e75c05..29f7de51 100644 --- a/src/views/dev/devicePlan.vue +++ b/src/views/dev/devicePlan.vue @@ -92,7 +92,8 @@ {{ `计划详情 ${clickRow ? '——' + clickRow.name : ''}` }} - @@ -203,6 +204,7 @@ let itemQuery = { } let planData = { + planId: null, name: null, chargeDeptCode: null, startDate: null, diff --git a/src/views/dev/devicePlanEdit.vue b/src/views/dev/devicePlanEdit.vue index 3e2c9e71..65f8c4ed 100644 --- a/src/views/dev/devicePlanEdit.vue +++ b/src/views/dev/devicePlanEdit.vue @@ -248,20 +248,22 @@ export default { methods: { getDetailList() { - this.detailLoading = true - devicePlanDetailPage(this.detailQuery).then(res => { - this.detailLoading = false - if (res.code != 20000) { - this.$message.error(res.message) - return - } - this.detailList = res.data.list || [] - this.detailTotal = res.data.total || 0 - }).catch(e => { - this.detailList = [] - this.detailTotal = 0 - this.detailLoading = false - }) + if (this.detailQuery.planId != null){ + this.detailLoading = true + devicePlanDetailPage(this.detailQuery).then(res => { + this.detailLoading = false + if (res.code != 20000) { + this.$message.error(res.message) + return + } + this.detailList = res.data.list || [] + this.detailTotal = res.data.total || 0 + }).catch(e => { + this.detailList = [] + this.detailTotal = 0 + this.detailLoading = false + }) + } }, addDevice() { @@ -274,6 +276,7 @@ export default { closeAddDevice(data) { this.chooseDeviceFlag = false this.planData = data + this.detailQuery.planId = data.planId this.getDetailList() },