--no commit message
Showing
1 changed file
with
29 additions
and
22 deletions
... | @@ -20,7 +20,7 @@ | ... | @@ -20,7 +20,7 @@ |
20 | </div> | 20 | </div> |
21 | <el-row :gutter="10" v-if="ruleForm.slsq"> | 21 | <el-row :gutter="10" v-if="ruleForm.slsq"> |
22 | <el-col :span="8"> | 22 | <el-col :span="8"> |
23 | <el-form-item label="业务号:"> | 23 | <el-form-item label="业务号111:"> |
24 | <el-input disabled v-model="ruleForm.flow.ywh"></el-input> | 24 | <el-input disabled v-model="ruleForm.flow.ywh"></el-input> |
25 | </el-form-item> | 25 | </el-form-item> |
26 | </el-col> | 26 | </el-col> |
... | @@ -126,10 +126,10 @@ | ... | @@ -126,10 +126,10 @@ |
126 | </el-form-item> | 126 | </el-form-item> |
127 | </el-col> | 127 | </el-col> |
128 | 128 | ||
129 | <el-col :span="6" v-show="ruleForm.sldy.gyfs != '0'"> | 129 | <el-col :span="6" v-if="gyfs!=0"> |
130 | <el-form-item label="是否分别持证:"> | 130 | <el-form-item label="是否分别持证:"> |
131 | <el-radio-group | 131 | <el-radio-group |
132 | v-model="ruleForm.sldy.sqfbcz" | 132 | v-model="ruleForm.sldyList[0].sqfbcz" |
133 | :disabled="!ableOperation"> | 133 | :disabled="!ableOperation"> |
134 | <el-radio :label="1">是</el-radio> | 134 | <el-radio :label="1">是</el-radio> |
135 | <el-radio :label="0">否</el-radio> | 135 | <el-radio :label="0">否</el-radio> |
... | @@ -137,8 +137,7 @@ | ... | @@ -137,8 +137,7 @@ |
137 | </el-form-item> | 137 | </el-form-item> |
138 | </el-col> | 138 | </el-col> |
139 | <el-col | 139 | <el-col |
140 | :span="6" | 140 | :span="6" v-if="gyfs!=0"> |
141 | v-show="ruleForm.sldy.sqfbcz == '0' && ruleForm.sldy.gyfs != '0'"> | ||
142 | <el-form-item label="持证人:"> | 141 | <el-form-item label="持证人:"> |
143 | <el-select | 142 | <el-select |
144 | v-model="ruleForm.czr" | 143 | v-model="ruleForm.czr" |
... | @@ -158,7 +157,7 @@ | ... | @@ -158,7 +157,7 @@ |
158 | <qlrCommonTable | 157 | <qlrCommonTable |
159 | @upDateQlrxxList="upDateQlrxxList" | 158 | @upDateQlrxxList="upDateQlrxxList" |
160 | :tableData="ruleForm.qlrList" | 159 | :tableData="ruleForm.qlrList" |
161 | :gyfs="ruleForm.slsq.gyfs" | 160 | :gyfs="gyfs" |
162 | /> | 161 | /> |
163 | <div class="slxx_title title-block"> | 162 | <div class="slxx_title title-block"> |
164 | 登记原因 | 163 | 登记原因 |
... | @@ -193,22 +192,11 @@ | ... | @@ -193,22 +192,11 @@ |
193 | import { mapGetters } from "vuex"; | 192 | import { mapGetters } from "vuex"; |
194 | export default { | 193 | export default { |
195 | mixins: [ywmix], | 194 | mixins: [ywmix], |
196 | mounted (callbackfn, thisArg) { | 195 | computed: { |
197 | this.ableOperation = this.$parent.currentSelectTab.ableOperation | 196 | ...mapGetters(["dictData", "flag"]), |
198 | this.propsParam = this.$attrs; | ||
199 | var formdata = new FormData(); | ||
200 | formdata.append("bsmSldy", this.propsParam.bsmSldy); | ||
201 | formdata.append("djlx", this.propsParam.djlx); | ||
202 | formdata.append("bsmSlsq", this.bsmSlsq); | ||
203 | formdata.append("isEdit", this.ableOperation); | ||
204 | BatchInit(formdata).then((res) => { | ||
205 | if (res.code == 200) { | ||
206 | this.ruleForm = res.result; | ||
207 | this.czrOptions = this.ruleForm.qlrList; | ||
208 | this.splicingFdcq2Info(); | ||
209 | } | ||
210 | }) | ||
211 | }, | 197 | }, |
198 | components: { qlrCommonTable}, | ||
199 | |||
212 | // 更新义务人信息 | 200 | // 更新义务人信息 |
213 | /** | 201 | /** |
214 | * @description: 更新义务人信息 | 202 | * @description: 更新义务人信息 |
... | @@ -243,6 +231,7 @@ | ... | @@ -243,6 +231,7 @@ |
243 | //表单是否可操作 | 231 | //表单是否可操作 |
244 | ableOperation: true, | 232 | ableOperation: true, |
245 | rules: {}, | 233 | rules: {}, |
234 | gyfs:"", | ||
246 | bsmSlsq: this.$route.query.bsmSlsq,//受理申请标识码 | 235 | bsmSlsq: this.$route.query.bsmSlsq,//受理申请标识码 |
247 | splicingFdcq2: {//前端根据后台数组组装展示内容 | 236 | splicingFdcq2: {//前端根据后台数组组装展示内容 |
248 | fwxz: ''//房屋性质 | 237 | fwxz: ''//房屋性质 |
... | @@ -252,6 +241,24 @@ | ... | @@ -252,6 +241,24 @@ |
252 | } | 241 | } |
253 | } | 242 | } |
254 | }, | 243 | }, |
244 | mounted (callbackfn, thisArg) { | ||
245 | this.ableOperation = this.$parent.currentSelectTab.ableOperation | ||
246 | this.propsParam = this.$attrs; | ||
247 | var formdata = new FormData(); | ||
248 | formdata.append("bsmSldy", this.propsParam.bsmSldy); | ||
249 | formdata.append("djlx", this.propsParam.djlx); | ||
250 | formdata.append("bsmSlsq", this.bsmSlsq); | ||
251 | formdata.append("isEdit", this.ableOperation); | ||
252 | BatchInit(formdata).then((res) => { | ||
253 | if (res.code == 200) { | ||
254 | this.ruleForm = res.result; | ||
255 | this.czrOptions = this.ruleForm.qlrList; | ||
256 | console.log("ruleForm.sldyList[0].gyfsssssssssssssssssssss",this.ruleForm.sldyList[0].gyfs); | ||
257 | this.gyfs=this.ruleForm.sldyList[0].gyfs | ||
258 | this.splicingFdcq2Info(); | ||
259 | } | ||
260 | }) | ||
261 | }, | ||
255 | methods: { | 262 | methods: { |
256 | //组装房地产权通用信息 | 263 | //组装房地产权通用信息 |
257 | /** | 264 | /** |
... | @@ -293,7 +300,7 @@ | ... | @@ -293,7 +300,7 @@ |
293 | * @author: renchao | 300 | * @author: renchao |
294 | */ | 301 | */ |
295 | showCZInfo () { | 302 | showCZInfo () { |
296 | console.log(this.ruleForm.slsq.gyfs); | 303 | // console.log(this.ruleForm.slsq.gyfs); |
297 | }, | 304 | }, |
298 | // 更新义务人信息 | 305 | // 更新义务人信息 |
299 | /** | 306 | /** | ... | ... |
-
Please register or sign in to post a comment