c8b8aa4f by renchao@pashanhoo.com

style:发证环节

1 parent 7cd220ab
1 <!-- 1 <!--
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-05-18 10:53:49 4 * @LastEditTime: 2023-07-24 10:22:41
5 --> 5 -->
6 <template> 6 <template>
7 <el-form :model="ruleForm" :rules="rules" ref="ruleForm" label-width="100px"> 7 <el-form :model="ruleForm" :rules="rules" ref="ruleForm" label-width="100px">
...@@ -123,6 +123,9 @@ ...@@ -123,6 +123,9 @@
123 getUnclaimedBdcqz({ bsmSlsq: Vue.prototype.$currentRoute.query.bsmSlsq }).then(res => { 123 getUnclaimedBdcqz({ bsmSlsq: Vue.prototype.$currentRoute.query.bsmSlsq }).then(res => {
124 if (res.code === 200) { 124 if (res.code === 200) {
125 this.tableData.data = res.result.list; 125 this.tableData.data = res.result.list;
126 if(this.tableData.data.length>0) {
127 this.ruleForm.lzrxm = this.tableData.data[0].qlr
128 }
126 this.ruleForm.fzrmc = res.result.fzrmc 129 this.ruleForm.fzrmc = res.result.fzrmc
127 this.ruleForm.fzsj = res.result.fzsj 130 this.ruleForm.fzsj = res.result.fzsj
128 this.ruleForm.fzsl = res.result.fzsl 131 this.ruleForm.fzsl = res.result.fzsl
...@@ -151,12 +154,13 @@ ...@@ -151,12 +154,13 @@
151 * @author: renchao 154 * @author: renchao
152 */ 155 */
153 handleSubmit () { 156 handleSubmit () {
154
155 this.$refs.ruleForm.validate(valid => { 157 this.$refs.ruleForm.validate(valid => {
156 if (valid) { 158 if (valid) {
157 issueCertificate(this.ruleForm).then(res => { 159 issueCertificate(this.ruleForm).then(res => {
158 if (res.code == 200) { 160 if (res.code == 200) {
159 this.$message.success('保存成功'); 161 this.$message.success('保存成功');
162 //刷新列表
163 store.dispatch('user/refreshPage', true)
160 this.$popupCacel() 164 this.$popupCacel()
161 } else { 165 } else {
162 this.$message.error(res.message) 166 this.$message.error(res.message)
......
1 <!-- 1 <!--
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-07-20 16:58:04 4 * @LastEditTime: 2023-07-24 10:15:01
5 --> 5 -->
6 <template> 6 <template>
7 <div class="from-clues"> 7 <div class="from-clues">
......
1 /* 1 /*
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-05-17 10:38:57 4 * @LastEditTime: 2023-07-24 10:24:48
5 */ 5 */
6 import filter from '@/utils/filter.js' 6 import filter from '@/utils/filter.js'
7 let vm = null 7 let vm = null
...@@ -23,8 +23,13 @@ class data extends filter { ...@@ -23,8 +23,13 @@ class data extends filter {
23 width: '50' 23 width: '50'
24 }, 24 },
25 { 25 {
26 prop: "fzrmc",
27 label: "发证人"
28 },
29 {
26 prop: "bdcqzlx", 30 prop: "bdcqzlx",
27 label: "不动产权证类型", 31 label: "不动产权证类型",
32 width: '130',
28 render: (h, scope) => { 33 render: (h, scope) => {
29 return ( 34 return (
30 <div> 35 <div>
......