6eac9d1a by renchao@pashanhoo.com

Merge branch 'dev'

2 parents 9936cd3a 35140902
...@@ -77,3 +77,14 @@ export function getNewDate (type = 1) { ...@@ -77,3 +77,14 @@ export function getNewDate (type = 1) {
77 return `${year}${month}${day}${hours}${minutes}${seconds}秒` 77 return `${year}${month}${day}${hours}${minutes}${seconds}秒`
78 } 78 }
79 } 79 }
80
81 export function getNewDatesh () {
82 const now = new Date();
83 const year = now.getFullYear();
84 const month = String(now.getMonth() + 1).padStart(2, '0');
85 const day = String(now.getDate()).padStart(2, '0');
86 const hours = String(now.getHours()).padStart(2, '0');
87 const minutes = String(now.getMinutes()).padStart(2, '0');
88 const seconds = String(now.getSeconds()).padStart(2, '0');
89 return `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`
90 }
......
1 <!-- 1 <!--
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-05-17 10:41:20 4 * @LastEditTime: 2023-08-01 17:33:26
5 --> 5 -->
6 <template> 6 <template>
7 <div> 7 <div>
...@@ -11,21 +11,19 @@ ...@@ -11,21 +11,19 @@
11 :key="key" 11 :key="key"
12 :heightNumSetting="true" 12 :heightNumSetting="true"
13 :minHeight="150" 13 :minHeight="150"
14 :data="tableDataList" 14 :data="tableDataList">
15 >
16 </lb-table> 15 </lb-table>
17 <addQlr 16 <addQlr
18 v-model="dialog" 17 v-model="dialog"
19 :details="details" 18 :details="details"
20 :showButton="showButton" 19 :showButton="showButton"
21 @updateDetail="handleupdateDetail" 20 @updateDetail="handleupdateDetail" />
22 />
23 </div> 21 </div>
24 </template> 22 </template>
25 <script> 23 <script>
26 import addQlr from "./dialog/addQlr.vue"; 24 import addQlr from "./dialog/addQlr.vue";
27 import { mapGetters } from "vuex"; 25 import { mapGetters } from "vuex";
28 export default { 26 export default {
29 components: { 27 components: {
30 addQlr, 28 addQlr,
31 }, 29 },
...@@ -48,7 +46,7 @@ export default { ...@@ -48,7 +46,7 @@ export default {
48 default: "1", 46 default: "1",
49 }, 47 },
50 }, 48 },
51 data() { 49 data () {
52 return { 50 return {
53 key: 0, 51 key: 0,
54 dataIndex: 0, 52 dataIndex: 0,
...@@ -198,11 +196,11 @@ export default { ...@@ -198,11 +196,11 @@ export default {
198 deep: true, 196 deep: true,
199 }, 197 },
200 gyfs: { 198 gyfs: {
201 handler(newVal, oldValue) { 199 handler (newVal, oldValue) {
202 let dataList = _.cloneDeep(this.InformationTable); 200 let dataList = _.cloneDeep(this.InformationTable);
203 if (newVal == 0) { 201 if (newVal == 0) {
204 // this.column = _.cloneDeep(dataList).slice(1, dataList.length)
205 this.column = _.cloneDeep(dataList); 202 this.column = _.cloneDeep(dataList);
203 this.tableDataList = _.cloneDeep(this.tableData);
206 } else if (newVal == "1" || newVal == "3") { 204 } else if (newVal == "1" || newVal == "3") {
207 this.column = dataList; 205 this.column = dataList;
208 } else { 206 } else {
...@@ -214,6 +212,7 @@ export default { ...@@ -214,6 +212,7 @@ export default {
214 } 212 }
215 }, 213 },
216 immediate: true, 214 immediate: true,
215 deep: true,
217 }, 216 },
218 }, 217 },
219 methods: { 218 methods: {
...@@ -222,7 +221,7 @@ export default { ...@@ -222,7 +221,7 @@ export default {
222 * @param {*} value 221 * @param {*} value
223 * @author: renchao 222 * @author: renchao
224 */ 223 */
225 handleupdateDetail(value) { 224 handleupdateDetail (value) {
226 if (this.isaddupdate) { 225 if (this.isaddupdate) {
227 if (!_.isEqual(value, this.tableData)) { 226 if (!_.isEqual(value, this.tableData)) {
228 this.tableDataList[this.tableDataList.length] = _.cloneDeep(value); 227 this.tableDataList[this.tableDataList.length] = _.cloneDeep(value);
...@@ -236,12 +235,11 @@ export default { ...@@ -236,12 +235,11 @@ export default {
236 } 235 }
237 this.key++; 236 this.key++;
238 }, 237 },
239 // 新增
240 /** 238 /**
241 * @description: 新增 239 * @description: 新增
242 * @author: renchao 240 * @author: renchao
243 */ 241 */
244 addClick() { 242 addClick () {
245 if (this.gyfs == "0" && this.tableDataList.length > 0) { 243 if (this.gyfs == "0" && this.tableDataList.length > 0) {
246 this.$message.warning("当前共有方式为单独所有,无法添加多个权利人"); 244 this.$message.warning("当前共有方式为单独所有,无法添加多个权利人");
247 } else { 245 } else {
...@@ -257,7 +255,7 @@ export default { ...@@ -257,7 +255,7 @@ export default {
257 * @param {*} row 255 * @param {*} row
258 * @author: renchao 256 * @author: renchao
259 */ 257 */
260 deleClick(index, row) { 258 deleClick (index, row) {
261 this.$confirm("确定要删除吗, 是否继续?", "提示", { 259 this.$confirm("确定要删除吗, 是否继续?", "提示", {
262 confirmButtonText: "确定", 260 confirmButtonText: "确定",
263 cancelButtonText: "取消", 261 cancelButtonText: "取消",
...@@ -266,7 +264,7 @@ export default { ...@@ -266,7 +264,7 @@ export default {
266 .then(() => { 264 .then(() => {
267 this.tableData.splice(index, 1); 265 this.tableData.splice(index, 1);
268 }) 266 })
269 .catch(() => {}); 267 .catch(() => { });
270 }, 268 },
271 269
272 // 身份证读取 270 // 身份证读取
...@@ -274,14 +272,14 @@ export default { ...@@ -274,14 +272,14 @@ export default {
274 * @description: 身份证读取 272 * @description: 身份证读取
275 * @author: renchao 273 * @author: renchao
276 */ 274 */
277 readClick() {}, 275 readClick () { },
278 276
279 // 身份证读取按钮禁用 277 // 身份证读取按钮禁用
280 /** 278 /**
281 * @description: 身份证读取按钮禁用 279 * @description: 身份证读取按钮禁用
282 * @author: renchao 280 * @author: renchao
283 */ 281 */
284 onreadClick() { 282 onreadClick () {
285 this.$message.error("此阶段不可编辑"); 283 this.$message.error("此阶段不可编辑");
286 }, 284 },
287 // 修改 285 // 修改
...@@ -291,7 +289,7 @@ export default { ...@@ -291,7 +289,7 @@ export default {
291 * @param {*} row 289 * @param {*} row
292 * @author: renchao 290 * @author: renchao
293 */ 291 */
294 editClick(index, row) { 292 editClick (index, row) {
295 this.dataIndex = index; 293 this.dataIndex = index;
296 this.dialog = true; 294 this.dialog = true;
297 this.details = row; 295 this.details = row;
...@@ -303,11 +301,11 @@ export default { ...@@ -303,11 +301,11 @@ export default {
303 * @param {*} row 301 * @param {*} row
304 * @author: renchao 302 * @author: renchao
305 */ 303 */
306 queryViewClick(index, row) { 304 queryViewClick (index, row) {
307 this.dialog = true; 305 this.dialog = true;
308 this.details = row; 306 this.details = row;
309 }, 307 },
310 }, 308 },
311 }; 309 };
312 </script> 310 </script>
313 <style scoped lang="scss"></style> 311 <style scoped lang="scss"></style>
......
1 <!-- 1 <!--
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-05-17 10:41:20 4 * @LastEditTime: 2023-08-01 18:19:57
5 --> 5 -->
6 <template> 6 <template>
7 <div> 7 <div>
...@@ -11,21 +11,19 @@ ...@@ -11,21 +11,19 @@
11 :key="key" 11 :key="key"
12 :heightNumSetting="true" 12 :heightNumSetting="true"
13 :minHeight="150" 13 :minHeight="150"
14 :data="tableDataList" 14 :data="tableDataList">
15 >
16 </lb-table> 15 </lb-table>
17 <addYwr 16 <addYwr
18 v-model="dialog" 17 v-model="dialog"
19 :details="details" 18 :details="details"
20 :showButton="showButton" 19 :showButton="showButton"
21 @updateDetail="handleupdateDetail" 20 @updateDetail="handleupdateDetail" />
22 />
23 </div> 21 </div>
24 </template> 22 </template>
25 <script> 23 <script>
26 import addYwr from "./dialog/addYwr.vue"; 24 import addYwr from "./dialog/addYwr.vue";
27 import { mapGetters } from "vuex"; 25 import { mapGetters } from "vuex";
28 export default { 26 export default {
29 components: { 27 components: {
30 addYwr, 28 addYwr,
31 }, 29 },
...@@ -48,7 +46,7 @@ export default { ...@@ -48,7 +46,7 @@ export default {
48 default: "1", 46 default: "1",
49 }, 47 },
50 }, 48 },
51 data() { 49 data () {
52 return { 50 return {
53 key: 0, 51 key: 0,
54 dataIndex: 0, 52 dataIndex: 0,
...@@ -143,7 +141,7 @@ export default { ...@@ -143,7 +141,7 @@ export default {
143 render: (h, scope) => { 141 render: (h, scope) => {
144 return ( 142 return (
145 <div> 143 <div>
146 {!this.showButton? ( 144 {!this.showButton ? (
147 <el-button 145 <el-button
148 icon="el-icon-view" 146 icon="el-icon-view"
149 type="text" 147 type="text"
...@@ -198,7 +196,7 @@ export default { ...@@ -198,7 +196,7 @@ export default {
198 deep: true, 196 deep: true,
199 }, 197 },
200 gyfs: { 198 gyfs: {
201 handler(newVal, oldValue) { 199 handler (newVal, oldValue) {
202 let dataList = _.cloneDeep(this.InformationTable); 200 let dataList = _.cloneDeep(this.InformationTable);
203 if (newVal == 0) { 201 if (newVal == 0) {
204 // this.column = _.cloneDeep(dataList).slice(1, dataList.length) 202 // this.column = _.cloneDeep(dataList).slice(1, dataList.length)
...@@ -222,7 +220,7 @@ export default { ...@@ -222,7 +220,7 @@ export default {
222 * @param {*} value 220 * @param {*} value
223 * @author: renchao 221 * @author: renchao
224 */ 222 */
225 handleupdateDetail(value) { 223 handleupdateDetail (value) {
226 if (this.isaddupdate) { 224 if (this.isaddupdate) {
227 if (!_.isEqual(value, this.tableData)) { 225 if (!_.isEqual(value, this.tableData)) {
228 this.tableDataList[this.tableDataList.length] = _.cloneDeep(value); 226 this.tableDataList[this.tableDataList.length] = _.cloneDeep(value);
...@@ -236,12 +234,11 @@ export default { ...@@ -236,12 +234,11 @@ export default {
236 } 234 }
237 this.key++; 235 this.key++;
238 }, 236 },
239 // 新增
240 /** 237 /**
241 * @description: 新增 238 * @description: 新增
242 * @author: renchao 239 * @author: renchao
243 */ 240 */
244 addClick() { 241 addClick () {
245 if (this.gyfs == "0" && this.tableDataList.length > 0) { 242 if (this.gyfs == "0" && this.tableDataList.length > 0) {
246 this.$message.warning("当前共有方式为单独所有,无法添加多个权利人"); 243 this.$message.warning("当前共有方式为单独所有,无法添加多个权利人");
247 } else { 244 } else {
...@@ -257,7 +254,7 @@ export default { ...@@ -257,7 +254,7 @@ export default {
257 * @param {*} row 254 * @param {*} row
258 * @author: renchao 255 * @author: renchao
259 */ 256 */
260 deleClick(index, row) { 257 deleClick (index, row) {
261 this.$confirm("确定要删除吗, 是否继续?", "提示", { 258 this.$confirm("确定要删除吗, 是否继续?", "提示", {
262 confirmButtonText: "确定", 259 confirmButtonText: "确定",
263 cancelButtonText: "取消", 260 cancelButtonText: "取消",
...@@ -266,7 +263,7 @@ export default { ...@@ -266,7 +263,7 @@ export default {
266 .then(() => { 263 .then(() => {
267 this.tableData.splice(index, 1); 264 this.tableData.splice(index, 1);
268 }) 265 })
269 .catch(() => {}); 266 .catch(() => { });
270 }, 267 },
271 268
272 // 身份证读取 269 // 身份证读取
...@@ -274,7 +271,7 @@ export default { ...@@ -274,7 +271,7 @@ export default {
274 * @description: 身份证读取 271 * @description: 身份证读取
275 * @author: renchao 272 * @author: renchao
276 */ 273 */
277 readClick() {}, 274 readClick () { },
278 275
279 // 修改 276 // 修改
280 /** 277 /**
...@@ -283,7 +280,7 @@ export default { ...@@ -283,7 +280,7 @@ export default {
283 * @param {*} row 280 * @param {*} row
284 * @author: renchao 281 * @author: renchao
285 */ 282 */
286 editClick(index, row) { 283 editClick (index, row) {
287 this.dataIndex = index; 284 this.dataIndex = index;
288 this.dialog = true; 285 this.dialog = true;
289 this.details = row; 286 this.details = row;
...@@ -295,10 +292,10 @@ export default { ...@@ -295,10 +292,10 @@ export default {
295 * @param {*} row 292 * @param {*} row
296 * @author: renchao 293 * @author: renchao
297 */ 294 */
298 queryViewClick(index, row) { 295 queryViewClick (index, row) {
299 this.dialog = true; 296 this.dialog = true;
300 this.details = row; 297 this.details = row;
301 }, 298 },
302 }, 299 },
303 }; 300 };
304 </script> 301 </script>
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 :show-message="false" 4 :show-message="false"
5 * @LastEditTime: 2023-08-01 09:45:22 5 * @LastEditTime: 2023-08-02 08:57:33
6 --> 6 -->
7 <template> 7 <template>
8 <!-- 受理信息 --> 8 <!-- 受理信息 -->
...@@ -456,7 +456,7 @@ ...@@ -456,7 +456,7 @@
456 ztQlxxList: [], 456 ztQlxxList: [],
457 rules: { 457 rules: {
458 ztQlxxrules: [ 458 ztQlxxrules: [
459 { required: true, message: "抵押不动产信息", trigger: "change" }, 459 { required: true, message: "抵押不动产信息", trigger: "blur" },
460 ], 460 ],
461 bdcqzhrules: [ 461 bdcqzhrules: [
462 { required: true, message: "不动产登记证明号", trigger: "blur" }, 462 { required: true, message: "不动产登记证明号", trigger: "blur" },
...@@ -464,9 +464,12 @@ ...@@ -464,9 +464,12 @@
464 djjgrules: [{ required: true, message: "登记机构", trigger: "blur" }], 464 djjgrules: [{ required: true, message: "登记机构", trigger: "blur" }],
465 dbrrules: [{ required: true, message: "登簿人", trigger: "blur" }], 465 dbrrules: [{ required: true, message: "登簿人", trigger: "blur" }],
466 djsjrules: [{ required: true, message: "登记时间", trigger: "blur" }], 466 djsjrules: [{ required: true, message: "登记时间", trigger: "blur" }],
467 sfbxfrules: [{ required: true, message: "是否被续封", trigger: "change" }] 467 ywhrules: [{ required: true, message: "业务号", trigger: "blur" }],
468 } 468 sfbxfrules: [
469 } 469 { required: true, message: "是否被续封", trigger: "change" },
470 ],
471 },
472 };
470 }, 473 },
471 created () { 474 created () {
472 this.loadData(); 475 this.loadData();
...@@ -560,44 +563,8 @@ ...@@ -560,44 +563,8 @@
560 */ 563 */
561 onSubmit () { 564 onSubmit () {
562 this.$refs.ruleForm.validate((valid) => { 565 this.$refs.ruleForm.validate((valid) => {
566 console.log("valid", valid);
563 if (valid) { 567 if (valid) {
564 // if (this.ruleForm.qlrData.length == 0) {
565 // this.$message({
566 // showClose: true,
567 // message: "请确认权利人信息",
568 // type: "error",
569 // });
570 // return false;
571 // }
572
573 // if (this.ruleForm.qlxx.gyfs == "0") {
574 // if (this.ruleForm.qlrData.length > 1) {
575 // this.$message({
576 // showClose: true,
577 // message: "共有方式:单独所有,权利人只能是一个人",
578 // type: "error",
579 // });
580 // return false;
581 // }
582 // this.ruleForm.qlrData[0].sfczr = "1";
583 // }
584 // if (this.ruleForm.qlxx.gyfs == "1") {
585 // //是否分别持证
586 // if (this.ruleForm.qlxx.sqfbcz == "1") {
587 // //是
588 // this.ruleForm.qlrData.forEach((item, index) => {
589 // item.sfczr = "1";
590 // });
591 // } else {
592 // this.ruleForm.qlrData.forEach((item, index) => {
593 // if (item.zjh == this.ruleForm.czr) {
594 // item.sfczr = "1";
595 // } else {
596 // item.sfczr = "0";
597 // }
598 // });
599 // }
600 // }
601 save(this.ruleForm).then((res) => { 568 save(this.ruleForm).then((res) => {
602 if (res.code === 200) { 569 if (res.code === 200) {
603 this.$message({ 570 this.$message({
...@@ -605,6 +572,7 @@ ...@@ -605,6 +572,7 @@
605 message: "保存成功!", 572 message: "保存成功!",
606 type: "success", 573 type: "success",
607 }); 574 });
575 this.$parent.changeywh()
608 this.$store.dispatch("user/refreshPage", true); 576 this.$store.dispatch("user/refreshPage", true);
609 } else { 577 } else {
610 this.$message({ 578 this.$message({
......
1 <!-- 1 <!--
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-07-21 09:48:32 4 * @LastEditTime: 2023-08-02 08:38:11
5 --> 5 -->
6 <template> 6 <template>
7 <!-- 受理信息 --> 7 <!-- 受理信息 -->
...@@ -169,8 +169,7 @@ ...@@ -169,8 +169,7 @@
169 <el-input 169 <el-input
170 v-model="ruleForm.fdcq2.qjjg" 170 v-model="ruleForm.fdcq2.qjjg"
171 style="width: 500%" 171 style="width: 500%"
172 oninput="value = (value.match(/^\d*(\.?\d{0,2})/g)[0]) || null" 172 oninput="value = (value.match(/^\d*(\.?\d{0,2})/g)[0]) || null"></el-input>
173 ></el-input>
174 <el-select v-model="ruleForm.fdcq2.jedw"> 173 <el-select v-model="ruleForm.fdcq2.jedw">
175 <el-option 174 <el-option
176 v-for="item in dictData['A57']" 175 v-for="item in dictData['A57']"
...@@ -403,7 +402,7 @@ ...@@ -403,7 +402,7 @@
403 <el-form-item label="共有方式:"> 402 <el-form-item label="共有方式:">
404 <el-radio-group 403 <el-radio-group
405 :disabled="!ableOperation" 404 :disabled="!ableOperation"
406 v-model="ruleForm.qlxx.gyfs"> 405 v-model="ruleForm.sldy.gyfs">
407 <el-radio label="0">单独所有</el-radio> 406 <el-radio label="0">单独所有</el-radio>
408 <el-radio label="1">共同共有</el-radio> 407 <el-radio label="1">共同共有</el-radio>
409 <el-radio label="2">按份所有</el-radio> 408 <el-radio label="2">按份所有</el-radio>
...@@ -411,6 +410,33 @@ ...@@ -411,6 +410,33 @@
411 </el-radio-group> 410 </el-radio-group>
412 </el-form-item> 411 </el-form-item>
413 </el-col> 412 </el-col>
413 <el-col :span="6" v-show="ruleForm.sldy.gyfs != '0'">
414 <el-form-item label="是否分别持证:">
415 <el-radio-group
416 v-model="ruleForm.sldy.sqfbcz"
417 :disabled="!ableOperation">
418 <el-radio :label="1"></el-radio>
419 <el-radio :label="0"></el-radio>
420 </el-radio-group>
421 </el-form-item>
422 </el-col>
423 <el-col
424 :span="6"
425 v-show="ruleForm.sldy.sqfbcz == '0' && ruleForm.sldy.gyfs == '1'">
426 <el-form-item label="持证人:">
427 <el-select
428 v-model="ruleForm.czr"
429 placeholder="持证人"
430 :disabled="!ableOperation">
431 <el-option
432 v-for="item in czrOptions"
433 :key="item.zjh"
434 :label="item.sqrmc"
435 :value="item.zjh">
436 </el-option>
437 </el-select>
438 </el-form-item>
439 </el-col>
414 </el-row> 440 </el-row>
415 <qlrCommonTable 441 <qlrCommonTable
416 :tableData="ruleForm.qlrData" 442 :tableData="ruleForm.qlrData"
...@@ -429,11 +455,13 @@ ...@@ -429,11 +455,13 @@
429 </template> 455 </template>
430 <script> 456 <script>
431 import { mapGetters } from "vuex"; 457 import { mapGetters } from "vuex";
458 import ywmix from "@/views/ywbl/mixin/index"
432 import { init, getSsQlxx, save } from "@/api/djbRepair.js"; 459 import { init, getSsQlxx, save } from "@/api/djbRepair.js";
433 import qlrCommonTable from "@/views/djbworkflow/components/qlrCommonTable"; 460 import qlrCommonTable from "@/views/djbworkflow/components/qlrCommonTable";
434 import selectTable from "@/components/selectTable/index.vue"; 461 import selectTable from "@/components/selectTable/index.vue";
435 import tdytTable from "@/views/workflow/components/tdytTable"; 462 import tdytTable from "@/views/workflow/components/tdytTable";
436 export default { 463 export default {
464 mixins: [ywmix],
437 components: { qlrCommonTable, tdytTable, selectTable }, 465 components: { qlrCommonTable, tdytTable, selectTable },
438 computed: { 466 computed: {
439 ...mapGetters(["dictData", "flag"]), 467 ...mapGetters(["dictData", "flag"]),
...@@ -448,7 +476,7 @@ ...@@ -448,7 +476,7 @@
448 }, 476 },
449 data () { 477 data () {
450 return { 478 return {
451 mjdw:"1", 479 mjdw: "1",
452 ssqlxxshow: true, 480 ssqlxxshow: true,
453 props: { 481 props: {
454 label: "bdcqzh", 482 label: "bdcqzh",
...@@ -721,8 +749,8 @@ ...@@ -721,8 +749,8 @@
721 @import "~@/styles/slxx/slxx.scss"; 749 @import "~@/styles/slxx/slxx.scss";
722 .el-date-editor.el-input { 750 .el-date-editor.el-input {
723 width: 100%; 751 width: 100%;
724 } 752 }
725 .el-table__row { 753 .el-table__row {
726 height: 30px !important; 754 height: 30px !important;
727 } 755 }
728 </style> 756 </style>
......
1 <!-- 1 <!--
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-07-31 14:30:56 4 * @LastEditTime: 2023-08-02 08:38:26
5 --> 5 -->
6 <template> 6 <template>
7 <!-- 受理信息 --> 7 <!-- 受理信息 -->
...@@ -252,7 +252,7 @@ ...@@ -252,7 +252,7 @@
252 <el-form-item label="共有方式:"> 252 <el-form-item label="共有方式:">
253 <el-radio-group 253 <el-radio-group
254 :disabled="!ableOperation" 254 :disabled="!ableOperation"
255 v-model="ruleForm.qlxx.gyfs"> 255 v-model="ruleForm.sldy.gyfs">
256 <el-radio label="0">单独所有</el-radio> 256 <el-radio label="0">单独所有</el-radio>
257 <el-radio label="1">共同共有</el-radio> 257 <el-radio label="1">共同共有</el-radio>
258 <el-radio label="2">按份所有</el-radio> 258 <el-radio label="2">按份所有</el-radio>
...@@ -260,6 +260,33 @@ ...@@ -260,6 +260,33 @@
260 </el-radio-group> 260 </el-radio-group>
261 </el-form-item> 261 </el-form-item>
262 </el-col> 262 </el-col>
263 <el-col :span="6" v-show="ruleForm.sldy.gyfs != '0'">
264 <el-form-item label="是否分别持证:">
265 <el-radio-group
266 v-model="ruleForm.sldy.sqfbcz"
267 :disabled="!ableOperation">
268 <el-radio :label="1"></el-radio>
269 <el-radio :label="0"></el-radio>
270 </el-radio-group>
271 </el-form-item>
272 </el-col>
273 <el-col
274 :span="6"
275 v-show="ruleForm.sldy.sqfbcz == '0' && ruleForm.sldy.gyfs == '1'">
276 <el-form-item label="持证人:">
277 <el-select
278 v-model="ruleForm.czr"
279 placeholder="持证人"
280 :disabled="!ableOperation">
281 <el-option
282 v-for="item in czrOptions"
283 :key="item.zjh"
284 :label="item.sqrmc"
285 :value="item.zjh">
286 </el-option>
287 </el-select>
288 </el-form-item>
289 </el-col>
263 </el-row> 290 </el-row>
264 <qlrCommonTable 291 <qlrCommonTable
265 :tableData="ruleForm.qlrData" 292 :tableData="ruleForm.qlrData"
...@@ -278,13 +305,15 @@ ...@@ -278,13 +305,15 @@
278 </div> 305 </div>
279 </template> 306 </template>
280 <script> 307 <script>
281 import store from "@/store/index.js";
282 import { mapGetters } from "vuex"; 308 import { mapGetters } from "vuex";
309 import store from "@/store/index.js";
310 import ywmix from "@/views/ywbl/mixin/index"
283 import { init, getSsQlxx, save } from "@/api/djbRepair.js"; 311 import { init, getSsQlxx, save } from "@/api/djbRepair.js";
284 import qlrCommonTable from "@/views/djbworkflow/components/qlrCommonTable"; 312 import qlrCommonTable from "@/views/djbworkflow/components/qlrCommonTable";
285 import selectTable from "@/components/selectTable/index.vue";
286 import tdytTable from "@/views/workflow/components/tdytTable"; 313 import tdytTable from "@/views/workflow/components/tdytTable";
314 import selectTable from "@/components/selectTable/index.vue";
287 export default { 315 export default {
316 mixins: [ywmix],
288 components: { qlrCommonTable, tdytTable, selectTable }, 317 components: { qlrCommonTable, tdytTable, selectTable },
289 computed: { 318 computed: {
290 ...mapGetters(["dictData", "flag"]), 319 ...mapGetters(["dictData", "flag"]),
...@@ -292,7 +321,6 @@ ...@@ -292,7 +321,6 @@
292 editDisabled () { 321 editDisabled () {
293 if (!this.ableOperation) { 322 if (!this.ableOperation) {
294 //只读状态 323 //只读状态
295 console.log("只读");
296 return true; 324 return true;
297 } 325 }
298 return false; 326 return false;
...@@ -379,17 +407,8 @@ ...@@ -379,17 +407,8 @@
379 }, 407 },
380 }; 408 };
381 }, 409 },
382 /** 410 created () {
383 * @description: djlxchange 411 this.loadData();
384 * @param {*} val
385 * @author: renchao
386 */
387 djlxchange (val) {
388 if (val == null || val == 100) {
389 this.ssqlxxshow = false;
390 } else {
391 this.ssqlxxshow = true;
392 }
393 }, 412 },
394 mounted () { 413 mounted () {
395 this.ableOperation = this.$parent.ableOperation 414 this.ableOperation = this.$parent.ableOperation
...@@ -410,7 +429,6 @@ ...@@ -410,7 +429,6 @@
410 * @author: renchao 429 * @author: renchao
411 */ 430 */
412 djlxchange (val) { 431 djlxchange (val) {
413 console.log("val", val);
414 if (val == null || val == 100) { 432 if (val == null || val == 100) {
415 this.ssqlxxshow = false; 433 this.ssqlxxshow = false;
416 } else { 434 } else {
...@@ -480,8 +498,9 @@ ...@@ -480,8 +498,9 @@
480 this.czrOptions = this.ruleForm.qlrData; 498 this.czrOptions = this.ruleForm.qlrData;
481 this.key++; 499 this.key++;
482 }, 500 },
501 // 保存
483 /** 502 /**
484 * @description: 保存 503 * @description: onSubmit
485 * @author: renchao 504 * @author: renchao
486 */ 505 */
487 onSubmit () { 506 onSubmit () {
...@@ -531,6 +550,7 @@ ...@@ -531,6 +550,7 @@
531 message: "保存成功!", 550 message: "保存成功!",
532 type: "success", 551 type: "success",
533 }); 552 });
553 this.$parent.changeywh()
534 this.$store.dispatch("user/refreshPage", true); 554 this.$store.dispatch("user/refreshPage", true);
535 } else { 555 } else {
536 this.$message({ 556 this.$message({
......
1 <!-- 1 <!--
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-08-01 09:46:29 4 * @LastEditTime: 2023-08-02 08:38:41
5 --> 5 -->
6 <template> 6 <template>
7 <!-- 受理信息 --> 7 <!-- 受理信息 -->
...@@ -348,7 +348,7 @@ ...@@ -348,7 +348,7 @@
348 <el-form-item label="共有方式:"> 348 <el-form-item label="共有方式:">
349 <el-radio-group 349 <el-radio-group
350 :disabled="!ableOperation" 350 :disabled="!ableOperation"
351 v-model="ruleForm.qlxx.gyfs"> 351 v-model="ruleForm.sldy.gyfs">
352 <el-radio label="0">单独所有</el-radio> 352 <el-radio label="0">单独所有</el-radio>
353 <el-radio label="1">共同共有</el-radio> 353 <el-radio label="1">共同共有</el-radio>
354 <el-radio label="2">按份所有</el-radio> 354 <el-radio label="2">按份所有</el-radio>
...@@ -356,6 +356,33 @@ ...@@ -356,6 +356,33 @@
356 </el-radio-group> 356 </el-radio-group>
357 </el-form-item> 357 </el-form-item>
358 </el-col> 358 </el-col>
359 <el-col :span="6" v-show="ruleForm.sldy.gyfs != '0'">
360 <el-form-item label="是否分别持证:">
361 <el-radio-group
362 v-model="ruleForm.sldy.sqfbcz"
363 :disabled="!ableOperation">
364 <el-radio :label="1"></el-radio>
365 <el-radio :label="0"></el-radio>
366 </el-radio-group>
367 </el-form-item>
368 </el-col>
369 <el-col
370 :span="6"
371 v-show="ruleForm.sldy.sqfbcz == '0' && ruleForm.sldy.gyfs == '1'">
372 <el-form-item label="持证人:">
373 <el-select
374 v-model="ruleForm.czr"
375 placeholder="持证人"
376 :disabled="!ableOperation">
377 <el-option
378 v-for="item in czrOptions"
379 :key="item.zjh"
380 :label="item.sqrmc"
381 :value="item.zjh">
382 </el-option>
383 </el-select>
384 </el-form-item>
385 </el-col>
359 </el-row> 386 </el-row>
360 <qlrCommonTable 387 <qlrCommonTable
361 :tableData="ruleForm.qlrData" 388 :tableData="ruleForm.qlrData"
...@@ -373,13 +400,15 @@ ...@@ -373,13 +400,15 @@
373 </div> 400 </div>
374 </template> 401 </template>
375 <script> 402 <script>
376 import store from "@/store/index.js";
377 import { mapGetters } from "vuex"; 403 import { mapGetters } from "vuex";
404 import store from "@/store/index.js";
405 import ywmix from "@/views/ywbl/mixin/index"
378 import { init, getSsQlxx, save } from "@/api/djbRepair.js"; 406 import { init, getSsQlxx, save } from "@/api/djbRepair.js";
379 import qlrCommonTable from "@/views/djbworkflow/components/qlrCommonTable"; 407 import qlrCommonTable from "@/views/djbworkflow/components/qlrCommonTable";
380 import selectTable from "@/components/selectTable/index.vue"; 408 import selectTable from "@/components/selectTable/index.vue";
381 import tdytTable from "@/views/workflow/components/tdytTable"; 409 import tdytTable from "@/views/workflow/components/tdytTable";
382 export default { 410 export default {
411 mixins: [ywmix],
383 components: { qlrCommonTable, tdytTable, selectTable }, 412 components: { qlrCommonTable, tdytTable, selectTable },
384 computed: { 413 computed: {
385 ...mapGetters(["dictData", "flag"]), 414 ...mapGetters(["dictData", "flag"]),
...@@ -387,7 +416,6 @@ ...@@ -387,7 +416,6 @@
387 editDisabled () { 416 editDisabled () {
388 if (!this.ableOperation) { 417 if (!this.ableOperation) {
389 //只读状态 418 //只读状态
390 console.log("只读");
391 return true; 419 return true;
392 } 420 }
393 return false; 421 return false;
...@@ -615,6 +643,7 @@ ...@@ -615,6 +643,7 @@
615 message: "保存成功!", 643 message: "保存成功!",
616 type: "success", 644 type: "success",
617 }); 645 });
646 this.$parent.changeywh()
618 this.$store.dispatch("user/refreshPage", true); 647 this.$store.dispatch("user/refreshPage", true);
619 } else { 648 } else {
620 this.$message({ 649 this.$message({
...@@ -625,7 +654,7 @@ ...@@ -625,7 +654,7 @@
625 } 654 }
626 }); 655 });
627 } else { 656 } else {
628 return false; 657 return false
629 } 658 }
630 }) 659 })
631 } 660 }
......
1 <!-- 1 <!--
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-07-11 09:37:55 4 * @LastEditTime: 2023-08-01 17:41:49
5 --> 5 -->
6 <template> 6 <template>
7 <div> 7 <div>
...@@ -52,7 +52,7 @@ ...@@ -52,7 +52,7 @@
52 width: '50', 52 width: '50',
53 renderHeader: (h, scope) => { 53 renderHeader: (h, scope) => {
54 return <div> { 54 return <div> {
55 this.isDisabled? '序号' : <i class="el-icon-plus pointer" onClick={() => { this.addClick() }}></i> 55 this.isDisabled ? '序号' : <i class="el-icon-plus pointer" onClick={() => { this.addClick() }}></i>
56 } 56 }
57 </div> 57 </div>
58 }, 58 },
...@@ -60,7 +60,7 @@ ...@@ -60,7 +60,7 @@
60 return ( 60 return (
61 <div> 61 <div>
62 { 62 {
63 this.isDisabled? <span>{scope.$index + 1}</span> : 63 this.isDisabled ? <span>{scope.$index + 1}</span> :
64 <i class="el-icon-minus pointer" onClick={() => { this.deleClick(scope.$index, scope.row) }}></i> 64 <i class="el-icon-minus pointer" onClick={() => { this.deleClick(scope.$index, scope.row) }}></i>
65 } 65 }
66 </div> 66 </div>
...@@ -141,11 +141,11 @@ ...@@ -141,11 +141,11 @@
141 }, 141 },
142 gyfs: { 142 gyfs: {
143 handler (newVal, oldValue) { 143 handler (newVal, oldValue) {
144 console.log(newVal, 'newValnewValnewValnewVal', this.tableData);
144 let dataList = _.cloneDeep(this.InformationTable) 145 let dataList = _.cloneDeep(this.InformationTable)
145 if (newVal == 0) { 146 if (newVal == 0) {
146 // this.column = _.cloneDeep(dataList).slice(1, dataList.length)
147 this.column = _.cloneDeep(dataList) 147 this.column = _.cloneDeep(dataList)
148 148 this.tableDataList = _.cloneDeep(this.tableData)
149 } else if ((newVal == '1' || newVal == '3')) { 149 } else if ((newVal == '1' || newVal == '3')) {
150 this.column = dataList 150 this.column = dataList
151 } else { 151 } else {
......
...@@ -18,14 +18,14 @@ ...@@ -18,14 +18,14 @@
18 > 18 >
19 <div class="spyj_form"> 19 <div class="spyj_form">
20 <div class="item_left"> 20 <div class="item_left">
21 <div class="right">意见</div> 21 <div class="right">{{ item.jdmc }}意见</div>
22 </div> 22 </div>
23 <div class="item_right"> 23 <div class="item_right">
24 <el-row> 24 <el-row>
25 <el-col :span="24"> 25 <el-col :span="24">
26 <el-form-item label-width="0" class="opinion_item"> 26 <el-form-item label-width="0" class="opinion_item">
27 <el-input 27 <el-input
28 :disabled="!ableOperation&&item.show" 28 :disabled="!ableOperation || item.show"
29 type="textarea" 29 type="textarea"
30 :rows="4" 30 :rows="4"
31 class="opinion" 31 class="opinion"
...@@ -44,23 +44,12 @@ ...@@ -44,23 +44,12 @@
44 <el-row> 44 <el-row>
45 <el-col :span="16"> 45 <el-col :span="16">
46 <el-form-item label="审查人"> 46 <el-form-item label="审查人">
47 <el-input 47 {{ item.shryxm }}
48 :disabled="!ableOperation"
49 v-model="item.shryxm"
50 ></el-input>
51 </el-form-item> 48 </el-form-item>
52 </el-col> 49 </el-col>
53 <el-col :span="8"> 50 <el-col :span="8">
54 <el-form-item class="sjxzq" label="审核时间"> 51 <el-form-item disabled label="审核时间" :key="refresh">
55 <el-date-picker 52 {{ item.shjssj }}
56 :disabled="!ableOperation"
57 v-model="item.shkssj"
58 type="date"
59 placeholder="选择日期"
60 value-format="yyyy-MM-dd HH:mm:ss"
61 format="yyyy-MM-dd"
62 >
63 </el-date-picker>
64 </el-form-item> 53 </el-form-item>
65 </el-col> 54 </el-col>
66 </el-row> 55 </el-row>
...@@ -78,6 +67,7 @@ ...@@ -78,6 +67,7 @@
78 <script> 67 <script>
79 import { saveSpyjBySlsq, getSpyjList } from "@/api/opinion.js"; 68 import { saveSpyjBySlsq, getSpyjList } from "@/api/opinion.js";
80 import { mapGetters } from "vuex"; 69 import { mapGetters } from "vuex";
70 import { getNewDatesh } from "@/utils/util";
81 export default { 71 export default {
82 computed: { 72 computed: {
83 ...mapGetters(["userData", "yjsqOptions", "userInfo"]), 73 ...mapGetters(["userData", "yjsqOptions", "userInfo"]),
...@@ -87,6 +77,7 @@ export default { ...@@ -87,6 +77,7 @@ export default {
87 isNoData: false, 77 isNoData: false,
88 currentindex: 0, 78 currentindex: 0,
89 bsmSlsq: "", 79 bsmSlsq: "",
80 refresh: 10,
90 ableOperation: false, 81 ableOperation: false,
91 bsmSlsq: this.$route.query.bsmSlsq, 82 bsmSlsq: this.$route.query.bsmSlsq,
92 bestepid: this.$route.query.bestepid, 83 bestepid: this.$route.query.bestepid,
...@@ -102,7 +93,6 @@ export default { ...@@ -102,7 +93,6 @@ export default {
102 watch: { 93 watch: {
103 yjsqOptions: { 94 yjsqOptions: {
104 handler(val) { 95 handler(val) {
105 console.log("val", val);
106 this.add(val); 96 this.add(val);
107 }, 97 },
108 deep: true, 98 deep: true,
...@@ -112,7 +102,6 @@ export default { ...@@ -112,7 +102,6 @@ export default {
112 created() {}, 102 created() {},
113 mounted() { 103 mounted() {
114 this.propsParam = this.$attrs; 104 this.propsParam = this.$attrs;
115 console.log("this.$parent.dqhj111111111111111", this.$parent.dqhj);
116 this.ableOperation = this.$parent.currentSelectTab.ableOperation; 105 this.ableOperation = this.$parent.currentSelectTab.ableOperation;
117 // this.ableOperation = this.$parent.ableOperation; 106 // this.ableOperation = this.$parent.ableOperation;
118 this.getShList(); 107 this.getShList();
...@@ -141,7 +130,6 @@ export default { ...@@ -141,7 +130,6 @@ export default {
141 getShList() { 130 getShList() {
142 let that = this; 131 let that = this;
143 this.$startLoading(); 132 this.$startLoading();
144 console.log(this.userInfo);
145 var formdata = new FormData(); 133 var formdata = new FormData();
146 formdata.append("bsmBusiness", this.propsParam.bsmBusiness); 134 formdata.append("bsmBusiness", this.propsParam.bsmBusiness);
147 formdata.append("bestepid", this.$route.query.bestepid); 135 formdata.append("bestepid", this.$route.query.bestepid);
...@@ -150,11 +138,32 @@ export default { ...@@ -150,11 +138,32 @@ export default {
150 this.$endLoading(); 138 this.$endLoading();
151 if (res.code === 200 && res.result) { 139 if (res.code === 200 && res.result) {
152 this.tableData = res.result; 140 this.tableData = res.result;
153 if (this.tableData.length == 0) { 141 var index = this.tableData.findIndex(
154 console.log(0); 142 (item) => item.jddm === this.$parent.dqhj
155 this.tableData.push({ jdmc: "初审" }); 143 );
144 if (index == -1) {
145 switch (this.$parent.dqhj) {
146 case "cs":
147 this.tableData.push({ jdmc: "初审", jddm: "cs", sxh: 1 });
148 break;
149 case "fs":
150 this.tableData.push({ jdmc: "复审", jddm: "fs", sxh: 2 });
151 break;
152 case "hd":
153 this.tableData.push({ jdmc: "核定", jddm: "hd", sxh: 3 });
154 break;
155 }
156 }
157 this.tableData.forEach((item) => {
158 item.show = true;
159 if (this.$parent.dqhj == item.jddm) {
160 item.show = false;
156 } 161 }
157 console.log("this.tableData", this.tableData); 162 item.shjssj = getNewDatesh();
163 item.shkssj = getNewDatesh();
164 item["shryxm"] = this.userInfo.name;
165 item["userid"] = this.userInfo.id;
166 });
158 } 167 }
159 }); 168 });
160 }, 169 },
...@@ -172,17 +181,8 @@ export default { ...@@ -172,17 +181,8 @@ export default {
172 this.tableData.forEach((item, index) => { 181 this.tableData.forEach((item, index) => {
173 item["bsmBusiness"] = this.propsParam.bsmBusiness; 182 item["bsmBusiness"] = this.propsParam.bsmBusiness;
174 item["stepid"] = this.$route.query.bestepid; 183 item["stepid"] = this.$route.query.bestepid;
175 item["shryxm"] = this.userInfo.name;
176 item["userid"] = this.userInfo.id;
177 item["shjssj"] = item.shkssj;
178 item["czjg"] = "1"; 184 item["czjg"] = "1";
179 item["jddm"] = "cs"
180 item["jdmc"] = "初审"
181 item["sxh"] = "1"
182
183
184 }); 185 });
185 console.log("this.tableData", this.tableData);
186 saveSpyjBySlsq(this.tableData).then((res) => { 186 saveSpyjBySlsq(this.tableData).then((res) => {
187 if (res.code === 200) { 187 if (res.code === 200) {
188 this.$message.success("保存成功"); 188 this.$message.success("保存成功");
......
1 /*
2 * @Description:
3 * @Autor: renchao
4 * @LastEditTime: 2023-08-01 18:05:25
5 */
6 export default {
7 data () {
8 return {
9 }
10 },
11 watch: {
12 'ruleForm.sldy.gyfs': {
13 handler: function (val, oldVal) {
14 if (val == '0' && this.ruleForm.qlrList.length > 1) {
15 this.ruleForm.sldy.gyfs = oldVal
16 this.$message({
17 message: '单独所有只能选择一个,请先删除再切换',
18 type: 'warning'
19 })
20 }
21 },
22 immediate: true
23 }
24 },
25 }
1 <!-- 1 <!--
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-07-11 10:00:43 4 * @LastEditTime: 2023-08-02 08:34:59
5 --> 5 -->
6 <template> 6 <template>
7 <!-- 受理信息 --> 7 <!-- 受理信息 -->
...@@ -194,7 +194,7 @@ ...@@ -194,7 +194,7 @@
194 <div class="triangle"></div> 194 <div class="triangle"></div>
195 </div> 195 </div>
196 <el-row :gutter="10"> 196 <el-row :gutter="10">
197 <el-col :span="14"> 197 <el-col :span="12">
198 <el-form-item label="共有方式:"> 198 <el-form-item label="共有方式:">
199 <el-radio-group :disabled="!ableOperation" v-model="ruleForm.sldy.gyfs"> 199 <el-radio-group :disabled="!ableOperation" v-model="ruleForm.sldy.gyfs">
200 <el-radio label="0">单独所有</el-radio> 200 <el-radio label="0">单独所有</el-radio>
...@@ -204,18 +204,29 @@ ...@@ -204,18 +204,29 @@
204 </el-radio-group> 204 </el-radio-group>
205 </el-form-item> 205 </el-form-item>
206 </el-col> 206 </el-col>
207 <el-col :span="5" v-show="ruleForm.sldy.gyfs == '2'"> 207 <el-col :span="6" v-show="ruleForm.sldy.gyfs != '0'">
208 <el-form-item label="是否分别持证:"> 208 <el-form-item label="是否分别持证:">
209 <el-radio-group v-model="ruleForm.sldy.sqfbcz" :disabled="!ableOperation"> 209 <el-radio-group
210 <el-radio label="1"></el-radio> 210 v-model="ruleForm.sldy.sqfbcz"
211 <el-radio label="0"></el-radio> 211 :disabled="!ableOperation">
212 <el-radio :label="1"></el-radio>
213 <el-radio :label="0"></el-radio>
212 </el-radio-group> 214 </el-radio-group>
213 </el-form-item> 215 </el-form-item>
214 </el-col> 216 </el-col>
215 <el-col :span="5" v-show="ruleForm.sldy.gyfs == '2'"> 217 <el-col
218 :span="6"
219 v-show="ruleForm.sldy.sqfbcz == '0' && ruleForm.sldy.gyfs == '1'">
216 <el-form-item label="持证人:"> 220 <el-form-item label="持证人:">
217 <el-select v-model="ruleForm.czr" placeholder="持证人" :disabled="!ableOperation"> 221 <el-select
218 <el-option v-for="item in czrOptions" :key="item.value" :label="item.label" :value="item.value"> 222 v-model="ruleForm.czr"
223 placeholder="持证人"
224 :disabled="!ableOperation">
225 <el-option
226 v-for="item in czrOptions"
227 :key="item.zjh"
228 :label="item.sqrmc"
229 :value="item.zjh">
219 </el-option> 230 </el-option>
220 </el-select> 231 </el-select>
221 </el-form-item> 232 </el-form-item>
......
1 <!-- 1 <!--
2 * @Description: 房屋多幢受理信息 2 * @Description: 房屋多幢受理信息
3 * @Autor: ssq 3 * @Autor: ssq
4 * @LastEditTime: 2023年07月27日 19:38:26 4 * @LastEditTime: 2023-08-02 08:52:42
5 --> 5 -->
6 <template> 6 <template>
7 <div class="slxx"> 7 <div class="slxx">
...@@ -134,9 +134,9 @@ ...@@ -134,9 +134,9 @@
134 <div class="triangle"></div> 134 <div class="triangle"></div>
135 </div> 135 </div>
136 <el-row :gutter="10"> 136 <el-row :gutter="10">
137 <el-col :span="14" v-if="ruleForm.qlxx"> 137 <el-col :span="12" v-if="ruleForm.qlxx">
138 <el-form-item label="共有方式:"> 138 <el-form-item label="共有方式:">
139 <el-radio-group :disabled="!ableOperation" @change="showCZInfo" 139 <el-radio-group :disabled="!ableOperation"
140 v-model="ruleForm.sldy.gyfs"> 140 v-model="ruleForm.sldy.gyfs">
141 <el-radio label="0">单独所有</el-radio> 141 <el-radio label="0">单独所有</el-radio>
142 <el-radio label="1">共同共有</el-radio> 142 <el-radio label="1">共同共有</el-radio>
...@@ -145,16 +145,16 @@ ...@@ -145,16 +145,16 @@
145 </el-radio-group> 145 </el-radio-group>
146 </el-form-item> 146 </el-form-item>
147 </el-col> 147 </el-col>
148 <el-col :span="5"> 148 <!-- <el-col :span="5">
149 <el-form-item label="发证方式:"> 149 <el-form-item label="发证方式:">
150 <el-radio-group v-model="ruleForm.slsq.fzfs" :disabled="!ableOperation"> 150 <el-radio-group v-model="ruleForm.slsq.fzfs" :disabled="!ableOperation">
151 <el-radio label="1">小证</el-radio> 151 <el-radio label="1">小证</el-radio>
152 <el-radio label="2">大证</el-radio> 152 <el-radio label="2">大证</el-radio>
153 </el-radio-group> 153 </el-radio-group>
154 </el-form-item> 154 </el-form-item>
155 </el-col> 155 </el-col> -->
156 156
157 <el-col :span="5" v-show="ruleForm.sldy.gyfs == '2'"> 157 <el-col :span="6" v-show="ruleForm.sldy.gyfs == '2'">
158 <el-form-item label="是否分别持证:"> 158 <el-form-item label="是否分别持证:">
159 <el-radio-group v-model="ruleForm.sldy.sqfbcz" :disabled="!ableOperation"> 159 <el-radio-group v-model="ruleForm.sldy.sqfbcz" :disabled="!ableOperation">
160 <el-radio label="1"></el-radio> 160 <el-radio label="1"></el-radio>
...@@ -162,7 +162,7 @@ ...@@ -162,7 +162,7 @@
162 </el-radio-group> 162 </el-radio-group>
163 </el-form-item> 163 </el-form-item>
164 </el-col> 164 </el-col>
165 <el-col :span="5" v-show="ruleForm.sldy.gyfs == '2'"> 165 <el-col :span="6" v-show="ruleForm.sldy.gyfs == '2'">
166 <el-form-item label="持证人:"> 166 <el-form-item label="持证人:">
167 <el-select v-model="ruleForm.slsq.czr" placeholder="持证人" :disabled="!ableOperation"> 167 <el-select v-model="ruleForm.slsq.czr" placeholder="持证人" :disabled="!ableOperation">
168 <el-option v-for="item in czrOptions" :key="item.value" :label="item.label" :value="item.value"> 168 <el-option v-for="item in czrOptions" :key="item.value" :label="item.label" :value="item.value">
...@@ -205,11 +205,13 @@ ...@@ -205,11 +205,13 @@
205 </div> 205 </div>
206 </template> 206 </template>
207 <script> 207 <script>
208 import ywmix from "@/views/ywbl/mixin/index"
208 import qlrCommonTable from "@/views/workflow/components/qlrCommonTable"; 209 import qlrCommonTable from "@/views/workflow/components/qlrCommonTable";
209 import tdytTable from "@/views/workflow/components/tdytTable"; 210 import tdytTable from "@/views/workflow/components/tdytTable";
210 import { Init, saveData } from "@/api/workflow/fwsyq1Flow.js"; 211 import { Init, saveData } from "@/api/workflow/fwsyq1Flow.js";
211 import { mapGetters } from "vuex"; 212 import { mapGetters } from "vuex";
212 export default { 213 export default {
214 mixins: [ywmix],
213 mounted () { 215 mounted () {
214 this.ableOperation = this.$parent.currentSelectTab.ableOperation 216 this.ableOperation = this.$parent.currentSelectTab.ableOperation
215 this.propsParam = this.$attrs; 217 this.propsParam = this.$attrs;
...@@ -285,13 +287,6 @@ ...@@ -285,13 +287,6 @@
285 upDateQlrxxList (val) { 287 upDateQlrxxList (val) {
286 this.ruleForm.qlrList = _.cloneDeep(val); 288 this.ruleForm.qlrList = _.cloneDeep(val);
287 }, 289 },
288 /**
289 * @description: showCZInfo
290 * @author: renchao
291 */
292 showCZInfo () {
293 console.log(this.ruleForm.slsq.gyfs);
294 },
295 // 更新权利人信息 290 // 更新权利人信息
296 /** 291 /**
297 * @description: 更新权利人信息 292 * @description: 更新权利人信息
......
1 <!-- 1 <!--
2 * @Description: 受理信息 2 * @Description: 受理信息
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-07-21 14:13:57 4 * @LastEditTime: 2023-08-02 08:53:43
5 --> 5 -->
6 <template> 6 <template>
7 <div class="slxx"> 7 <div class="slxx">
...@@ -176,9 +176,9 @@ ...@@ -176,9 +176,9 @@
176 <div class="triangle"></div> 176 <div class="triangle"></div>
177 </div> 177 </div>
178 <el-row :gutter="10"> 178 <el-row :gutter="10">
179 <el-col :span="14" v-if="ruleForm.qlxx"> 179 <el-col :span="12" v-if="ruleForm.qlxx">
180 <el-form-item label="共有方式:"> 180 <el-form-item label="共有方式:">
181 <el-radio-group :disabled="!ableOperation" @change="showCZInfo" 181 <el-radio-group :disabled="!ableOperation"
182 v-model="ruleForm.sldy.gyfs"> 182 v-model="ruleForm.sldy.gyfs">
183 <el-radio label="0">单独所有</el-radio> 183 <el-radio label="0">单独所有</el-radio>
184 <el-radio label="1">共同共有</el-radio> 184 <el-radio label="1">共同共有</el-radio>
...@@ -187,27 +187,38 @@ ...@@ -187,27 +187,38 @@
187 </el-radio-group> 187 </el-radio-group>
188 </el-form-item> 188 </el-form-item>
189 </el-col> 189 </el-col>
190 <el-col :span="5"> 190 <!-- <el-col :span="5">
191 <el-form-item label="发证方式:"> 191 <el-form-item label="发证方式:">
192 <el-radio-group v-model="ruleForm.slsq.fzfs" :disabled="!ableOperation"> 192 <el-radio-group v-model="ruleForm.slsq.fzfs" :disabled="!ableOperation">
193 <el-radio label="1">小证</el-radio> 193 <el-radio label="1">小证</el-radio>
194 <el-radio label="2">大证</el-radio> 194 <el-radio label="2">大证</el-radio>
195 </el-radio-group> 195 </el-radio-group>
196 </el-form-item> 196 </el-form-item>
197 </el-col> 197 </el-col> -->
198 198
199 <el-col :span="5" v-show="ruleForm.sldy.gyfs == '2'"> 199 <el-col :span="6" v-show="ruleForm.sldy.gyfs != '0'">
200 <el-form-item label="是否分别持证:"> 200 <el-form-item label="是否分别持证:">
201 <el-radio-group v-model="ruleForm.sldy.sqfbcz" :disabled="!ableOperation"> 201 <el-radio-group
202 <el-radio label="1"></el-radio> 202 v-model="ruleForm.sldy.sqfbcz"
203 <el-radio label="0"></el-radio> 203 :disabled="!ableOperation">
204 <el-radio :label="1"></el-radio>
205 <el-radio :label="0"></el-radio>
204 </el-radio-group> 206 </el-radio-group>
205 </el-form-item> 207 </el-form-item>
206 </el-col> 208 </el-col>
207 <el-col :span="5" v-show="ruleForm.sldy.gyfs == '2'"> 209 <el-col
210 :span="6"
211 v-show="ruleForm.sldy.sqfbcz == '0' && ruleForm.sldy.gyfs == '1'">
208 <el-form-item label="持证人:"> 212 <el-form-item label="持证人:">
209 <el-select v-model="ruleForm.slsq.czr" placeholder="持证人" :disabled="!ableOperation"> 213 <el-select
210 <el-option v-for="item in czrOptions" :key="item.value" :label="item.label" :value="item.value"> 214 v-model="ruleForm.czr"
215 placeholder="持证人"
216 :disabled="!ableOperation">
217 <el-option
218 v-for="item in czrOptions"
219 :key="item.zjh"
220 :label="item.sqrmc"
221 :value="item.zjh">
211 </el-option> 222 </el-option>
212 </el-select> 223 </el-select>
213 </el-form-item> 224 </el-form-item>
...@@ -247,11 +258,13 @@ ...@@ -247,11 +258,13 @@
247 </div> 258 </div>
248 </template> 259 </template>
249 <script> 260 <script>
261 import ywmix from "@/views/ywbl/mixin/index"
250 import qlrCommonTable from "@/views/workflow/components/qlrCommonTable"; 262 import qlrCommonTable from "@/views/workflow/components/qlrCommonTable";
251 import tdytTable from "@/views/workflow/components/tdytTable"; 263 import tdytTable from "@/views/workflow/components/tdytTable";
252 import { Init, saveData } from "@/api/workflow/fwsyqFlow.js"; 264 import { Init, saveData } from "@/api/workflow/fwsyqFlow.js";
253 import { mapGetters } from "vuex"; 265 import { mapGetters } from "vuex";
254 export default { 266 export default {
267 mixins: [ywmix],
255 mounted () { 268 mounted () {
256 this.ableOperation = this.$parent.currentSelectTab.ableOperation 269 this.ableOperation = this.$parent.currentSelectTab.ableOperation
257 this.propsParam = this.$attrs; 270 this.propsParam = this.$attrs;
...@@ -276,7 +289,7 @@ ...@@ -276,7 +289,7 @@
276 }, 289 },
277 data () { 290 data () {
278 return { 291 return {
279 mjdw:"1", 292 mjdw: "1",
280 disabled: true, 293 disabled: true,
281 tdytOption: [], 294 tdytOption: [],
282 czrOptions: [], 295 czrOptions: [],
...@@ -309,7 +322,6 @@ ...@@ -309,7 +322,6 @@
309 } 322 }
310 }, 323 },
311 methods: { 324 methods: {
312 // 更新土地用途信息
313 /** 325 /**
314 * @description: 更新土地用途信息 326 * @description: 更新土地用途信息
315 * @param {*} val 327 * @param {*} val
...@@ -319,7 +331,6 @@ ...@@ -319,7 +331,6 @@
319 this.ruleForm.tdytqxList && (this.ruleForm.tdytqxList = _.cloneDeep(val)); 331 this.ruleForm.tdytqxList && (this.ruleForm.tdytqxList = _.cloneDeep(val));
320 this.key++; 332 this.key++;
321 }, 333 },
322 // 更新权利人信息
323 /** 334 /**
324 * @description: 更新权利人信息 335 * @description: 更新权利人信息
325 * @param {*} val 336 * @param {*} val
...@@ -329,14 +340,6 @@ ...@@ -329,14 +340,6 @@
329 this.ruleForm.qlrList = _.cloneDeep(val); 340 this.ruleForm.qlrList = _.cloneDeep(val);
330 }, 341 },
331 /** 342 /**
332 * @description: showCZInfo
333 * @author: renchao
334 */
335 showCZInfo () {
336 console.log(this.ruleForm.slsq.gyfs);
337 },
338 // 更新权利人信息
339 /**
340 * @description: 更新权利人信息 343 * @description: 更新权利人信息
341 * @param {*} val 344 * @param {*} val
342 * @author: renchao 345 * @author: renchao
......
1 <!-- 1 <!--
2 * @Description: 受理信息 2 * @Description: 受理信息
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-07-25 09:22:40 4 * @LastEditTime: 2023-08-02 08:46:35
5 --> 5 -->
6 <template> 6 <template>
7 <div class="slxx"> 7 <div class="slxx">
...@@ -48,8 +48,7 @@ ...@@ -48,8 +48,7 @@
48 </el-row> 48 </el-row>
49 <div 49 <div
50 class="slxx_title title-block flex" 50 class="slxx_title title-block flex"
51 style="justify-content: space-between" 51 style="justify-content: space-between">
52 >
53 不动产单元情况 52 不动产单元情况
54 <el-button @click="compare">变化情况对比+</el-button> 53 <el-button @click="compare">变化情况对比+</el-button>
55 </div> 54 </div>
...@@ -193,7 +192,7 @@ ...@@ -193,7 +192,7 @@
193 <div class="triangle"></div> 192 <div class="triangle"></div>
194 </div> 193 </div>
195 <el-row :gutter="10"> 194 <el-row :gutter="10">
196 <el-col :span="14"> 195 <el-col :span="12">
197 <el-form-item label="共有方式:"> 196 <el-form-item label="共有方式:">
198 <el-radio-group :disabled="!ableOperation" v-model="ruleForm.sldy.gyfs"> 197 <el-radio-group :disabled="!ableOperation" v-model="ruleForm.sldy.gyfs">
199 <el-radio label="0">单独所有</el-radio> 198 <el-radio label="0">单独所有</el-radio>
...@@ -203,18 +202,29 @@ ...@@ -203,18 +202,29 @@
203 </el-radio-group> 202 </el-radio-group>
204 </el-form-item> 203 </el-form-item>
205 </el-col> 204 </el-col>
206 <el-col :span="5" v-if="ruleForm.sldy.gyfs && ruleForm.sldy.gyfs == '2'"> 205 <el-col :span="6" v-show="ruleForm.sldy.gyfs != '0'">
207 <el-form-item label="是否分别持证:"> 206 <el-form-item label="是否分别持证:">
208 <el-radio-group v-model="ruleForm.sffbcz" :disabled="!ableOperation"> 207 <el-radio-group
209 <el-radio label="1"></el-radio> 208 v-model="ruleForm.sldy.sqfbcz"
210 <el-radio label="0"></el-radio> 209 :disabled="!ableOperation">
210 <el-radio :label="1"></el-radio>
211 <el-radio :label="0"></el-radio>
211 </el-radio-group> 212 </el-radio-group>
212 </el-form-item> 213 </el-form-item>
213 </el-col> 214 </el-col>
214 <el-col :span="5" v-if="ruleForm.sldy.gyfs && ruleForm.sldy.gyfs == '2'"> 215 <el-col
216 :span="6"
217 v-show="ruleForm.sldy.sqfbcz == '0' && ruleForm.sldy.gyfs == '1'">
215 <el-form-item label="持证人:"> 218 <el-form-item label="持证人:">
216 <el-select v-model="ruleForm.czr" placeholder="持证人" :disabled="!ableOperation"> 219 <el-select
217 <el-option v-for="item in czrOptions" :key="item.value" :label="item.label" :value="item.value"> 220 v-model="ruleForm.czr"
221 placeholder="持证人"
222 :disabled="!ableOperation">
223 <el-option
224 v-for="item in czrOptions"
225 :key="item.zjh"
226 :label="item.sqrmc"
227 :value="item.zjh">
218 </el-option> 228 </el-option>
219 </el-select> 229 </el-select>
220 </el-form-item> 230 </el-form-item>
...@@ -245,11 +255,13 @@ ...@@ -245,11 +255,13 @@
245 </div> 255 </div>
246 </template> 256 </template>
247 <script> 257 <script>
258 import ywmix from "@/views/ywbl/mixin/index"
248 import qlrCommonTable from "@/views/workflow/components/qlrCommonTable"; 259 import qlrCommonTable from "@/views/workflow/components/qlrCommonTable";
249 import tdytTable from "@/views/workflow/components/tdytTable"; 260 import tdytTable from "@/views/workflow/components/tdytTable";
250 import { Init, saveData } from "@/api/workflow/fwsyqFlow.js"; 261 import { Init, saveData } from "@/api/workflow/fwsyqFlow.js";
251 import { mapGetters } from "vuex"; 262 import { mapGetters } from "vuex";
252 export default { 263 export default {
264 mixins: [ywmix],
253 mounted () { 265 mounted () {
254 this.ableOperation = this.$parent.currentSelectTab.ableOperation 266 this.ableOperation = this.$parent.currentSelectTab.ableOperation
255 this.propsParam = this.$attrs; 267 this.propsParam = this.$attrs;
...@@ -276,7 +288,7 @@ ...@@ -276,7 +288,7 @@
276 }, 288 },
277 data () { 289 data () {
278 return { 290 return {
279 mjdw:"1", 291 mjdw: "1",
280 //表单是否可操作 292 //表单是否可操作
281 ableOperation: true, 293 ableOperation: true,
282 disabled: true, 294 disabled: true,
...@@ -401,11 +413,12 @@ ...@@ -401,11 +413,12 @@
401 * @description: compare 413 * @description: compare
402 * @author: renchao 414 * @author: renchao
403 */ 415 */
404 compare() { 416 compare () {
405 this.$popupDialog( 417 this.$popupDialog(
406 this.ruleForm.qlxx.qllxmc, 418 this.ruleForm.qlxx.qllxmc,
407 "registerBook/comparison", 419 "registerBook/comparison",
408 { bsmQlxx: this.ruleForm.qlxx.bsmQlxx, 420 {
421 bsmQlxx: this.ruleForm.qlxx.bsmQlxx,
409 dqqllx: 'FDCQ2', 422 dqqllx: 'FDCQ2',
410 }, 423 },
411 "80%", 424 "80%",
...@@ -417,7 +430,7 @@ ...@@ -417,7 +430,7 @@
417 </script> 430 </script>
418 <style scoped lang='scss'> 431 <style scoped lang='scss'>
419 @import "~@/styles/public.scss"; 432 @import "~@/styles/public.scss";
420 @import "~@/styles/slxx/slxx.scss"; 433 @import "~@/styles/slxx/slxx.scss";
421 /deep/.el-form { 434 /deep/.el-form {
422 display: flex; 435 display: flex;
423 flex-direction: column; 436 flex-direction: column;
......
1 <!-- 1 <!--
2 * @Description: 受理信息 2 * @Description: 受理信息
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-07-21 14:16:25 4 * @LastEditTime: 2023-08-01 18:14:10
5 --> 5 -->
6 <template> 6 <template>
7 <div class="slxx"> 7 <div class="slxx">
...@@ -111,7 +111,7 @@ ...@@ -111,7 +111,7 @@
111 </el-form-item> 111 </el-form-item>
112 </el-col> 112 </el-col>
113 113
114 <el-col :span="5" v-show="ruleForm.sldyList.length>0 && ruleForm.slsq.gyfs == '2'"> 114 <el-col :span="5" v-show="ruleForm.sldyList.length>0 && ruleForm.slsq.gyfs != '0'">
115 <el-form-item label="是否分别持证:" v-if="ruleForm.sldyList.length>0"> 115 <el-form-item label="是否分别持证:" v-if="ruleForm.sldyList.length>0">
116 <el-radio-group v-model="ruleForm.sldyList[0].sqfbcz"> 116 <el-radio-group v-model="ruleForm.sldyList[0].sqfbcz">
117 <el-radio label="1"></el-radio> 117 <el-radio label="1"></el-radio>
...@@ -119,7 +119,7 @@ ...@@ -119,7 +119,7 @@
119 </el-radio-group> 119 </el-radio-group>
120 </el-form-item> 120 </el-form-item>
121 </el-col> 121 </el-col>
122 <el-col :span="5" v-show="ruleForm.sldyList.length>0 && ruleForm.sldyList[0].gyfs == '2'"> 122 <el-col :span="5" v-show="ruleForm.sldyList.length>0 && ruleForm.sldyList[0].gyfs != '0'">
123 <el-form-item label="持证人:"> 123 <el-form-item label="持证人:">
124 <el-input v-model="ruleForm.slsq.czr"></el-input> 124 <el-input v-model="ruleForm.slsq.czr"></el-input>
125 </el-form-item> 125 </el-form-item>
...@@ -150,10 +150,12 @@ ...@@ -150,10 +150,12 @@
150 </div> 150 </div>
151 </template> 151 </template>
152 <script> 152 <script>
153 import ywmix from "@/views/ywbl/mixin/index"
153 import qlrCommonTable from "@/views/workflow/components/qlrCommonTable"; 154 import qlrCommonTable from "@/views/workflow/components/qlrCommonTable";
154 import { BatchInit, Init, saveBatchData, saveData } from "@/api/workflow/fwsyqFlow.js"; 155 import { BatchInit, Init, saveBatchData, saveData } from "@/api/workflow/fwsyqFlow.js";
155 import { mapGetters } from "vuex"; 156 import { mapGetters } from "vuex";
156 export default { 157 export default {
158 mixins: [ywmix],
157 mounted (callbackfn, thisArg) { 159 mounted (callbackfn, thisArg) {
158 this.ableOperation = this.$parent.currentSelectTab.ableOperation 160 this.ableOperation = this.$parent.currentSelectTab.ableOperation
159 this.propsParam = this.$attrs; 161 this.propsParam = this.$attrs;
......
1 <!-- 1 <!--
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-07-25 09:23:05 4 * @LastEditTime: 2023-08-01 18:14:28
5 --> 5 -->
6 <template> 6 <template>
7 <!-- 受理信息 --> 7 <!-- 受理信息 -->
...@@ -186,11 +186,13 @@ ...@@ -186,11 +186,13 @@
186 </div> 186 </div>
187 </template> 187 </template>
188 <script> 188 <script>
189 import ywmix from "@/views/ywbl/mixin/index"
189 import qlrCommonTable from "@/views/workflow/components/qlrCommonTable"; 190 import qlrCommonTable from "@/views/workflow/components/qlrCommonTable";
190 import tdytTable from "@/views/workflow/components/tdytTable"; 191 import tdytTable from "@/views/workflow/components/tdytTable";
191 import { Init } from "@/api/workflow/fwsyqFlow.js"; 192 import { Init } from "@/api/workflow/fwsyqFlow.js";
192 import { mapGetters } from "vuex"; 193 import { mapGetters } from "vuex";
193 export default { 194 export default {
195 mixins: [ywmix],
194 mounted () { 196 mounted () {
195 this.ableOperation = this.$parent.currentSelectTab.ableOperation 197 this.ableOperation = this.$parent.currentSelectTab.ableOperation
196 this.propsParam = this.$attrs; 198 this.propsParam = this.$attrs;
......
1 <!-- 1 <!--
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-07-25 09:23:20 4 * @LastEditTime: 2023-08-02 08:45:57
5 --> 5 -->
6 <template> 6 <template>
7 <!-- 受理信息 --> 7 <!-- 受理信息 -->
...@@ -160,18 +160,29 @@ ...@@ -160,18 +160,29 @@
160 </el-radio-group> 160 </el-radio-group>
161 </el-form-item> 161 </el-form-item>
162 </el-col> 162 </el-col>
163 <el-col :span="6" v-show="ruleForm.sldy.gyfs == '1'"> 163 <el-col :span="6" v-show="ruleForm.sldy.gyfs != '0'">
164 <el-form-item label="是否分别持证:"> 164 <el-form-item label="是否分别持证:">
165 <el-radio-group v-model="ruleForm.sldy.sqfbcz" :disabled="!ableOperation"> 165 <el-radio-group
166 <el-radio :label=1></el-radio> 166 v-model="ruleForm.sldy.sqfbcz"
167 <el-radio :label=0></el-radio> 167 :disabled="!ableOperation">
168 <el-radio :label="1"></el-radio>
169 <el-radio :label="0"></el-radio>
168 </el-radio-group> 170 </el-radio-group>
169 </el-form-item> 171 </el-form-item>
170 </el-col> 172 </el-col>
171 <el-col :span="6" v-show="ruleForm.sldy.sqfbcz == '0'&&ruleForm.sldy.gyfs == '1'"> 173 <el-col
174 :span="6"
175 v-show="ruleForm.sldy.sqfbcz == '0' && ruleForm.sldy.gyfs == '1'">
172 <el-form-item label="持证人:"> 176 <el-form-item label="持证人:">
173 <el-select v-model="ruleForm.czr" placeholder="持证人" :disabled="!ableOperation"> 177 <el-select
174 <el-option v-for="item in czrOptions" :key="item.zjh" :label="item.sqrmc" :value="item.zjh"> 178 v-model="ruleForm.czr"
179 placeholder="持证人"
180 :disabled="!ableOperation">
181 <el-option
182 v-for="item in czrOptions"
183 :key="item.zjh"
184 :label="item.sqrmc"
185 :value="item.zjh">
175 </el-option> 186 </el-option>
176 </el-select> 187 </el-select>
177 </el-form-item> 188 </el-form-item>
...@@ -213,10 +224,12 @@ ...@@ -213,10 +224,12 @@
213 </template> 224 </template>
214 <script> 225 <script>
215 import { mapGetters } from "vuex" 226 import { mapGetters } from "vuex"
227 import ywmix from "@/views/ywbl/mixin/index"
216 import { Init, saveData } from "@/api/workflow/jsydsyqFlow.js" 228 import { Init, saveData } from "@/api/workflow/jsydsyqFlow.js"
217 import tdytTable from "@/views/workflow/components/tdytTable"; 229 import tdytTable from "@/views/workflow/components/tdytTable";
218 import qlrCommonTable from "@/views/workflow/components/qlrCommonTable" 230 import qlrCommonTable from "@/views/workflow/components/qlrCommonTable"
219 export default { 231 export default {
232 mixins: [ywmix],
220 mounted () { 233 mounted () {
221 this.ableOperation = this.$parent.currentSelectTab.ableOperation 234 this.ableOperation = this.$parent.currentSelectTab.ableOperation
222 this.propsParam = this.$attrs; 235 this.propsParam = this.$attrs;
...@@ -249,7 +262,7 @@ ...@@ -249,7 +262,7 @@
249 }, 262 },
250 data () { 263 data () {
251 return { 264 return {
252 mjdw:"1", 265 mjdw: "1",
253 //表单是否可操作 266 //表单是否可操作
254 ableOperation: true, 267 ableOperation: true,
255 key: 0, 268 key: 0,
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
2 <!-- 2 <!--
3 * @Description: 3 * @Description:
4 * @Autor: renchao 4 * @Autor: renchao
5 * @LastEditTime: 2023-07-25 09:23:42 5 * @LastEditTime: 2023-08-02 08:45:44
6 --> 6 -->
7 <template> 7 <template>
8 <!-- 受理信息 --> 8 <!-- 受理信息 -->
...@@ -13,8 +13,7 @@ ...@@ -13,8 +13,7 @@
13 ref="ruleForm" 13 ref="ruleForm"
14 :label-position="flag ? 'top' : ''" 14 :label-position="flag ? 'top' : ''"
15 :inline="flag" 15 :inline="flag"
16 label-width="120px" 16 label-width="120px">
17 >
18 <div class="slxx_con" :class="flag ? 'formMarginBot0' : ''"> 17 <div class="slxx_con" :class="flag ? 'formMarginBot0' : ''">
19 <div class="slxx_title title-block"> 18 <div class="slxx_title title-block">
20 受理信息 19 受理信息
...@@ -56,8 +55,7 @@ ...@@ -56,8 +55,7 @@
56 </el-row> 55 </el-row>
57 <div 56 <div
58 class="slxx_title title-block flex" 57 class="slxx_title title-block flex"
59 style="justify-content: space-between" 58 style="justify-content: space-between">
60 >
61 不动产单元情况 59 不动产单元情况
62 <el-button @click="compare">变化情况对比+</el-button> 60 <el-button @click="compare">变化情况对比+</el-button>
63 </div> 61 </div>
...@@ -103,15 +101,13 @@ ...@@ -103,15 +101,13 @@
103 v-model="ruleForm.jsydsyq.qdjg" 101 v-model="ruleForm.jsydsyq.qdjg"
104 style="width: 500%" 102 style="width: 500%"
105 oninput="value = (value.match(/^\d*(\.?\d{0,2})/g)[0]) || null" 103 oninput="value = (value.match(/^\d*(\.?\d{0,2})/g)[0]) || null"
106 disabled 104 disabled></el-input>
107 ></el-input>
108 <el-select v-model="ruleForm.jsydsyq.jedw" disabled> 105 <el-select v-model="ruleForm.jsydsyq.jedw" disabled>
109 <el-option 106 <el-option
110 v-for="item in dictData['A57']" 107 v-for="item in dictData['A57']"
111 :key="item.dcode" 108 :key="item.dcode"
112 :label="item.dname" 109 :label="item.dname"
113 :value="item.dcode" 110 :value="item.dcode">
114 >
115 </el-option> 111 </el-option>
116 </el-select> 112 </el-select>
117 </div> 113 </div>
...@@ -124,27 +120,13 @@ ...@@ -124,27 +120,13 @@
124 </el-form-item> 120 </el-form-item>
125 </el-col> 121 </el-col>
126 </el-row> 122 </el-row>
127 <!-- <el-row :gutter="10">
128 <el-col :span="8">
129 <el-form-item label="使用期限:">
130 <el-input disabled v-model="ruleForm.jsydsyq.tdsyqx"></el-input>
131 </el-form-item>
132 </el-col>
133
134 <el-col :span="16">
135 <el-form-item label="使用权起止时间:">
136 <el-input disabled v-model="ruleForm.jsydsyq.syqqzsj"></el-input>
137 </el-form-item>
138 </el-col>
139 </el-row> -->
140 <el-row :gutter="10"> 123 <el-row :gutter="10">
141 <el-col> 124 <el-col>
142 <el-form-item label="附记:" prop="fj"> 125 <el-form-item label="附记:" prop="fj">
143 <el-input 126 <el-input
144 type="textarea" 127 type="textarea"
145 v-model="ruleForm.jsydsyq.fj" 128 v-model="ruleForm.jsydsyq.fj"
146 :disabled="!ableOperation" 129 :disabled="!ableOperation"></el-input>
147 ></el-input>
148 </el-form-item> 130 </el-form-item>
149 </el-col> 131 </el-col>
150 </el-row> 132 </el-row>
...@@ -155,22 +137,17 @@ ...@@ -155,22 +137,17 @@
155 <tdytTable 137 <tdytTable
156 :tableData="ruleForm.tdytqxList" 138 :tableData="ruleForm.tdytqxList"
157 :ableOperation="ableOperation" 139 :ableOperation="ableOperation"
158 @upDateTdytxxList="upDateTdytxxList" 140 @upDateTdytxxList="upDateTdytxxList" />
159 />
160 <div class="slxx_title title-block"> 141 <div class="slxx_title title-block">
161 权利人信息 142 权利人信息
162 <div class="triangle"></div> 143 <div class="triangle"></div>
163 </div> 144 </div>
164 <!-- <el-divider content-position="left"><i
165 style="background-color:#3498db;font-size:16px;color:#fff !important;border-radius: 5px 5px 5px 0px;margin-bottom:10px;"
166 class="el-icon-edit-outline">权利人信息</i></el-divider> -->
167 <el-row :gutter="10"> 145 <el-row :gutter="10">
168 <el-col :span="14"> 146 <el-col :span="12">
169 <el-form-item label="共有方式:"> 147 <el-form-item label="共有方式:">
170 <el-radio-group 148 <el-radio-group
171 :disabled="!ableOperation" 149 :disabled="!ableOperation"
172 v-model="ruleForm.sldy.gyfs" 150 v-model="ruleForm.sldy.gyfs">
173 >
174 <el-radio label="0">单独所有</el-radio> 151 <el-radio label="0">单独所有</el-radio>
175 <el-radio label="1">共同共有</el-radio> 152 <el-radio label="1">共同共有</el-radio>
176 <el-radio label="2">按份所有</el-radio> 153 <el-radio label="2">按份所有</el-radio>
...@@ -178,30 +155,29 @@ ...@@ -178,30 +155,29 @@
178 </el-radio-group> 155 </el-radio-group>
179 </el-form-item> 156 </el-form-item>
180 </el-col> 157 </el-col>
181 <el-col :span="5" v-show="ruleForm.gyfs == '2'"> 158 <el-col :span="6" v-show="ruleForm.sldy.gyfs != '0'">
182 <el-form-item label="是否分别持证:"> 159 <el-form-item label="是否分别持证:">
183 <el-radio-group 160 <el-radio-group
184 v-model="ruleForm.sldy.sqfbcz" 161 v-model="ruleForm.sldy.sqfbcz"
185 :disabled="!ableOperation" 162 :disabled="!ableOperation">
186 > 163 <el-radio :label="1"></el-radio>
187 <el-radio label="1"></el-radio> 164 <el-radio :label="0"></el-radio>
188 <el-radio label="0"></el-radio>
189 </el-radio-group> 165 </el-radio-group>
190 </el-form-item> 166 </el-form-item>
191 </el-col> 167 </el-col>
192 <el-col :span="5" v-show="ruleForm.gyfs == '2'"> 168 <el-col
169 :span="6"
170 v-show="ruleForm.sldy.sqfbcz == '0' && ruleForm.sldy.gyfs == '1'">
193 <el-form-item label="持证人:"> 171 <el-form-item label="持证人:">
194 <el-select 172 <el-select
195 v-model="ruleForm.czr" 173 v-model="ruleForm.czr"
196 placeholder="持证人" 174 placeholder="持证人"
197 :disabled="!ableOperation" 175 :disabled="!ableOperation">
198 >
199 <el-option 176 <el-option
200 v-for="item in czrOptions" 177 v-for="item in czrOptions"
201 :key="item.value" 178 :key="item.zjh"
202 :label="item.label" 179 :label="item.sqrmc"
203 :value="item.value" 180 :value="item.zjh">
204 >
205 </el-option> 181 </el-option>
206 </el-select> 182 </el-select>
207 </el-form-item> 183 </el-form-item>
...@@ -211,8 +187,7 @@ ...@@ -211,8 +187,7 @@
211 :tableData="ruleForm.qlrList" 187 :tableData="ruleForm.qlrList"
212 :disabled="!ableOperation" 188 :disabled="!ableOperation"
213 @upDateQlrxxList="upDateQlrxxList" 189 @upDateQlrxxList="upDateQlrxxList"
214 :gyfs="ruleForm.sldy.gyfs" 190 :gyfs="ruleForm.sldy.gyfs" />
215 />
216 <div class="slxx_title title-block"> 191 <div class="slxx_title title-block">
217 登记原因 192 登记原因
218 <div class="triangle"></div> 193 <div class="triangle"></div>
...@@ -224,8 +199,7 @@ ...@@ -224,8 +199,7 @@
224 class="textArea" 199 class="textArea"
225 type="textarea" 200 type="textarea"
226 :disabled="!ableOperation" 201 :disabled="!ableOperation"
227 v-model="ruleForm.jsydsyq.djyy" 202 v-model="ruleForm.jsydsyq.djyy">
228 >
229 </el-input> 203 </el-input>
230 </el-form-item> 204 </el-form-item>
231 </el-col> 205 </el-col>
...@@ -240,12 +214,14 @@ ...@@ -240,12 +214,14 @@
240 </div> 214 </div>
241 </template> 215 </template>
242 <script> 216 <script>
243 import { mapGetters } from "vuex"; 217 import { mapGetters } from "vuex";
244 import qlrCommonTable from "@/views/workflow/components/qlrCommonTable"; 218 import ywmix from "@/views/ywbl/mixin/index"
245 import tdytTable from "@/views/workflow/components/tdytTable"; 219 import qlrCommonTable from "@/views/workflow/components/qlrCommonTable";
246 import { Init, saveData } from "@/api/workflow/jsydsyqFlow.js"; 220 import tdytTable from "@/views/workflow/components/tdytTable";
247 export default { 221 import { Init, saveData } from "@/api/workflow/jsydsyqFlow.js";
248 mounted() { 222 export default {
223 mixins: [ywmix],
224 mounted () {
249 this.ableOperation = this.$parent.currentSelectTab.ableOperation; 225 this.ableOperation = this.$parent.currentSelectTab.ableOperation;
250 this.propsParam = this.$attrs; 226 this.propsParam = this.$attrs;
251 var formdata = new FormData(); 227 var formdata = new FormData();
...@@ -264,7 +240,7 @@ export default { ...@@ -264,7 +240,7 @@ export default {
264 computed: { 240 computed: {
265 ...mapGetters(["dictData", "flag"]), 241 ...mapGetters(["dictData", "flag"]),
266 }, 242 },
267 data() { 243 data () {
268 return { 244 return {
269 //表单是否可操作 245 //表单是否可操作
270 ableOperation: true, 246 ableOperation: true,
...@@ -282,30 +258,28 @@ export default { ...@@ -282,30 +258,28 @@ export default {
282 }; 258 };
283 }, 259 },
284 methods: { 260 methods: {
285 // 更新土地用途信息
286 /** 261 /**
287 * @description: 更新土地用途信息 262 * @description: 更新土地用途信息
288 * @param {*} val 263 * @param {*} val
289 * @author: renchao 264 * @author: renchao
290 */ 265 */
291 upDateTdytxxList(val) { 266 upDateTdytxxList (val) {
292 this.ruleForm.tdytqxList && (this.ruleForm.tdytqxList = _.cloneDeep(val)); 267 this.ruleForm.tdytqxList && (this.ruleForm.tdytqxList = _.cloneDeep(val));
293 this.key++; 268 this.key++;
294 }, 269 },
295 // 更新权利人信息
296 /** 270 /**
297 * @description: 更新权利人信息 271 * @description: 更新权利人信息
298 * @param {*} val 272 * @param {*} val
299 * @author: renchao 273 * @author: renchao
300 */ 274 */
301 upDateQlrxxList(val) { 275 upDateQlrxxList (val) {
302 this.ruleForm.qlrList = _.cloneDeep(val); 276 this.ruleForm.qlrList = _.cloneDeep(val);
303 }, 277 },
304 /** 278 /**
305 * @description: onSubmit 279 * @description: onSubmit
306 * @author: renchao 280 * @author: renchao
307 */ 281 */
308 onSubmit() { 282 onSubmit () {
309 saveData(this.ruleForm).then((res) => { 283 saveData(this.ruleForm).then((res) => {
310 if (res.code === 200) { 284 if (res.code === 200) {
311 this.$message({ 285 this.$message({
...@@ -327,12 +301,13 @@ export default { ...@@ -327,12 +301,13 @@ export default {
327 * @description: compare 301 * @description: compare
328 * @author: renchao 302 * @author: renchao
329 */ 303 */
330 compare() { 304 compare () {
331 console.log("this.ruleForm",this.ruleForm); 305 console.log("this.ruleForm", this.ruleForm);
332 this.$popupDialog( 306 this.$popupDialog(
333 this.ruleForm.qlxx.qllxmc, 307 this.ruleForm.qlxx.qllxmc,
334 "registerBook/comparison", 308 "registerBook/comparison",
335 { bsmQlxx: this.ruleForm.qlxx.bsmQlxx, 309 {
310 bsmQlxx: this.ruleForm.qlxx.bsmQlxx,
336 dqqllx: 'JSYDSYQ', 311 dqqllx: 'JSYDSYQ',
337 }, 312 },
338 "80%", 313 "80%",
...@@ -340,9 +315,9 @@ export default { ...@@ -340,9 +315,9 @@ export default {
340 ) 315 )
341 } 316 }
342 } 317 }
343 } 318 }
344 </script> 319 </script>
345 <style scoped lang="scss"> 320 <style scoped lang="scss">
346 @import "~@/styles/public.scss"; 321 @import "~@/styles/public.scss";
347 @import "~@/styles/slxx/slxx.scss"; 322 @import "~@/styles/slxx/slxx.scss";
348 </style> 323 </style>
......
...@@ -174,7 +174,7 @@ ...@@ -174,7 +174,7 @@
174 <div class="triangle"></div> 174 <div class="triangle"></div>
175 </div> 175 </div>
176 <el-row :gutter="10"> 176 <el-row :gutter="10">
177 <el-col :span="14"> 177 <el-col :span="12">
178 <el-form-item label="共有方式:"> 178 <el-form-item label="共有方式:">
179 <el-radio-group v-model="ruleForm.sldy.gyfs" :disabled="!ableOperation"> 179 <el-radio-group v-model="ruleForm.sldy.gyfs" :disabled="!ableOperation">
180 <el-radio label="0">单独所有</el-radio> 180 <el-radio label="0">单独所有</el-radio>
...@@ -184,18 +184,29 @@ ...@@ -184,18 +184,29 @@
184 </el-radio-group> 184 </el-radio-group>
185 </el-form-item> 185 </el-form-item>
186 </el-col> 186 </el-col>
187 <el-col :span="5" v-show="ruleForm.sldy.gyfs == '2'"> 187 <el-col :span="6" v-show="ruleForm.sldy.gyfs != '0'">
188 <el-form-item label="是否分别持证:"> 188 <el-form-item label="是否分别持证:">
189 <el-radio-group v-model="ruleForm.sldy.sqfbcz" :disabled="!ableOperation"> 189 <el-radio-group
190 <el-radio label="1"></el-radio> 190 v-model="ruleForm.sldy.sqfbcz"
191 <el-radio label="0"></el-radio> 191 :disabled="!ableOperation">
192 <el-radio :label="1"></el-radio>
193 <el-radio :label="0"></el-radio>
192 </el-radio-group> 194 </el-radio-group>
193 </el-form-item> 195 </el-form-item>
194 </el-col> 196 </el-col>
195 <el-col :span="5" v-show="ruleForm.sldy.gyfs == '2'"> 197 <el-col
198 :span="6"
199 v-show="ruleForm.sldy.sqfbcz == '0' && ruleForm.sldy.gyfs == '1'">
196 <el-form-item label="持证人:"> 200 <el-form-item label="持证人:">
197 <el-select v-model="ruleForm.czr" placeholder="持证人" :disabled="!ableOperation"> 201 <el-select
198 <el-option v-for="item in czrOptions" :key="item.value" :label="item.label" :value="item.value"> 202 v-model="ruleForm.czr"
203 placeholder="持证人"
204 :disabled="!ableOperation">
205 <el-option
206 v-for="item in czrOptions"
207 :key="item.zjh"
208 :label="item.sqrmc"
209 :value="item.zjh">
199 </el-option> 210 </el-option>
200 </el-select> 211 </el-select>
201 </el-form-item> 212 </el-form-item>
...@@ -231,10 +242,12 @@ ...@@ -231,10 +242,12 @@
231 </template> 242 </template>
232 <script> 243 <script>
233 import { mapGetters } from "vuex" 244 import { mapGetters } from "vuex"
245 import ywmix from "@/views/ywbl/mixin/index"
234 import { Init, saveData } from "@/api/workflow/nydsyqFlow.js" 246 import { Init, saveData } from "@/api/workflow/nydsyqFlow.js"
235 import qlrCommonTable from "@/views/workflow/components/qlrCommonTable" 247 import qlrCommonTable from "@/views/workflow/components/qlrCommonTable"
236 import JtcyTable from "@/views/workflow/components/JtcyTable" 248 import JtcyTable from "@/views/workflow/components/JtcyTable"
237 export default { 249 export default {
250 mixins: [ywmix],
238 mounted () { 251 mounted () {
239 this.ableOperation = this.$parent.currentSelectTab.ableOperation 252 this.ableOperation = this.$parent.currentSelectTab.ableOperation
240 this.propsParam = this.$attrs; 253 this.propsParam = this.$attrs;
......
...@@ -174,7 +174,7 @@ ...@@ -174,7 +174,7 @@
174 <div class="triangle"></div> 174 <div class="triangle"></div>
175 </div> 175 </div>
176 <el-row :gutter="10"> 176 <el-row :gutter="10">
177 <el-col :span="14"> 177 <el-col :span="12">
178 <el-form-item label="共有方式:"> 178 <el-form-item label="共有方式:">
179 <el-radio-group :disabled="!ableOperation" v-model="ruleForm.sldy.gyfs"> 179 <el-radio-group :disabled="!ableOperation" v-model="ruleForm.sldy.gyfs">
180 <el-radio label="0">单独所有</el-radio> 180 <el-radio label="0">单独所有</el-radio>
...@@ -184,18 +184,29 @@ ...@@ -184,18 +184,29 @@
184 </el-radio-group> 184 </el-radio-group>
185 </el-form-item> 185 </el-form-item>
186 </el-col> 186 </el-col>
187 <el-col :span="5" v-show="ruleForm.sldy.gyfs == '2'"> 187 <el-col :span="6" v-show="ruleForm.sldy.gyfs != '0'">
188 <el-form-item label="是否分别持证:"> 188 <el-form-item label="是否分别持证:">
189 <el-radio-group v-model="ruleForm.sldy.sqfbcz" :disabled="!ableOperation"> 189 <el-radio-group
190 <el-radio label="1"></el-radio> 190 v-model="ruleForm.sldy.sqfbcz"
191 <el-radio label="0"></el-radio> 191 :disabled="!ableOperation">
192 <el-radio :label="1"></el-radio>
193 <el-radio :label="0"></el-radio>
192 </el-radio-group> 194 </el-radio-group>
193 </el-form-item> 195 </el-form-item>
194 </el-col> 196 </el-col>
195 <el-col :span="5" v-show="ruleForm.sldy.gyfs == '2'"> 197 <el-col
198 :span="6"
199 v-show="ruleForm.sldy.sqfbcz == '0' && ruleForm.sldy.gyfs == '1'">
196 <el-form-item label="持证人:"> 200 <el-form-item label="持证人:">
197 <el-select v-model="ruleForm.czr" placeholder="持证人" :disabled="!ableOperation"> 201 <el-select
198 <el-option v-for="item in czrOptions" :key="item.value" :label="item.label" :value="item.value"> 202 v-model="ruleForm.czr"
203 placeholder="持证人"
204 :disabled="!ableOperation">
205 <el-option
206 v-for="item in czrOptions"
207 :key="item.zjh"
208 :label="item.sqrmc"
209 :value="item.zjh">
199 </el-option> 210 </el-option>
200 </el-select> 211 </el-select>
201 </el-form-item> 212 </el-form-item>
...@@ -236,10 +247,12 @@ ...@@ -236,10 +247,12 @@
236 </template> 247 </template>
237 <script> 248 <script>
238 import { mapGetters } from "vuex" 249 import { mapGetters } from "vuex"
250 import ywmix from "@/views/ywbl/mixin/index"
239 import { Init, saveData } from "@/api/workflow/nydsyqFlow.js" 251 import { Init, saveData } from "@/api/workflow/nydsyqFlow.js"
240 import qlrCommonTable from "@/views/workflow/components/qlrCommonTable" 252 import qlrCommonTable from "@/views/workflow/components/qlrCommonTable"
241 import JtcyTable from "@/views/workflow/components/JtcyTable" 253 import JtcyTable from "@/views/workflow/components/JtcyTable"
242 export default { 254 export default {
255 mixins: [ywmix],
243 mounted () { 256 mounted () {
244 this.ableOperation = this.$parent.currentSelectTab.ableOperation 257 this.ableOperation = this.$parent.currentSelectTab.ableOperation
245 this.propsParam = this.$attrs; 258 this.propsParam = this.$attrs;
......
1 <!-- 1 <!--
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-07-25 09:24:18 4 * @LastEditTime: 2023-08-01 18:15:20
5 --> 5 -->
6 <template> 6 <template>
7 <!-- 受理信息 --> 7 <!-- 受理信息 -->
...@@ -264,7 +264,7 @@ ...@@ -264,7 +264,7 @@
264 </el-radio-group> 264 </el-radio-group>
265 </el-form-item> 265 </el-form-item>
266 </el-col> 266 </el-col>
267 <el-col :span="6" v-show="ruleForm.sldy.gyfs == '1'"> 267 <el-col :span="6" v-show="ruleForm.sldy.gyfs != '0'">
268 <el-form-item label="是否分别持证:"> 268 <el-form-item label="是否分别持证:">
269 <el-radio-group 269 <el-radio-group
270 v-model="ruleForm.sldy.sqfbcz" 270 v-model="ruleForm.sldy.sqfbcz"
...@@ -339,10 +339,12 @@ ...@@ -339,10 +339,12 @@
339 </template> 339 </template>
340 <script> 340 <script>
341 import { mapGetters } from "vuex"; 341 import { mapGetters } from "vuex";
342 import ywmix from "@/views/ywbl/mixin/index"
342 import { Init, saveData } from "@/api/workflow/tdsyqFlow.js"; 343 import { Init, saveData } from "@/api/workflow/tdsyqFlow.js";
343 import tdytTable from "@/views/workflow/components/tdytTable"; 344 import tdytTable from "@/views/workflow/components/tdytTable";
344 import qlrCommonTable from "@/views/workflow/components/qlrCommonTable"; 345 import qlrCommonTable from "@/views/workflow/components/qlrCommonTable";
345 export default { 346 export default {
347 mixins: [ywmix],
346 components: { qlrCommonTable, tdytTable }, 348 components: { qlrCommonTable, tdytTable },
347 mounted () { 349 mounted () {
348 this.ableOperation = this.$parent.currentSelectTab.ableOperation; 350 this.ableOperation = this.$parent.currentSelectTab.ableOperation;
......
...@@ -71,8 +71,7 @@ ...@@ -71,8 +71,7 @@
71 v-for="item in dictData['A17']" 71 v-for="item in dictData['A17']"
72 :key="item.dcode" 72 :key="item.dcode"
73 :label="item.dname" 73 :label="item.dname"
74 :value="item.dcode" 74 :value="item.dcode">
75 >
76 </el-option> 75 </el-option>
77 </el-select> 76 </el-select>
78 </el-form-item> 77 </el-form-item>
...@@ -84,8 +83,7 @@ ...@@ -84,8 +83,7 @@
84 v-for="item in dictData['A19']" 83 v-for="item in dictData['A19']"
85 :key="item.dcode" 84 :key="item.dcode"
86 :label="item.dname" 85 :label="item.dname"
87 :value="item.dcode" 86 :value="item.dcode">
88 >
89 </el-option> 87 </el-option>
90 </el-select> 88 </el-select>
91 </el-form-item> 89 </el-form-item>
...@@ -99,8 +97,7 @@ ...@@ -99,8 +97,7 @@
99 v-for="item in dictData['A46']" 97 v-for="item in dictData['A46']"
100 :key="item.dcode" 98 :key="item.dcode"
101 :label="item.dname" 99 :label="item.dname"
102 :value="item.dcode" 100 :value="item.dcode">
103 >
104 </el-option> 101 </el-option>
105 </el-select> 102 </el-select>
106 </el-form-item> 103 </el-form-item>
...@@ -156,6 +153,33 @@ ...@@ -156,6 +153,33 @@
156 </el-radio-group> 153 </el-radio-group>
157 </el-form-item> 154 </el-form-item>
158 </el-col> 155 </el-col>
156 <el-col :span="6" v-show="ruleForm.sldy.gyfs != '0'">
157 <el-form-item label="是否分别持证:">
158 <el-radio-group
159 v-model="ruleForm.sldy.sqfbcz"
160 :disabled="!ableOperation">
161 <el-radio :label="1"></el-radio>
162 <el-radio :label="0"></el-radio>
163 </el-radio-group>
164 </el-form-item>
165 </el-col>
166 <el-col
167 :span="6"
168 v-show="ruleForm.sldy.sqfbcz == '0' && ruleForm.sldy.gyfs == '1'">
169 <el-form-item label="持证人:">
170 <el-select
171 v-model="ruleForm.czr"
172 placeholder="持证人"
173 :disabled="!ableOperation">
174 <el-option
175 v-for="item in czrOptions"
176 :key="item.zjh"
177 :label="item.sqrmc"
178 :value="item.zjh">
179 </el-option>
180 </el-select>
181 </el-form-item>
182 </el-col>
159 </el-row> 183 </el-row>
160 <qlrCommonTable @upDateQlrxxList="upDateQlrxxList" :disabled="!ableOperation" :tableData="ruleForm.qlrList" 184 <qlrCommonTable @upDateQlrxxList="upDateQlrxxList" :disabled="!ableOperation" :tableData="ruleForm.qlrList"
161 :gyfs="ruleForm.qlxx.gyfs" /> 185 :gyfs="ruleForm.qlxx.gyfs" />
...@@ -188,10 +212,12 @@ ...@@ -188,10 +212,12 @@
188 </div> 212 </div>
189 </template> 213 </template>
190 <script> 214 <script>
215 import ywmix from "@/views/ywbl/mixin/index"
191 import qlrCommonTable from "@/views/workflow/components/qlrCommonTable"; 216 import qlrCommonTable from "@/views/workflow/components/qlrCommonTable";
192 import { Init, saveData } from "@/api/workflow/ygdjFlow.js"; 217 import { Init, saveData } from "@/api/workflow/ygdjFlow.js";
193 import { mapGetters } from "vuex"; 218 import { mapGetters } from "vuex";
194 export default { 219 export default {
220 mixins: [ywmix],
195 created () { 221 created () {
196 this.ableOperation = this.$parent.currentSelectTab.ableOperation 222 this.ableOperation = this.$parent.currentSelectTab.ableOperation
197 this.propsParam = this.$attrs; 223 this.propsParam = this.$attrs;
......
...@@ -44,8 +44,7 @@ ...@@ -44,8 +44,7 @@
44 </el-row> 44 </el-row>
45 <div 45 <div
46 class="slxx_title title-block flex" 46 class="slxx_title title-block flex"
47 style="justify-content: space-between" 47 style="justify-content: space-between">
48 >
49 不动产单元情况 48 不动产单元情况
50 <el-button @click="compare">变化情况对比+</el-button> 49 <el-button @click="compare">变化情况对比+</el-button>
51 </div> 50 </div>
...@@ -112,7 +111,7 @@ ...@@ -112,7 +111,7 @@
112 <div class="triangle"></div> 111 <div class="triangle"></div>
113 </div> 112 </div>
114 <el-row :gutter="10"> 113 <el-row :gutter="10">
115 <el-col :span="14" v-if="ruleForm.qlxx"> 114 <el-col :span="12" v-if="ruleForm.qlxx">
116 <el-form-item label="共有方式:"> 115 <el-form-item label="共有方式:">
117 <el-radio-group :disabled="!ableOperation" v-model="ruleForm.sldy.gyfs"> 116 <el-radio-group :disabled="!ableOperation" v-model="ruleForm.sldy.gyfs">
118 <el-radio label="0">单独所有</el-radio> 117 <el-radio label="0">单独所有</el-radio>
...@@ -122,6 +121,33 @@ ...@@ -122,6 +121,33 @@
122 </el-radio-group> 121 </el-radio-group>
123 </el-form-item> 122 </el-form-item>
124 </el-col> 123 </el-col>
124 <el-col :span="6" v-show="ruleForm.sldy.gyfs != '0'">
125 <el-form-item label="是否分别持证:">
126 <el-radio-group
127 v-model="ruleForm.sldy.sqfbcz"
128 :disabled="!ableOperation">
129 <el-radio :label="1"></el-radio>
130 <el-radio :label="0"></el-radio>
131 </el-radio-group>
132 </el-form-item>
133 </el-col>
134 <el-col
135 :span="6"
136 v-show="ruleForm.sldy.sqfbcz == '0' && ruleForm.sldy.gyfs == '1'">
137 <el-form-item label="持证人:">
138 <el-select
139 v-model="ruleForm.czr"
140 placeholder="持证人"
141 :disabled="!ableOperation">
142 <el-option
143 v-for="item in czrOptions"
144 :key="item.zjh"
145 :label="item.sqrmc"
146 :value="item.zjh">
147 </el-option>
148 </el-select>
149 </el-form-item>
150 </el-col>
125 </el-row> 151 </el-row>
126 <qlrCommonTable @upDateQlrxxList="upDateQlrxxList" :tableData="ruleForm.qlrList" :disabled="!ableOperation" 152 <qlrCommonTable @upDateQlrxxList="upDateQlrxxList" :tableData="ruleForm.qlrList" :disabled="!ableOperation"
127 :gyfs="ruleForm.sldy.gyfs" /> 153 :gyfs="ruleForm.sldy.gyfs" />
...@@ -154,10 +180,12 @@ ...@@ -154,10 +180,12 @@
154 </div> 180 </div>
155 </template> 181 </template>
156 <script> 182 <script>
183 import ywmix from "@/views/ywbl/mixin/index"
157 import qlrCommonTable from "@/views/workflow/components/qlrCommonTable"; 184 import qlrCommonTable from "@/views/workflow/components/qlrCommonTable";
158 import { Init, saveData } from "@/api/workflow/ygdjFlow.js"; 185 import { Init, saveData } from "@/api/workflow/ygdjFlow.js";
159 import { mapGetters } from "vuex"; 186 import { mapGetters } from "vuex";
160 export default { 187 export default {
188 mixins: [ywmix],
161 mounted () { 189 mounted () {
162 this.ableOperation = this.$parent.currentSelectTab.ableOperation 190 this.ableOperation = this.$parent.currentSelectTab.ableOperation
163 this.propsParam = this.$attrs; 191 this.propsParam = this.$attrs;
...@@ -249,11 +277,12 @@ ...@@ -249,11 +277,12 @@
249 * @description: compare 277 * @description: compare
250 * @author: renchao 278 * @author: renchao
251 */ 279 */
252 compare() { 280 compare () {
253 this.$popupDialog( 281 this.$popupDialog(
254 this.ruleForm.qlxx.qllxmc, 282 this.ruleForm.qlxx.qllxmc,
255 "registerBook/comparison", 283 "registerBook/comparison",
256 { bsmQlxx: this.ruleForm.qlxx.bsmQlxx, 284 {
285 bsmQlxx: this.ruleForm.qlxx.bsmQlxx,
257 dqqllx: 'YGDJ', 286 dqqllx: 'YGDJ',
258 }, 287 },
259 "80%", 288 "80%",
......
...@@ -172,7 +172,7 @@ ...@@ -172,7 +172,7 @@
172 <div class="triangle"></div> 172 <div class="triangle"></div>
173 </div> 173 </div>
174 <el-row :gutter="10"> 174 <el-row :gutter="10">
175 <el-col :span="14"> 175 <el-col :span="12">
176 <el-form-item label="共有方式:"> 176 <el-form-item label="共有方式:">
177 <el-radio-group :disabled="!ableOperation" v-model="ruleForm.sldy.gyfs"> 177 <el-radio-group :disabled="!ableOperation" v-model="ruleForm.sldy.gyfs">
178 <el-radio label="0">单独所有</el-radio> 178 <el-radio label="0">单独所有</el-radio>
...@@ -182,6 +182,33 @@ ...@@ -182,6 +182,33 @@
182 </el-radio-group> 182 </el-radio-group>
183 </el-form-item> 183 </el-form-item>
184 </el-col> 184 </el-col>
185 <el-col :span="6" v-show="ruleForm.sldy.gyfs != '0'">
186 <el-form-item label="是否分别持证:">
187 <el-radio-group
188 v-model="ruleForm.sldy.sqfbcz"
189 :disabled="!ableOperation">
190 <el-radio :label="1"></el-radio>
191 <el-radio :label="0"></el-radio>
192 </el-radio-group>
193 </el-form-item>
194 </el-col>
195 <el-col
196 :span="6"
197 v-show="ruleForm.sldy.sqfbcz == '0' && ruleForm.sldy.gyfs == '1'">
198 <el-form-item label="持证人:">
199 <el-select
200 v-model="ruleForm.czr"
201 placeholder="持证人"
202 :disabled="!ableOperation">
203 <el-option
204 v-for="item in czrOptions"
205 :key="item.zjh"
206 :label="item.sqrmc"
207 :value="item.zjh">
208 </el-option>
209 </el-select>
210 </el-form-item>
211 </el-col>
185 </el-row> 212 </el-row>
186 <qlrCommonTable @upDateQlrxxList="upDateQlrxxList" :tableData="ruleForm.qlrList" :disabled="!ableOperation" 213 <qlrCommonTable @upDateQlrxxList="upDateQlrxxList" :tableData="ruleForm.qlrList" :disabled="!ableOperation"
187 :gyfs="ruleForm.sldy.gyfs" /> 214 :gyfs="ruleForm.sldy.gyfs" />
...@@ -214,10 +241,12 @@ ...@@ -214,10 +241,12 @@
214 </div> 241 </div>
215 </template> 242 </template>
216 <script> 243 <script>
244 import ywmix from "@/views/ywbl/mixin/index"
217 import qlrCommonTable from "@/views/workflow/components/qlrCommonTable"; 245 import qlrCommonTable from "@/views/workflow/components/qlrCommonTable";
218 import { Init, saveData } from "@/api/workflow/ygdyFlow.js"; 246 import { Init, saveData } from "@/api/workflow/ygdyFlow.js";
219 import { mapGetters } from "vuex"; 247 import { mapGetters } from "vuex";
220 export default { 248 export default {
249 mixins: [ywmix],
221 created () { 250 created () {
222 this.ableOperation = this.$parent.currentSelectTab.ableOperation 251 this.ableOperation = this.$parent.currentSelectTab.ableOperation
223 this.propsParam = this.$attrs; 252 this.propsParam = this.$attrs;
......
...@@ -152,7 +152,8 @@ ...@@ -152,7 +152,8 @@
152 </el-radio-group> 152 </el-radio-group>
153 </el-form-item> 153 </el-form-item>
154 </el-col> 154 </el-col>
155 <el-col :span="5" v-show="ruleForm.sldyList[0].gyfs == '2'"> 155
156 <el-col :span="5" v-show="ruleForm.sldyList[0].gyfs != '0'">
156 <el-form-item label="是否分别持证:"> 157 <el-form-item label="是否分别持证:">
157 <el-radio-group v-model="ruleForm.sldyList[0].sqfbcz" :disabled="!ableOperation"> 158 <el-radio-group v-model="ruleForm.sldyList[0].sqfbcz" :disabled="!ableOperation">
158 <el-radio label="1"></el-radio> 159 <el-radio label="1"></el-radio>
...@@ -160,7 +161,7 @@ ...@@ -160,7 +161,7 @@
160 </el-radio-group> 161 </el-radio-group>
161 </el-form-item> 162 </el-form-item>
162 </el-col> 163 </el-col>
163 <el-col :span="5" v-show="ruleForm.sldyList[0].gyfs == '2'"> 164 <el-col :span="5" v-show="ruleForm.sldyList[0].gyfs != '0'">
164 <el-form-item label="持证人:"> 165 <el-form-item label="持证人:">
165 <el-select v-model="ruleForm.czr" placeholder="持证人" :disabled="!ableOperation"> 166 <el-select v-model="ruleForm.czr" placeholder="持证人" :disabled="!ableOperation">
166 <el-option v-for="item in czrOptions" :key="item.value" :label="item.label" :value="item.value"> 167 <el-option v-for="item in czrOptions" :key="item.value" :label="item.label" :value="item.value">
......
...@@ -196,18 +196,29 @@ ...@@ -196,18 +196,29 @@
196 </el-radio-group> 196 </el-radio-group>
197 </el-form-item> 197 </el-form-item>
198 </el-col> 198 </el-col>
199 <el-col :span="5" v-show="ruleForm.sldy.gyfs == '2'"> 199 <el-col :span="6" v-show="ruleForm.sldy.gyfs != '0'">
200 <el-form-item label="是否分别持证:"> 200 <el-form-item label="是否分别持证:">
201 <el-radio-group v-model="ruleForm.sldy.sqfbcz" :disabled="!ableOperation"> 201 <el-radio-group
202 <el-radio label="1"></el-radio> 202 v-model="ruleForm.sldy.sqfbcz"
203 <el-radio label="0"></el-radio> 203 :disabled="!ableOperation">
204 <el-radio :label="1"></el-radio>
205 <el-radio :label="0"></el-radio>
204 </el-radio-group> 206 </el-radio-group>
205 </el-form-item> 207 </el-form-item>
206 </el-col> 208 </el-col>
207 <el-col :span="5" v-show="ruleForm.sldy.gyfs == '2'"> 209 <el-col
210 :span="6"
211 v-show="ruleForm.sldy.sqfbcz == '0' && ruleForm.sldy.gyfs == '1'">
208 <el-form-item label="持证人:"> 212 <el-form-item label="持证人:">
209 <el-select v-model="ruleForm.czr" placeholder="持证人" :disabled="!ableOperation"> 213 <el-select
210 <el-option v-for="item in czrOptions" :key="item.value" :label="item.label" :value="item.value"> 214 v-model="ruleForm.czr"
215 placeholder="持证人"
216 :disabled="!ableOperation">
217 <el-option
218 v-for="item in czrOptions"
219 :key="item.zjh"
220 :label="item.sqrmc"
221 :value="item.zjh">
211 </el-option> 222 </el-option>
212 </el-select> 223 </el-select>
213 </el-form-item> 224 </el-form-item>
......