diff --git a/sgzb-ui/src/views/cost/csotSettlement/component/finishTable.vue b/sgzb-ui/src/views/cost/csotSettlement/component/finishTable.vue index ef1eedd4..fa06917e 100644 --- a/sgzb-ui/src/views/cost/csotSettlement/component/finishTable.vue +++ b/sgzb-ui/src/views/cost/csotSettlement/component/finishTable.vue @@ -160,7 +160,7 @@ export default { type: [Number, String], default: () => 0, }, - // 列表类型 1.01承担方 2.03承担方 3.维修 4.未还 5.报废 6.待报废 + // 列表类型 1 01承担方 2 03承担方 3 维修 4 未还 5 报废 6 待报废 listType: { type: Number, default: () => 0, @@ -291,7 +291,7 @@ export default { min-height: 48px; border: 1px solid #7e7e7e; background: linear-gradient(to right, #b4b3b3, #edebeb); - align-items: center; + align-items: center !important; justify-content: space-around; .cost-bear { diff --git a/sgzb-ui/src/views/cost/csotSettlement/component/monthRecord.vue b/sgzb-ui/src/views/cost/csotSettlement/component/monthRecord.vue index f42e715d..d12d6182 100644 --- a/sgzb-ui/src/views/cost/csotSettlement/component/monthRecord.vue +++ b/sgzb-ui/src/views/cost/csotSettlement/component/monthRecord.vue @@ -11,12 +11,9 @@ @@ -61,23 +58,23 @@ > - - + + @@ -262,7 +262,7 @@ export default { // 页面标题 pageContent: '', // 查询月结记录的参数 - getRecordParams: [], + agreementId: '', } }, created() { @@ -356,8 +356,7 @@ export default { }, /** 月结记录 */ handleMonthRecord(row) { - this.getRecordParams.push({ agreementId: row.agreementId }) - console.log(this.getRecordParams, '月结记录') + this.agreementId = row.agreementId this.monthRecordDialogVisible = true }, /** 完工结算 结算明细*/ diff --git a/sgzb-ui/src/views/repairTest/repair/dialogOneForm.vue b/sgzb-ui/src/views/repairTest/repair/dialogOneForm.vue index 0db3c295..c729966c 100644 --- a/sgzb-ui/src/views/repairTest/repair/dialogOneForm.vue +++ b/sgzb-ui/src/views/repairTest/repair/dialogOneForm.vue @@ -98,6 +98,7 @@ > { + if (e.partType == 0) { + e.partCost = '' + } + }) let params = { taskId: this.rowObj.taskId, maId: this.rowObj.maId, @@ -591,6 +599,11 @@ export default { submitTwo() { this.$refs['dynamicValidateFormTwo'].validate((valid) => { if (valid) { + this.dynamicValidateFormTwo.premiumListTwo.forEach((e) => { + if (e.partType == 0) { + e.partCost = '' + } + }) // 数量管理传递参数 let params = { taskId: this.rowObj.taskId, diff --git a/sgzb-ui/src/views/repairTest/repair/dialogTwoForm.vue b/sgzb-ui/src/views/repairTest/repair/dialogTwoForm.vue index 006c0eaa..2fb4dfef 100644 --- a/sgzb-ui/src/views/repairTest/repair/dialogTwoForm.vue +++ b/sgzb-ui/src/views/repairTest/repair/dialogTwoForm.vue @@ -1,40 +1,90 @@