728aab71 by renchao@pashanhoo.com

style:权利人信息

1 parent a7720248
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-08-14 12:53:15
* @LastEditTime: 2023-08-14 13:14:44
-->
<template>
<!-- 受理信息 -->
......@@ -295,6 +295,7 @@
}
})
this.ruleForm.diyaq.sfczjzhxz = "0";
this.czrOptions = this.ruleForm.qlrList;
}
this.$endLoading();
})
......@@ -344,8 +345,6 @@
}
});
},
// 更新权利人信息
/**
* @description: 更新权利人信息
* @param {*} val
......
<!--
* @Description: 受理信息
* @Autor: renchao
* @LastEditTime: 2023-08-14 12:57:21
* @LastEditTime: 2023-08-14 13:15:04
-->
<template>
<div class="slxx">
......@@ -274,8 +274,6 @@
this.$set(this.ruleForm, "czr", item.zjh)
}
})
//初始化发证方式,1:小证,2:大正
this.ruleForm.slsq.fzfs == null ? this.ruleForm.slsq.fzfs = '1' : this.ruleForm.slsq.fzfs;
this.czrOptions = this.ruleForm.qlrList;
}
})
......
<!--
* @Description: 受理信息
* @Autor: renchao
* @LastEditTime: 2023-08-14 12:58:35
* @LastEditTime: 2023-08-14 13:15:34
-->
<template>
<div class="slxx">
......@@ -182,6 +182,11 @@
BatchInit(formdata).then((res) => {
if (res.code == 200) {
this.ruleForm = res.result;
this.ruleForm.qlrList.forEach((item, index) => {
if (item.sfczr == 1) {
this.$set(this.ruleForm, "czr", item.zjh)
}
})
this.czrOptions = this.ruleForm.qlrList;
this.splicingFdcq2Info();
}
......
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-08-14 13:03:32
* @LastEditTime: 2023-08-14 13:18:03
-->
<template>
<!-- 受理信息 -->
......@@ -163,7 +163,7 @@
</el-form-item>
</el-col>
</el-row>
<qlrCommonTable :tableData="ruleForm.qlrList" :gyfs="ruleForm.gyfs" :disabled="!ableOperation" />
<qlrCommonTable :tableData="ruleForm.qlrList" @upDateQlrxxList="upDateQlrxxList" :gyfs="ruleForm.gyfs" :disabled="!ableOperation" />
<div class="slxx_title title-block">
登记原因
<div class="triangle"></div>
......@@ -206,6 +206,11 @@
...res.result.qlxxdatas,
...res.result.jsydsyqdatas,
};
this.ruleForm.qlrList.forEach((item, index) => {
if (item.sfczr == 1) {
this.$set(this.ruleForm, "czr", item.zjh)
}
})
this.czrOptions = this.ruleForm.qlrList;
}
});
......@@ -267,9 +272,12 @@
*/
upDateTdytxxList (val) {
this.ruleForm.tdytqxList && (this.ruleForm.tdytqxList = _.cloneDeep(val));
this.czrOptions = this.ruleForm.qlrData;
this.key++;
},
upDateQlrxxList (val) {
this.ruleForm.qlrList = _.cloneDeep(val);
this.czrOptions = this.ruleForm.qlrList;
},
/**
* @description: list
* @param {*} bsmSldy
......
......@@ -307,10 +307,10 @@
this.$message({
showClose: true,
message: res.message,
type: "error",
});
type: "error"
})
}
});
})
},
/**
* @description: 权利人更新
......
......@@ -224,6 +224,11 @@
if (res.code === 200 && res.result) {
this.ruleForm = res.result;
this.czrOptions = this.ruleForm.qlrList;
this.ruleForm.qlrList.forEach((item, index) => {
if (item.sfczr == 1) {
this.$set(this.ruleForm, "czr", item.zjh)
}
})
} else {
this.$message.error(res.message);
}
......