diff --git a/src/views/modules/plugins/change/verifyForm.vue b/src/views/modules/plugins/change/verifyForm.vue index d99e2a74..4cc0f621 100644 --- a/src/views/modules/plugins/change/verifyForm.vue +++ b/src/views/modules/plugins/change/verifyForm.vue @@ -3,7 +3,7 @@
{{ detailInfo.name }} @@ -35,7 +35,7 @@ - @@ -62,15 +62,15 @@ label-width="150px" > {{ detailInfo.xxdz }} - + --> {{ detailInfo.moveOutDate }} @@ -167,10 +167,10 @@ style="display: block" > - {{ + {{ '迁往' + rootAgency.organizationName + '内其他区域' }} - 其他 + 其他 @@ -437,10 +437,10 @@ export default { this.dataForm.customerId = this.customerId this.dataForm.idCard = row.idCard this.dataForm.mobile = row.mobile - this.dataForm.type = row.outType - this.dataForm.outOfTime = row.moveOutDate + // this.dataForm.type = row.outType + // this.dataForm.outOfTime = row.moveOutDate this.dataForm.reason = row.deleteReason - this.dataForm.address = row.xxdz + // this.dataForm.address = row.xxdz // await this.loadHouseInfo(row.HOME_ID_VALUE) this.dataForm.name = row.name @@ -450,7 +450,7 @@ export default { this.confirmResult = (row.confirmResult == '1' || row.confirmResult == '2') ? row.confirmResult : '' } else this.confirmResult = '1' - this.reason = row.reason + // this.reason = row.reason await this.loadRootAgency() await this.getAgencylist() @@ -665,7 +665,8 @@ export default { }, 2000) this.$refs['ref_form'].validate((valid, messageObj) => { if (!valid) { - app.util.validateRule(messageObj) + // app.util.validateRule(messageObj) + console.log('submit error') } else { if (this.dataForm.type === 'in') { if (!this.dataForm.buildId) { @@ -681,7 +682,7 @@ export default { return false } } - this.saveForm() + // this.saveForm() } }) },