diff --git a/src/views/modules/plugins/rent/rentcontractinfo-add-or-update.vue b/src/views/modules/plugins/rent/rentcontractinfo-add-or-update.vue index 15027b974..5f1f6d4b9 100644 --- a/src/views/modules/plugins/rent/rentcontractinfo-add-or-update.vue +++ b/src/views/modules/plugins/rent/rentcontractinfo-add-or-update.vue @@ -275,6 +275,8 @@ +
+ @@ -360,7 +362,7 @@
- +
- +
居住成员信息
- - - - - - - - - - - - - - - - - - - + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
合同内容
@@ -210,7 +293,8 @@ export default { ], checkReason: '', checkVisible: false, - disabledBtn: false + disabledBtn: false, + mzOptions:[], } }, computed: { @@ -301,6 +385,7 @@ export default { ...this.dataForm, ...res.data } + this.getMz() }).catch(() => {}) }, // 打开审核不通过对话框 @@ -356,6 +441,15 @@ export default { downFile(fileUrl) { window.open(fileUrl) }, + getMz() { + this.$http.post(`/sys/dict/data/nation`).then(({ data: res }) => { + if (res.code !== 0) { + return this.$message.error(res.msg) + } + this.mzOptions = res.data + console.log(res) + }).catch(() => {}) + }, // 表单提交 dataFormSubmitHandle: debounce(function () { this.$refs['dataForm'].validate((valid) => {