style:受理信息模块分屏功能的调整
Showing
14 changed files
with
167 additions
and
151 deletions
... | @@ -8,6 +8,7 @@ | ... | @@ -8,6 +8,7 @@ |
8 | padding: 0; | 8 | padding: 0; |
9 | } | 9 | } |
10 | 10 | ||
11 | |||
11 | /deep/.el-radio { | 12 | /deep/.el-radio { |
12 | margin-right: 10px; | 13 | margin-right: 10px; |
13 | } | 14 | } |
... | @@ -67,6 +68,12 @@ | ... | @@ -67,6 +68,12 @@ |
67 | } | 68 | } |
68 | } | 69 | } |
69 | 70 | ||
71 | .formMarginBot0 { | ||
72 | /deep/.el-form-item { | ||
73 | margin-bottom: 0; | ||
74 | } | ||
75 | } | ||
76 | |||
70 | /deep/.el-form-item__label { | 77 | /deep/.el-form-item__label { |
71 | padding-bottom: 0px; | 78 | padding-bottom: 0px; |
72 | } | 79 | } |
... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
... | @@ -70,7 +70,7 @@ export default { | ... | @@ -70,7 +70,7 @@ export default { |
70 | prop: "zjzl", | 70 | prop: "zjzl", |
71 | label: "证件种类", | 71 | label: "证件种类", |
72 | render: (h, scope) => { | 72 | render: (h, scope) => { |
73 | return this.dictData['A30'].map(option => { | 73 | return this.dictData['A30'] && this.dictData['A30'].map(option => { |
74 | if (option.dcode == scope.row.zjzl) { | 74 | if (option.dcode == scope.row.zjzl) { |
75 | return <span>{option.dname}</span> | 75 | return <span>{option.dname}</span> |
76 | } | 76 | } | ... | ... |
... | @@ -6,41 +6,42 @@ | ... | @@ -6,41 +6,42 @@ |
6 | <div class='spyj'> | 6 | <div class='spyj'> |
7 | <b class="spyj_title">审批表</b> | 7 | <b class="spyj_title">审批表</b> |
8 | <el-form :model="ruleForm" :rules="rules" ref="ruleForm" label-width="120px"> | 8 | <el-form :model="ruleForm" :rules="rules" ref="ruleForm" label-width="120px"> |
9 | <div class="spyj_form" v-for="(item,index) in tableData" :key="index"> | 9 | <div class="spyj_form" v-for="(item, index) in tableData" :key="index"> |
10 | <div class="item_left"> | 10 | <div class="item_left"> |
11 | {{item.jdmc}}意见 | 11 | {{ item.jdmc }}意见 |
12 | </div> | 12 | </div> |
13 | <div class="item_right"> | 13 | <div class="item_right"> |
14 | <el-row> | 14 | <el-row> |
15 | <el-col :span="24"> | 15 | <el-col :span="24"> |
16 | <el-form-item label-width="0" class="opinion_item" prop="shyj"> | 16 | <el-form-item label-width="0" class="opinion_item" prop="shyj"> |
17 | <el-input type="textarea" :rows="4" class="opinion" placeholder="请输入审批意见" v-if="item.stepShjy == '1' && ableOperation" | 17 | <el-input type="textarea" :rows="4" class="opinion" placeholder="请输入审批意见" |
18 | v-model="ruleForm.shyj"></el-input> | 18 | v-if="item.stepShjy == '1' && ableOperation" v-model="ruleForm.shyj"></el-input> |
19 | <el-input type="textarea" :rows="4" class="opinion" v-model="item.shyj" v-else :disabled="true"> | 19 | <el-input type="textarea" :rows="4" class="opinion" v-model="item.shyj" v-else :disabled="true"> |
20 | </el-input> | 20 | </el-input> |
21 | <el-button class="opinion_btn" @click="commonOpinion" v-if="item.stepShjy == '1' && ableOperation">常用意见</el-button> | 21 | <el-button class="opinion_btn" @click="commonOpinion" |
22 | v-if="item.stepShjy == '1' && ableOperation">常用意见</el-button> | ||
22 | </el-form-item> | 23 | </el-form-item> |
23 | </el-col> | 24 | </el-col> |
24 | </el-row> | 25 | </el-row> |
25 | <el-row> | 26 | <el-row> |
26 | <el-col :span="16"> | 27 | <el-col :span="16"> |
27 | <el-form-item label="审查人:" prop="shryxm"> | 28 | <el-form-item label="审查人:" prop="shryxm"> |
28 | {{item.shryxm }} | 29 | {{ item.shryxm }} |
29 | </el-form-item> | 30 | </el-form-item> |
30 | </el-col> | 31 | </el-col> |
31 | <el-col :span="8" > | 32 | <el-col :span="8"> |
32 | <el-form-item label="审核时间:" prop="shjssj" :key="refresh"> | 33 | <el-form-item label="审核时间:" prop="shjssj" :key="refresh"> |
33 | {{item.shjssj }} | 34 | {{ item.shjssj }} |
34 | </el-form-item> | 35 | </el-form-item> |
35 | </el-col> | 36 | </el-col> |
36 | </el-row> | 37 | </el-row> |
37 | </div> | 38 | </div> |
38 | </div> | 39 | </div> |
39 | <div class="submit_button" v-if="ableOperation"> | 40 | <div class="submit_button" v-if="ableOperation"> |
40 | <el-button type="primary" @click="onSubmit">保存</el-button> | 41 | <el-button type="primary" @click="onSubmit">保存</el-button> |
41 | </div> | 42 | </div> |
42 | </el-form> | 43 | </el-form> |
43 | <el-empty v-if="tableData.length==0" description="暂无数据"></el-empty> | 44 | <el-empty v-if="isNoData" description="暂无数据"></el-empty> |
44 | <commonDialog v-model="commonDialog" /> | 45 | <commonDialog v-model="commonDialog" /> |
45 | </div> | 46 | </div> |
46 | </template> | 47 | </template> |
... | @@ -50,17 +51,18 @@ import { popupDialog } from "@/utils/popup.js"; | ... | @@ -50,17 +51,18 @@ import { popupDialog } from "@/utils/popup.js"; |
50 | import commonDialog from "./commonOpinion.vue"; | 51 | import commonDialog from "./commonOpinion.vue"; |
51 | import { mapGetters } from 'vuex' | 52 | import { mapGetters } from 'vuex' |
52 | export default { | 53 | export default { |
53 | components: {commonDialog}, | 54 | components: { commonDialog }, |
54 | props: { | 55 | props: { |
55 | }, | 56 | }, |
56 | computed: { | 57 | computed: { |
57 | ...mapGetters([ 'userData']) | 58 | ...mapGetters(['userData']) |
58 | }, | 59 | }, |
59 | data () { | 60 | data () { |
60 | return { | 61 | return { |
62 | isNoData: false, | ||
61 | bsmSlsq: '', | 63 | bsmSlsq: '', |
62 | //刷新值 | 64 | //刷新值 |
63 | refresh : 10, | 65 | refresh: 10, |
64 | ableOperation: true, | 66 | ableOperation: true, |
65 | bsmSlsq: this.$route.query.bsmSlsq, | 67 | bsmSlsq: this.$route.query.bsmSlsq, |
66 | bestepid: this.$route.query.bestepid, | 68 | bestepid: this.$route.query.bestepid, |
... | @@ -77,7 +79,7 @@ export default { | ... | @@ -77,7 +79,7 @@ export default { |
77 | }, | 79 | }, |
78 | created () { | 80 | created () { |
79 | this.propsParam = this.$attrs; | 81 | this.propsParam = this.$attrs; |
80 | if(this.$route.query.viewtype){ | 82 | if (this.$route.query.viewtype) { |
81 | this.ableOperation = false | 83 | this.ableOperation = false |
82 | } | 84 | } |
83 | this.list(); | 85 | this.list(); |
... | @@ -88,15 +90,19 @@ export default { | ... | @@ -88,15 +90,19 @@ export default { |
88 | }, | 90 | }, |
89 | //审批意见数据初始化 | 91 | //审批意见数据初始化 |
90 | list () { | 92 | list () { |
93 | let that = this | ||
91 | this.$startLoading() | 94 | this.$startLoading() |
92 | var formdata = new FormData(); | 95 | var formdata = new FormData(); |
93 | formdata.append("bsmBusiness", this.propsParam.bsmBusiness); | 96 | formdata.append("bsmBusiness", this.propsParam.bsmBusiness); |
94 | formdata.append("bestepid", this.$route.query.bestepid); | 97 | formdata.append("bestepid", this.$route.query.bestepid); |
95 | formdata.append("ableOperation",this.ableOperation) | 98 | formdata.append("ableOperation", this.ableOperation) |
96 | getSpyjList(formdata).then((res) => { | 99 | getSpyjList(formdata).then((res) => { |
97 | this.$endLoading() | 100 | this.$endLoading() |
98 | if (res.code === 200 && res.result) { | 101 | if (res.code === 200 && res.result) { |
99 | this.tableData = res.result | 102 | this.tableData = res.result ? res.result : [] |
103 | if (res.result.length == 0) { | ||
104 | that.isNoData = true | ||
105 | } | ||
100 | this.ruleForm = res.result[res.result.length - 1] | 106 | this.ruleForm = res.result[res.result.length - 1] |
101 | } | 107 | } |
102 | }) | 108 | }) |
... | @@ -114,12 +120,12 @@ export default { | ... | @@ -114,12 +120,12 @@ export default { |
114 | }) | 120 | }) |
115 | }, | 121 | }, |
116 | //打开常用意见列表弹窗 | 122 | //打开常用意见列表弹窗 |
117 | commonOpinion(){ | 123 | commonOpinion () { |
118 | this.commonDialog = true | 124 | this.commonDialog = true |
119 | }, | 125 | }, |
120 | //使用常用意见 | 126 | //使用常用意见 |
121 | useOpinion(opinion){ | 127 | useOpinion (opinion) { |
122 | this.ruleForm.shyj = opinion | 128 | this.ruleForm.shyj = opinion |
123 | } | 129 | } |
124 | } | 130 | } |
125 | } | 131 | } | ... | ... |
... | @@ -69,9 +69,9 @@ | ... | @@ -69,9 +69,9 @@ |
69 | </div> | 69 | </div> |
70 | </div> | 70 | </div> |
71 | <!-- 打印模板需要此模块 --> | 71 | <!-- 打印模板需要此模块 --> |
72 | <object id="LODOP_OB" classid="clsid:2105C259-1E0C-4534-8141-A753534CB4CA" v-show="false"> | 72 | <object id="LODOP_OB" classid="clsid:2105C259-1E0C-4534-8141-A753534CB4CA" v-show="false"> |
73 | <embed id="LODOP_EM" type="application/x-print-lodop" width=820 height=450 pluginspage="install_lodop32.exe"/> | 73 | <embed id="LODOP_EM" type="application/x-print-lodop" width=820 height=450 pluginspage="install_lodop32.exe" /> |
74 | </object> | 74 | </object> |
75 | <el-upload class="fileUpdate" action="" :show-file-list="false" multiple :auto-upload="false" | 75 | <el-upload class="fileUpdate" action="" :show-file-list="false" multiple :auto-upload="false" |
76 | :on-change="handleChange" :before-upload="beforeUpload"> | 76 | :on-change="handleChange" :before-upload="beforeUpload"> |
77 | <el-button id="cldr" icon="el-icon-upload" type="primary" v-show="false">上传</el-button> | 77 | <el-button id="cldr" icon="el-icon-upload" type="primary" v-show="false">上传</el-button> | ... | ... |
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
... | @@ -3,41 +3,41 @@ | ... | @@ -3,41 +3,41 @@ |
3 | <div class="slxx"> | 3 | <div class="slxx"> |
4 | <el-form :model="ruleForm" :rules="rules" ref="ruleForm" :label-position="flag ? 'top' : ''" :inline="flag" | 4 | <el-form :model="ruleForm" :rules="rules" ref="ruleForm" :label-position="flag ? 'top' : ''" :inline="flag" |
5 | label-width="120px"> | 5 | label-width="120px"> |
6 | <div class="slxx_con"> | 6 | <div class="slxx_con" :class="flag ? 'formMarginBot0' : ''"> |
7 | <div class="slxx_title title-block"> | 7 | <div class="slxx_title title-block"> |
8 | 受理信息 | 8 | 受理信息 |
9 | <div class="triangle"></div> | 9 | <div class="triangle"></div> |
10 | </div> | 10 | </div> |
11 | <el-row :gutter="10" v-if="ruleForm.slywxx"> | 11 | <el-row :gutter="10" v-if="ruleForm.slywxx"> |
12 | <el-col :span="8"> | 12 | <el-col :span="8"> |
13 | <el-form-item :class="flag ? 'marginBot0' : ''" label="业务号:"> | 13 | <el-form-item label="业务号:"> |
14 | <el-input disabled v-model="ruleForm.slywxx.ywh"></el-input> | 14 | <el-input disabled v-model="ruleForm.slywxx.ywh"></el-input> |
15 | </el-form-item> | 15 | </el-form-item> |
16 | </el-col> | 16 | </el-col> |
17 | <el-col :span="8"> | 17 | <el-col :span="8"> |
18 | <el-form-item :class="flag ? 'marginBot0' : ''" label="受理人员:"> | 18 | <el-form-item label="受理人员:"> |
19 | <el-input disabled v-model="ruleForm.slywxx.slry"></el-input> | 19 | <el-input disabled v-model="ruleForm.slywxx.slry"></el-input> |
20 | </el-form-item> | 20 | </el-form-item> |
21 | </el-col> | 21 | </el-col> |
22 | <el-col :span="8"> | 22 | <el-col :span="8"> |
23 | <el-form-item :class="flag ? 'marginBot0' : ''" label="受理时间:"> | 23 | <el-form-item label="受理时间:"> |
24 | <el-input disabled v-model="ruleForm.slywxx.slsj"></el-input> | 24 | <el-input disabled v-model="ruleForm.slywxx.slsj"></el-input> |
25 | </el-form-item> | 25 | </el-form-item> |
26 | </el-col> | 26 | </el-col> |
27 | </el-row> | 27 | </el-row> |
28 | <el-row :gutter="10" v-if="ruleForm.slywxx"> | 28 | <el-row :gutter="10" v-if="ruleForm.slywxx"> |
29 | <el-col :span="8"> | 29 | <el-col :span="8"> |
30 | <el-form-item :class="flag ? 'marginBot0' : ''" label="权利类型:"> | 30 | <el-form-item label="权利类型:"> |
31 | <el-input disabled v-model="ruleForm.slywxx.qllxmc"></el-input> | 31 | <el-input disabled v-model="ruleForm.slywxx.qllxmc"></el-input> |
32 | </el-form-item> | 32 | </el-form-item> |
33 | </el-col> | 33 | </el-col> |
34 | <el-col :span="8"> | 34 | <el-col :span="8"> |
35 | <el-form-item :class="flag ? 'marginBot0' : ''" label="登记类型:"> | 35 | <el-form-item label="登记类型:"> |
36 | <el-input disabled v-model="ruleForm.slywxx.djlxmc"></el-input> | 36 | <el-input disabled v-model="ruleForm.slywxx.djlxmc"></el-input> |
37 | </el-form-item> | 37 | </el-form-item> |
38 | </el-col> | 38 | </el-col> |
39 | <el-col :span="8"> | 39 | <el-col :span="8"> |
40 | <el-form-item :class="flag ? 'marginBot0' : ''" label="登记情形:"> | 40 | <el-form-item label="登记情形:"> |
41 | <el-input disabled v-model="ruleForm.slywxx.djqxmc"></el-input> | 41 | <el-input disabled v-model="ruleForm.slywxx.djqxmc"></el-input> |
42 | </el-form-item> | 42 | </el-form-item> |
43 | </el-col> | 43 | </el-col> |
... | @@ -48,80 +48,80 @@ | ... | @@ -48,80 +48,80 @@ |
48 | </div> | 48 | </div> |
49 | <el-row :gutter="10" v-if="ruleForm.qlxx"> | 49 | <el-row :gutter="10" v-if="ruleForm.qlxx"> |
50 | <el-col :span="8"> | 50 | <el-col :span="8"> |
51 | <el-form-item :class="flag ? 'marginBot0' : ''" label="不动产单元号:"> | 51 | <el-form-item label="不动产单元号:"> |
52 | <el-input disabled v-model="ruleForm.qlxx.bdcdyh"></el-input> | 52 | <el-input disabled v-model="ruleForm.qlxx.bdcdyh"></el-input> |
53 | </el-form-item> | 53 | </el-form-item> |
54 | </el-col> | 54 | </el-col> |
55 | <el-col :span="16"> | 55 | <el-col :span="16"> |
56 | <el-form-item :class="flag ? 'marginBot0' : ''" label="坐落:"> | 56 | <el-form-item label="坐落:"> |
57 | <el-input disabled v-model="ruleForm.qlxx.zl"></el-input> | 57 | <el-input disabled v-model="ruleForm.qlxx.zl"></el-input> |
58 | </el-form-item> | 58 | </el-form-item> |
59 | </el-col> | 59 | </el-col> |
60 | </el-row> | 60 | </el-row> |
61 | <el-row :gutter="10" v-if="ruleForm.fdcq2"> | 61 | <el-row :gutter="10" v-if="ruleForm.fdcq2"> |
62 | <el-col :span="8"> | 62 | <el-col :span="8"> |
63 | <el-form-item :class="flag ? 'marginBot0' : ''" label="土地用途:"> | 63 | <el-form-item label="土地用途:"> |
64 | <el-input disabled v-model="ruleForm.fdcq2.yt"></el-input> | 64 | <el-input disabled v-model="ruleForm.fdcq2.yt"></el-input> |
65 | </el-form-item> | 65 | </el-form-item> |
66 | </el-col> | 66 | </el-col> |
67 | <el-col :span="8"> | 67 | <el-col :span="8"> |
68 | <el-form-item :class="flag ? 'marginBot0' : ''" label="土地使用起止时间:"> | 68 | <el-form-item label="土地使用起止时间:"> |
69 | <el-input disabled v-model="ruleForm.fdcq2.tdsyqzsj"></el-input> | 69 | <el-input disabled v-model="ruleForm.fdcq2.tdsyqzsj"></el-input> |
70 | </el-form-item> | 70 | </el-form-item> |
71 | </el-col> | 71 | </el-col> |
72 | <el-col :span="8"> | 72 | <el-col :span="8"> |
73 | <el-form-item :class="flag ? 'marginBot0' : ''" label="土地使用期限:"> | 73 | <el-form-item label="土地使用期限:"> |
74 | <el-input disabled v-model="ruleForm.fdcq2.tdsyqx"></el-input> | 74 | <el-input disabled v-model="ruleForm.fdcq2.tdsyqx"></el-input> |
75 | </el-form-item> | 75 | </el-form-item> |
76 | </el-col> | 76 | </el-col> |
77 | </el-row> | 77 | </el-row> |
78 | <el-row :gutter="10" v-if="ruleForm.qlxx"> | 78 | <el-row :gutter="10" v-if="ruleForm.qlxx"> |
79 | <el-col :span="8"> | 79 | <el-col :span="8"> |
80 | <el-form-item :class="flag ? 'marginBot0' : ''" label="房屋用途:"> | 80 | <el-form-item label="房屋用途:"> |
81 | <el-input disabled v-model="ruleForm.qlxx.ytmc"></el-input> | 81 | <el-input disabled v-model="ruleForm.qlxx.ytmc"></el-input> |
82 | </el-form-item> | 82 | </el-form-item> |
83 | </el-col> | 83 | </el-col> |
84 | <el-col :span="8"> | 84 | <el-col :span="8"> |
85 | <el-form-item :class="flag ? 'marginBot0' : ''" label="房屋性质:"> | 85 | <el-form-item label="房屋性质:"> |
86 | <el-input disabled v-model="ruleForm.fdcq2.fwxzmc"></el-input> | 86 | <el-input disabled v-model="ruleForm.fdcq2.fwxzmc"></el-input> |
87 | </el-form-item> | 87 | </el-form-item> |
88 | </el-col> | 88 | </el-col> |
89 | <el-col :span="8"> | 89 | <el-col :span="8"> |
90 | <el-form-item :class="flag ? 'marginBot0' : ''" label="房屋结构:"> | 90 | <el-form-item label="房屋结构:"> |
91 | <el-input disabled v-model="ruleForm.fdcq2.fwjgmc"></el-input> | 91 | <el-input disabled v-model="ruleForm.fdcq2.fwjgmc"></el-input> |
92 | </el-form-item> | 92 | </el-form-item> |
93 | </el-col> | 93 | </el-col> |
94 | </el-row> | 94 | </el-row> |
95 | <el-row :gutter="10" v-if="ruleForm.fdcq2"> | 95 | <el-row :gutter="10" v-if="ruleForm.fdcq2"> |
96 | <el-col :span="8"> | 96 | <el-col :span="8"> |
97 | <el-form-item :class="flag ? 'marginBot0' : ''" label="所在层:"> | 97 | <el-form-item label="所在层:"> |
98 | <el-input disabled v-model="ruleForm.fdcq2.szc"></el-input> | 98 | <el-input disabled v-model="ruleForm.fdcq2.szc"></el-input> |
99 | </el-form-item> | 99 | </el-form-item> |
100 | </el-col> | 100 | </el-col> |
101 | <el-col :span="8"> | 101 | <el-col :span="8"> |
102 | <el-form-item :class="flag ? 'marginBot0' : ''" label="总层数:"> | 102 | <el-form-item label="总层数:"> |
103 | <el-input disabled v-model="ruleForm.fdcq2.zcs"></el-input> | 103 | <el-input disabled v-model="ruleForm.fdcq2.zcs"></el-input> |
104 | </el-form-item> | 104 | </el-form-item> |
105 | </el-col> | 105 | </el-col> |
106 | <el-col :span="8"> | 106 | <el-col :span="8"> |
107 | <el-form-item :class="flag ? 'marginBot0' : ''" label="竣工时间:"> | 107 | <el-form-item label="竣工时间:"> |
108 | <el-input disabled v-model="ruleForm.fdcq2.jgsj"></el-input> | 108 | <el-input disabled v-model="ruleForm.fdcq2.jgsj"></el-input> |
109 | </el-form-item> | 109 | </el-form-item> |
110 | </el-col> | 110 | </el-col> |
111 | </el-row> | 111 | </el-row> |
112 | <el-row :gutter="10" v-if="ruleForm.qlxx"> | 112 | <el-row :gutter="10" v-if="ruleForm.qlxx"> |
113 | <el-col :span="8"> | 113 | <el-col :span="8"> |
114 | <el-form-item :class="flag ? 'marginBot0' : ''" label="建筑面积:"> | 114 | <el-form-item label="建筑面积:"> |
115 | <el-input disabled v-model="ruleForm.qlxx.mj"></el-input> | 115 | <el-input disabled v-model="ruleForm.qlxx.mj"></el-input> |
116 | </el-form-item> | 116 | </el-form-item> |
117 | </el-col> | 117 | </el-col> |
118 | <el-col :span="8"> | 118 | <el-col :span="8"> |
119 | <el-form-item :class="flag ? 'marginBot0' : ''" label="专有建筑面积:"> | 119 | <el-form-item label="专有建筑面积:"> |
120 | <el-input disabled v-model="ruleForm.fdcq2.zyjzmj"></el-input> | 120 | <el-input disabled v-model="ruleForm.fdcq2.zyjzmj"></el-input> |
121 | </el-form-item> | 121 | </el-form-item> |
122 | </el-col> | 122 | </el-col> |
123 | <el-col :span="8"> | 123 | <el-col :span="8"> |
124 | <el-form-item :class="flag ? 'marginBot0' : ''" label="分摊建筑面积:"> | 124 | <el-form-item label="分摊建筑面积:"> |
125 | <el-input disabled v-model="ruleForm.fdcq2.ftjzmj"></el-input> | 125 | <el-input disabled v-model="ruleForm.fdcq2.ftjzmj"></el-input> |
126 | </el-form-item> | 126 | </el-form-item> |
127 | </el-col> | 127 | </el-col> |
... | @@ -132,7 +132,7 @@ | ... | @@ -132,7 +132,7 @@ |
132 | </div> | 132 | </div> |
133 | <el-row :gutter="10"> | 133 | <el-row :gutter="10"> |
134 | <el-col :span="14" v-if="ruleForm.qlxx"> | 134 | <el-col :span="14" v-if="ruleForm.qlxx"> |
135 | <el-form-item :class="flag ? 'marginBot0' : ''" label="共有方式:"> | 135 | <el-form-item label="共有方式:"> |
136 | <el-radio-group :disabled="$route.query.viewtype == 1" @change="showCZInfo" | 136 | <el-radio-group :disabled="$route.query.viewtype == 1" @change="showCZInfo" |
137 | v-model="ruleForm.slywxx.gyfs"> | 137 | v-model="ruleForm.slywxx.gyfs"> |
138 | <el-radio label="0">单独所有</el-radio> | 138 | <el-radio label="0">单独所有</el-radio> |
... | @@ -143,7 +143,7 @@ | ... | @@ -143,7 +143,7 @@ |
143 | </el-form-item> | 143 | </el-form-item> |
144 | </el-col> | 144 | </el-col> |
145 | <el-col :span="5"> | 145 | <el-col :span="5"> |
146 | <el-form-item :class="flag ? 'marginBot0' : ''" label="发证方式:"> | 146 | <el-form-item label="发证方式:"> |
147 | <el-radio-group v-model="ruleForm.slywxx.fzfs"> | 147 | <el-radio-group v-model="ruleForm.slywxx.fzfs"> |
148 | <el-radio label="1">小证</el-radio> | 148 | <el-radio label="1">小证</el-radio> |
149 | <el-radio label="2">大证</el-radio> | 149 | <el-radio label="2">大证</el-radio> |
... | @@ -152,7 +152,7 @@ | ... | @@ -152,7 +152,7 @@ |
152 | </el-col> | 152 | </el-col> |
153 | 153 | ||
154 | <el-col :span="5" v-show="ruleForm.qlxx && ruleForm.qlxx.gyfs == '2'"> | 154 | <el-col :span="5" v-show="ruleForm.qlxx && ruleForm.qlxx.gyfs == '2'"> |
155 | <el-form-item :class="flag ? 'marginBot0' : ''" label="是否分别持证:"> | 155 | <el-form-item label="是否分别持证:"> |
156 | <el-radio-group v-model="ruleForm.slywxx.sffbcz"> | 156 | <el-radio-group v-model="ruleForm.slywxx.sffbcz"> |
157 | <el-radio label="1">是</el-radio> | 157 | <el-radio label="1">是</el-radio> |
158 | <el-radio label="0">否</el-radio> | 158 | <el-radio label="0">否</el-radio> |
... | @@ -160,7 +160,7 @@ | ... | @@ -160,7 +160,7 @@ |
160 | </el-form-item> | 160 | </el-form-item> |
161 | </el-col> | 161 | </el-col> |
162 | <el-col :span="5" v-show="ruleForm.qlxx && ruleForm.qlxx.gyfs == '2'"> | 162 | <el-col :span="5" v-show="ruleForm.qlxx && ruleForm.qlxx.gyfs == '2'"> |
163 | <el-form-item :class="flag ? 'marginBot0' : ''" label="持证人:"> | 163 | <el-form-item label="持证人:"> |
164 | <el-select v-model="ruleForm.slywxx.czr" placeholder="持证人"> | 164 | <el-select v-model="ruleForm.slywxx.czr" placeholder="持证人"> |
165 | <el-option v-for="item in czrOptions" :key="item.value" :label="item.label" :value="item.value"> | 165 | <el-option v-for="item in czrOptions" :key="item.value" :label="item.label" :value="item.value"> |
166 | </el-option> | 166 | </el-option> |
... | @@ -185,7 +185,7 @@ | ... | @@ -185,7 +185,7 @@ |
185 | </div> | 185 | </div> |
186 | <el-row :gutter="10"> | 186 | <el-row :gutter="10"> |
187 | <el-col> | 187 | <el-col> |
188 | <el-form-item v-if="ruleForm.fdcq2" :class="flag ? 'marginBot0' : ''" label="登记原因:" prop="djyy"> | 188 | <el-form-item v-if="ruleForm.fdcq2" label="登记原因:" prop="djyy"> |
189 | <el-input class="textArea" type="textarea" :disabled="$route.query.viewtype == 1" | 189 | <el-input class="textArea" type="textarea" :disabled="$route.query.viewtype == 1" |
190 | v-model="ruleForm.fdcq2.djyy"> | 190 | v-model="ruleForm.fdcq2.djyy"> |
191 | </el-input> | 191 | </el-input> |
... | @@ -194,7 +194,7 @@ | ... | @@ -194,7 +194,7 @@ |
194 | </el-row> | 194 | </el-row> |
195 | </div> | 195 | </div> |
196 | <el-row class="btn" v-if="!$route.query.viewtype"> | 196 | <el-row class="btn" v-if="!$route.query.viewtype"> |
197 | <el-form-item :class="flag ? 'marginBot0' : ''"> | 197 | <el-form-item> |
198 | <el-button type="primary" @click="onSubmit">保存</el-button> | 198 | <el-button type="primary" @click="onSubmit">保存</el-button> |
199 | </el-form-item> | 199 | </el-form-item> |
200 | </el-row> | 200 | </el-row> | ... | ... |
... | @@ -3,41 +3,41 @@ | ... | @@ -3,41 +3,41 @@ |
3 | <div class="slxx"> | 3 | <div class="slxx"> |
4 | <el-form :model="ruleForm" :rules="rules" ref="ruleForm" :label-position="flag ? 'top' : ''" :inline="flag" | 4 | <el-form :model="ruleForm" :rules="rules" ref="ruleForm" :label-position="flag ? 'top' : ''" :inline="flag" |
5 | label-width="120px"> | 5 | label-width="120px"> |
6 | <div class="slxx_con"> | 6 | <div class="slxx_con" :class="flag ? 'formMarginBot0' : ''"> |
7 | <div class="slxx_title title-block"> | 7 | <div class="slxx_title title-block"> |
8 | 受理信息 | 8 | 受理信息 |
9 | <div class="triangle"></div> | 9 | <div class="triangle"></div> |
10 | </div> | 10 | </div> |
11 | <el-row :gutter="10" v-if="ruleForm.slywxx"> | 11 | <el-row :gutter="10" v-if="ruleForm.slywxx"> |
12 | <el-col :span="8"> | 12 | <el-col :span="8"> |
13 | <el-form-item :class="flag ? 'marginBot0' : ''" label="业务号:"> | 13 | <el-form-item label="业务号:"> |
14 | <el-input disabled v-model="ruleForm.slywxx.ywh"></el-input> | 14 | <el-input disabled v-model="ruleForm.slywxx.ywh"></el-input> |
15 | </el-form-item> | 15 | </el-form-item> |
16 | </el-col> | 16 | </el-col> |
17 | <el-col :span="8"> | 17 | <el-col :span="8"> |
18 | <el-form-item :class="flag ? 'marginBot0' : ''" label="受理人员:"> | 18 | <el-form-item label="受理人员:"> |
19 | <el-input disabled v-model="ruleForm.slywxx.slry"></el-input> | 19 | <el-input disabled v-model="ruleForm.slywxx.slry"></el-input> |
20 | </el-form-item> | 20 | </el-form-item> |
21 | </el-col> | 21 | </el-col> |
22 | <el-col :span="8"> | 22 | <el-col :span="8"> |
23 | <el-form-item :class="flag ? 'marginBot0' : ''" label="受理时间:"> | 23 | <el-form-item label="受理时间:"> |
24 | <el-input disabled v-model="ruleForm.slywxx.slsj"></el-input> | 24 | <el-input disabled v-model="ruleForm.slywxx.slsj"></el-input> |
25 | </el-form-item> | 25 | </el-form-item> |
26 | </el-col> | 26 | </el-col> |
27 | </el-row> | 27 | </el-row> |
28 | <el-row :gutter="10" v-if="ruleForm.slywxx"> | 28 | <el-row :gutter="10" v-if="ruleForm.slywxx"> |
29 | <el-col :span="8"> | 29 | <el-col :span="8"> |
30 | <el-form-item :class="flag ? 'marginBot0' : ''" label="权利类型:"> | 30 | <el-form-item label="权利类型:"> |
31 | <el-input disabled v-model="ruleForm.slywxx.qllxmc"></el-input> | 31 | <el-input disabled v-model="ruleForm.slywxx.qllxmc"></el-input> |
32 | </el-form-item> | 32 | </el-form-item> |
33 | </el-col> | 33 | </el-col> |
34 | <el-col :span="8"> | 34 | <el-col :span="8"> |
35 | <el-form-item :class="flag ? 'marginBot0' : ''" label="登记类型:"> | 35 | <el-form-item label="登记类型:"> |
36 | <el-input disabled v-model="ruleForm.slywxx.djlxmc"></el-input> | 36 | <el-input disabled v-model="ruleForm.slywxx.djlxmc"></el-input> |
37 | </el-form-item> | 37 | </el-form-item> |
38 | </el-col> | 38 | </el-col> |
39 | <el-col :span="8"> | 39 | <el-col :span="8"> |
40 | <el-form-item :class="flag ? 'marginBot0' : ''" label="登记情形:"> | 40 | <el-form-item label="登记情形:"> |
41 | <el-input disabled v-model="ruleForm.slywxx.djqxmc"></el-input> | 41 | <el-input disabled v-model="ruleForm.slywxx.djqxmc"></el-input> |
42 | </el-form-item> | 42 | </el-form-item> |
43 | </el-col> | 43 | </el-col> |
... | @@ -51,80 +51,80 @@ | ... | @@ -51,80 +51,80 @@ |
51 | 51 | ||
52 | <el-row :gutter="10" v-if="ruleForm.qlxx"> | 52 | <el-row :gutter="10" v-if="ruleForm.qlxx"> |
53 | <el-col :span="8"> | 53 | <el-col :span="8"> |
54 | <el-form-item :class="flag ? 'marginBot0' : ''" label="不动产单元号:"> | 54 | <el-form-item label="不动产单元号:"> |
55 | <el-input disabled v-model="ruleForm.qlxx.bdcdyh"></el-input> | 55 | <el-input disabled v-model="ruleForm.qlxx.bdcdyh"></el-input> |
56 | </el-form-item> | 56 | </el-form-item> |
57 | </el-col> | 57 | </el-col> |
58 | <el-col :span="16"> | 58 | <el-col :span="16"> |
59 | <el-form-item :class="flag ? 'marginBot0' : ''" label="坐落:"> | 59 | <el-form-item label="坐落:"> |
60 | <el-input disabled v-model="ruleForm.qlxx.zl"></el-input> | 60 | <el-input disabled v-model="ruleForm.qlxx.zl"></el-input> |
61 | </el-form-item> | 61 | </el-form-item> |
62 | </el-col> | 62 | </el-col> |
63 | </el-row> | 63 | </el-row> |
64 | <el-row :gutter="10" v-if="ruleForm.fdcq2"> | 64 | <el-row :gutter="10" v-if="ruleForm.fdcq2"> |
65 | <el-col :span="8"> | 65 | <el-col :span="8"> |
66 | <el-form-item :class="flag ? 'marginBot0' : ''" label="土地用途:"> | 66 | <el-form-item label="土地用途:"> |
67 | <el-input disabled v-model="ruleForm.fdcq2.yt"></el-input> | 67 | <el-input disabled v-model="ruleForm.fdcq2.yt"></el-input> |
68 | </el-form-item> | 68 | </el-form-item> |
69 | </el-col> | 69 | </el-col> |
70 | <el-col :span="8"> | 70 | <el-col :span="8"> |
71 | <el-form-item :class="flag ? 'marginBot0' : ''" label="土地使用起止时间:"> | 71 | <el-form-item label="土地使用起止时间:"> |
72 | <el-input disabled v-model="ruleForm.fdcq2.tdsyqzsj"></el-input> | 72 | <el-input disabled v-model="ruleForm.fdcq2.tdsyqzsj"></el-input> |
73 | </el-form-item> | 73 | </el-form-item> |
74 | </el-col> | 74 | </el-col> |
75 | <el-col :span="8"> | 75 | <el-col :span="8"> |
76 | <el-form-item :class="flag ? 'marginBot0' : ''" label="土地使用期限:"> | 76 | <el-form-item label="土地使用期限:"> |
77 | <el-input disabled v-model="ruleForm.fdcq2.tdsyqx"></el-input> | 77 | <el-input disabled v-model="ruleForm.fdcq2.tdsyqx"></el-input> |
78 | </el-form-item> | 78 | </el-form-item> |
79 | </el-col> | 79 | </el-col> |
80 | </el-row> | 80 | </el-row> |
81 | <el-row :gutter="10" v-if="ruleForm.qlxx"> | 81 | <el-row :gutter="10" v-if="ruleForm.qlxx"> |
82 | <el-col :span="8"> | 82 | <el-col :span="8"> |
83 | <el-form-item :class="flag ? 'marginBot0' : ''" label="房屋用途:"> | 83 | <el-form-item label="房屋用途:"> |
84 | <el-input disabled v-model="ruleForm.qlxx.ytmc"></el-input> | 84 | <el-input disabled v-model="ruleForm.qlxx.ytmc"></el-input> |
85 | </el-form-item> | 85 | </el-form-item> |
86 | </el-col> | 86 | </el-col> |
87 | <el-col :span="8"> | 87 | <el-col :span="8"> |
88 | <el-form-item :class="flag ? 'marginBot0' : ''" label="房屋性质:"> | 88 | <el-form-item label="房屋性质:"> |
89 | <el-input disabled v-model="ruleForm.fdcq2.fwxzmc"></el-input> | 89 | <el-input disabled v-model="ruleForm.fdcq2.fwxzmc"></el-input> |
90 | </el-form-item> | 90 | </el-form-item> |
91 | </el-col> | 91 | </el-col> |
92 | <el-col :span="8"> | 92 | <el-col :span="8"> |
93 | <el-form-item :class="flag ? 'marginBot0' : ''" label="房屋结构:"> | 93 | <el-form-item label="房屋结构:"> |
94 | <el-input disabled v-model="ruleForm.fdcq2.fwjgmc"></el-input> | 94 | <el-input disabled v-model="ruleForm.fdcq2.fwjgmc"></el-input> |
95 | </el-form-item> | 95 | </el-form-item> |
96 | </el-col> | 96 | </el-col> |
97 | </el-row> | 97 | </el-row> |
98 | <el-row :gutter="10" v-if="ruleForm.fdcq2"> | 98 | <el-row :gutter="10" v-if="ruleForm.fdcq2"> |
99 | <el-col :span="8"> | 99 | <el-col :span="8"> |
100 | <el-form-item :class="flag ? 'marginBot0' : ''" label="所在层:"> | 100 | <el-form-item label="所在层:"> |
101 | <el-input disabled v-model="ruleForm.fdcq2.szc"></el-input> | 101 | <el-input disabled v-model="ruleForm.fdcq2.szc"></el-input> |
102 | </el-form-item> | 102 | </el-form-item> |
103 | </el-col> | 103 | </el-col> |
104 | <el-col :span="8"> | 104 | <el-col :span="8"> |
105 | <el-form-item :class="flag ? 'marginBot0' : ''" label="总层数:"> | 105 | <el-form-item label="总层数:"> |
106 | <el-input disabled v-model="ruleForm.fdcq2.zcs"></el-input> | 106 | <el-input disabled v-model="ruleForm.fdcq2.zcs"></el-input> |
107 | </el-form-item> | 107 | </el-form-item> |
108 | </el-col> | 108 | </el-col> |
109 | <el-col :span="8"> | 109 | <el-col :span="8"> |
110 | <el-form-item :class="flag ? 'marginBot0' : ''" label="竣工时间:"> | 110 | <el-form-item label="竣工时间:"> |
111 | <el-input disabled v-model="ruleForm.fdcq2.jgsj"></el-input> | 111 | <el-input disabled v-model="ruleForm.fdcq2.jgsj"></el-input> |
112 | </el-form-item> | 112 | </el-form-item> |
113 | </el-col> | 113 | </el-col> |
114 | </el-row> | 114 | </el-row> |
115 | <el-row :gutter="10" v-if="ruleForm.qlxx"> | 115 | <el-row :gutter="10" v-if="ruleForm.qlxx"> |
116 | <el-col :span="8"> | 116 | <el-col :span="8"> |
117 | <el-form-item :class="flag ? 'marginBot0' : ''" label="建筑面积:"> | 117 | <el-form-item label="建筑面积:"> |
118 | <el-input disabled v-model="ruleForm.qlxx.mj"></el-input> | 118 | <el-input disabled v-model="ruleForm.qlxx.mj"></el-input> |
119 | </el-form-item> | 119 | </el-form-item> |
120 | </el-col> | 120 | </el-col> |
121 | <el-col :span="8"> | 121 | <el-col :span="8"> |
122 | <el-form-item :class="flag ? 'marginBot0' : ''" label="专有建筑面积:"> | 122 | <el-form-item label="专有建筑面积:"> |
123 | <el-input disabled v-model="ruleForm.fdcq2.zyjzmj"></el-input> | 123 | <el-input disabled v-model="ruleForm.fdcq2.zyjzmj"></el-input> |
124 | </el-form-item> | 124 | </el-form-item> |
125 | </el-col> | 125 | </el-col> |
126 | <el-col :span="8"> | 126 | <el-col :span="8"> |
127 | <el-form-item :class="flag ? 'marginBot0' : ''" label="分摊建筑面积:"> | 127 | <el-form-item label="分摊建筑面积:"> |
128 | <el-input disabled v-model="ruleForm.fdcq2.ftjzmj"></el-input> | 128 | <el-input disabled v-model="ruleForm.fdcq2.ftjzmj"></el-input> |
129 | </el-form-item> | 129 | </el-form-item> |
130 | </el-col> | 130 | </el-col> |
... | @@ -135,7 +135,7 @@ | ... | @@ -135,7 +135,7 @@ |
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="14" v-if="ruleForm.qlxx"> |
138 | <el-form-item :class="flag ? 'marginBot0' : ''" label="共有方式:"> | 138 | <el-form-item label="共有方式:"> |
139 | <el-radio-group :disabled="$route.query.viewtype == 1" v-model="ruleForm.slywxx.gyfs"> | 139 | <el-radio-group :disabled="$route.query.viewtype == 1" v-model="ruleForm.slywxx.gyfs"> |
140 | <el-radio label="0">单独所有</el-radio> | 140 | <el-radio label="0">单独所有</el-radio> |
141 | <el-radio label="1">共同共有</el-radio> | 141 | <el-radio label="1">共同共有</el-radio> |
... | @@ -145,7 +145,7 @@ | ... | @@ -145,7 +145,7 @@ |
145 | </el-form-item> | 145 | </el-form-item> |
146 | </el-col> | 146 | </el-col> |
147 | <el-col :span="5" v-show="ruleForm.qlxx && ruleForm.qlxx.gyfs == '2'"> | 147 | <el-col :span="5" v-show="ruleForm.qlxx && ruleForm.qlxx.gyfs == '2'"> |
148 | <el-form-item :class="flag ? 'marginBot0' : ''" label="是否分别持证:"> | 148 | <el-form-item label="是否分别持证:"> |
149 | <el-radio-group v-model="ruleForm.sffbcz"> | 149 | <el-radio-group v-model="ruleForm.sffbcz"> |
150 | <el-radio label="1">是</el-radio> | 150 | <el-radio label="1">是</el-radio> |
151 | <el-radio label="0">否</el-radio> | 151 | <el-radio label="0">否</el-radio> |
... | @@ -153,7 +153,7 @@ | ... | @@ -153,7 +153,7 @@ |
153 | </el-form-item> | 153 | </el-form-item> |
154 | </el-col> | 154 | </el-col> |
155 | <el-col :span="5" v-show="ruleForm.qlxx && ruleForm.qlxx.gyfs == '2'"> | 155 | <el-col :span="5" v-show="ruleForm.qlxx && ruleForm.qlxx.gyfs == '2'"> |
156 | <el-form-item :class="flag ? 'marginBot0' : ''" label="持证人:"> | 156 | <el-form-item label="持证人:"> |
157 | <el-select v-model="ruleForm.czr" placeholder="持证人"> | 157 | <el-select v-model="ruleForm.czr" placeholder="持证人"> |
158 | <el-option v-for="item in czrOptions" :key="item.value" :label="item.label" :value="item.value"> | 158 | <el-option v-for="item in czrOptions" :key="item.value" :label="item.label" :value="item.value"> |
159 | </el-option> | 159 | </el-option> |
... | @@ -169,7 +169,7 @@ | ... | @@ -169,7 +169,7 @@ |
169 | </div> | 169 | </div> |
170 | <el-row :gutter="10"> | 170 | <el-row :gutter="10"> |
171 | <el-col> | 171 | <el-col> |
172 | <el-form-item v-if="ruleForm.fdcq2" :class="flag ? 'marginBot0' : ''" label="登记原因:" prop="djyy"> | 172 | <el-form-item v-if="ruleForm.fdcq2" label="登记原因:" prop="djyy"> |
173 | <el-input class="textArea" type="textarea" :disabled="$route.query.viewtype == 1" | 173 | <el-input class="textArea" type="textarea" :disabled="$route.query.viewtype == 1" |
174 | v-model="ruleForm.fdcq2.djyy"> | 174 | v-model="ruleForm.fdcq2.djyy"> |
175 | </el-input> | 175 | </el-input> |
... | @@ -178,7 +178,7 @@ | ... | @@ -178,7 +178,7 @@ |
178 | </el-row> | 178 | </el-row> |
179 | </div> | 179 | </div> |
180 | <el-row class="btn" v-if="!$route.query.viewtype"> | 180 | <el-row class="btn" v-if="!$route.query.viewtype"> |
181 | <el-form-item :class="flag ? 'marginBot0' : ''"> | 181 | <el-form-item> |
182 | <el-button type="primary" @click="onSubmit">保存</el-button> | 182 | <el-button type="primary" @click="onSubmit">保存</el-button> |
183 | </el-form-item> | 183 | </el-form-item> |
184 | </el-row> | 184 | </el-row> | ... | ... |
... | @@ -3,31 +3,31 @@ | ... | @@ -3,31 +3,31 @@ |
3 | <div class="slxx"> | 3 | <div class="slxx"> |
4 | <el-form :model="ruleForm" :rules="rules" ref="ruleForm" :label-position="flag ? 'top' : ''" :inline="flag" | 4 | <el-form :model="ruleForm" :rules="rules" ref="ruleForm" :label-position="flag ? 'top' : ''" :inline="flag" |
5 | label-width="120px"> | 5 | label-width="120px"> |
6 | <div class="slxx_con"> | 6 | <div class="slxx_con" :class="flag ? 'formMarginBot0' : ''"> |
7 | <div class="slxx_title title-block"> | 7 | <div class="slxx_title title-block"> |
8 | 受理信息 | 8 | 受理信息 |
9 | <div class="triangle"></div> | 9 | <div class="triangle"></div> |
10 | </div> | 10 | </div> |
11 | <el-row :gutter="10"> | 11 | <el-row :gutter="10"> |
12 | <el-col :span="8"> | 12 | <el-col :span="8"> |
13 | <el-form-item :class="flag ? 'marginBot0' : ''" label="业务号:" prop="ywh"> | 13 | <el-form-item label="业务号:" prop="ywh"> |
14 | <el-input disabled v-model="ruleForm.ywh"></el-input> | 14 | <el-input disabled v-model="ruleForm.ywh"></el-input> |
15 | </el-form-item> | 15 | </el-form-item> |
16 | </el-col> | 16 | </el-col> |
17 | <el-col :span="8"> | 17 | <el-col :span="8"> |
18 | <el-form-item :class="flag ? 'marginBot0' : ''" label="受理人员:" prop="slry"> | 18 | <el-form-item label="受理人员:" prop="slry"> |
19 | <el-input disabled v-model="ruleForm.slry"></el-input> | 19 | <el-input disabled v-model="ruleForm.slry"></el-input> |
20 | </el-form-item> | 20 | </el-form-item> |
21 | </el-col> | 21 | </el-col> |
22 | <el-col :span="8"> | 22 | <el-col :span="8"> |
23 | <el-form-item :class="flag ? 'marginBot0' : ''" label="受理时间:" prop="slsj"> | 23 | <el-form-item label="受理时间:" prop="slsj"> |
24 | <el-input disabled v-model="ruleForm.slsj"></el-input> | 24 | <el-input disabled v-model="ruleForm.slsj"></el-input> |
25 | </el-form-item> | 25 | </el-form-item> |
26 | </el-col> | 26 | </el-col> |
27 | </el-row> | 27 | </el-row> |
28 | <el-row :gutter="10"> | 28 | <el-row :gutter="10"> |
29 | <el-col :span="8"> | 29 | <el-col :span="8"> |
30 | <el-form-item :class="flag ? 'marginBot0' : ''" label="权利类型:" prop="qllx"> | 30 | <el-form-item label="权利类型:" prop="qllx"> |
31 | <el-select disabled v-model="ruleForm.qllx" filterable clearable placeholder="请选择权利类型"> | 31 | <el-select disabled v-model="ruleForm.qllx" filterable clearable placeholder="请选择权利类型"> |
32 | <el-option v-for="item in dictData['A8']" :key="item.dcode" :label="item.dname" :value="item.dcode"> | 32 | <el-option v-for="item in dictData['A8']" :key="item.dcode" :label="item.dname" :value="item.dcode"> |
33 | </el-option> | 33 | </el-option> |
... | @@ -35,7 +35,7 @@ | ... | @@ -35,7 +35,7 @@ |
35 | </el-form-item> | 35 | </el-form-item> |
36 | </el-col> | 36 | </el-col> |
37 | <el-col :span="8"> | 37 | <el-col :span="8"> |
38 | <el-form-item :class="flag ? 'marginBot0' : ''" label="登记类型:" prop="djlx"> | 38 | <el-form-item label="登记类型:" prop="djlx"> |
39 | <el-select disabled v-model="ruleForm.djlx" filterable clearable placeholder="请选择登记类型"> | 39 | <el-select disabled v-model="ruleForm.djlx" filterable clearable placeholder="请选择登记类型"> |
40 | <el-option v-for="item in dictData['A21']" :key="item.dcode" :label="item.dname" :value="item.dcode"> | 40 | <el-option v-for="item in dictData['A21']" :key="item.dcode" :label="item.dname" :value="item.dcode"> |
41 | </el-option> | 41 | </el-option> |
... | @@ -43,7 +43,7 @@ | ... | @@ -43,7 +43,7 @@ |
43 | </el-form-item> | 43 | </el-form-item> |
44 | </el-col> | 44 | </el-col> |
45 | <el-col :span="8"> | 45 | <el-col :span="8"> |
46 | <el-form-item :class="flag ? 'marginBot0' : ''" label="登记情形:" prop="djqx"> | 46 | <el-form-item label="登记情形:" prop="djqx"> |
47 | <el-input disabled v-model="ruleForm.djqxmc"></el-input> | 47 | <el-input disabled v-model="ruleForm.djqxmc"></el-input> |
48 | </el-form-item> | 48 | </el-form-item> |
49 | </el-col> | 49 | </el-col> |
... | @@ -54,34 +54,34 @@ | ... | @@ -54,34 +54,34 @@ |
54 | </div> | 54 | </div> |
55 | <el-row :gutter="10"> | 55 | <el-row :gutter="10"> |
56 | <el-col :span="8"> | 56 | <el-col :span="8"> |
57 | <el-form-item :class="flag ? 'marginBot0' : ''" label="宗地代码:" prop="zddm"> | 57 | <el-form-item label="宗地代码:" prop="zddm"> |
58 | <el-input disabled v-model="ruleForm.bdcdyh"></el-input> | 58 | <el-input disabled v-model="ruleForm.bdcdyh"></el-input> |
59 | </el-form-item> | 59 | </el-form-item> |
60 | </el-col> | 60 | </el-col> |
61 | <el-col :span="8"> | 61 | <el-col :span="8"> |
62 | <el-form-item :class="flag ? 'marginBot0' : ''" label="不动产单元号:" prop="bdcdyh"> | 62 | <el-form-item label="不动产单元号:" prop="bdcdyh"> |
63 | <el-input disabled v-model="ruleForm.bdcdyh"></el-input> | 63 | <el-input disabled v-model="ruleForm.bdcdyh"></el-input> |
64 | </el-form-item> | 64 | </el-form-item> |
65 | </el-col> | 65 | </el-col> |
66 | <el-col :span="8"> | 66 | <el-col :span="8"> |
67 | <el-form-item :class="flag ? 'marginBot0' : ''" label="权利性质:" prop="qlxzmc"> | 67 | <el-form-item label="权利性质:" prop="qlxzmc"> |
68 | <el-input disabled v-model="ruleForm.qlxzmc"></el-input> | 68 | <el-input disabled v-model="ruleForm.qlxzmc"></el-input> |
69 | </el-form-item> | 69 | </el-form-item> |
70 | </el-col> | 70 | </el-col> |
71 | </el-row> | 71 | </el-row> |
72 | <el-row :gutter="10"> | 72 | <el-row :gutter="10"> |
73 | <el-col :span="8"> | 73 | <el-col :span="8"> |
74 | <el-form-item :class="flag ? 'marginBot0' : ''" label="自然幢号:" prop="zrzh"> | 74 | <el-form-item label="自然幢号:" prop="zrzh"> |
75 | <el-input disabled v-model="ruleForm.zrzDetail.zrzh"></el-input> | 75 | <el-input disabled v-model="ruleForm.zrzDetail.zrzh"></el-input> |
76 | </el-form-item> | 76 | </el-form-item> |
77 | </el-col> | 77 | </el-col> |
78 | <el-col :span="8"> | 78 | <el-col :span="8"> |
79 | <el-form-item :class="flag ? 'marginBot0' : ''" label="户不动产单元号:" prop="hbdcdyh"> | 79 | <el-form-item label="户不动产单元号:" prop="hbdcdyh"> |
80 | <el-input disabled v-model="ruleForm.ghytmc"></el-input> | 80 | <el-input disabled v-model="ruleForm.ghytmc"></el-input> |
81 | </el-form-item> | 81 | </el-form-item> |
82 | </el-col> | 82 | </el-col> |
83 | <el-col :span="8"> | 83 | <el-col :span="8"> |
84 | <el-form-item :class="flag ? 'marginBot0' : ''" label="登记状态:" prop="djzt"> | 84 | <el-form-item label="登记状态:" prop="djzt"> |
85 | <el-select disabled v-model="ruleForm.djzt" filterable clearable> | 85 | <el-select disabled v-model="ruleForm.djzt" filterable clearable> |
86 | <el-option v-for="item in djztList" :key="item.value" :label="item.label" :value="item.value"> | 86 | <el-option v-for="item in djztList" :key="item.value" :label="item.label" :value="item.value"> |
87 | </el-option> | 87 | </el-option> |
... | @@ -91,30 +91,30 @@ | ... | @@ -91,30 +91,30 @@ |
91 | </el-row> | 91 | </el-row> |
92 | <el-row :gutter="10"> | 92 | <el-row :gutter="10"> |
93 | <el-col :span="8"> | 93 | <el-col :span="8"> |
94 | <el-form-item :class="flag ? 'marginBot0' : ''" label="图幅丘幢号:" prop="tfqzh"> | 94 | <el-form-item label="图幅丘幢号:" prop="tfqzh"> |
95 | <el-input disabled v-model="ruleForm.tfqzh"></el-input> | 95 | <el-input disabled v-model="ruleForm.tfqzh"></el-input> |
96 | </el-form-item> | 96 | </el-form-item> |
97 | </el-col> | 97 | </el-col> |
98 | 98 | ||
99 | <el-col :span="16"> | 99 | <el-col :span="16"> |
100 | <el-form-item :class="flag ? 'marginBot0' : ''" label="坐落:" prop="zl"> | 100 | <el-form-item label="坐落:" prop="zl"> |
101 | <el-input disabled v-model="ruleForm.zl"></el-input> | 101 | <el-input disabled v-model="ruleForm.zl"></el-input> |
102 | </el-form-item> | 102 | </el-form-item> |
103 | </el-col> | 103 | </el-col> |
104 | </el-row> | 104 | </el-row> |
105 | <el-row :gutter="10"> | 105 | <el-row :gutter="10"> |
106 | <el-col :span="8"> | 106 | <el-col :span="8"> |
107 | <el-form-item :class="flag ? 'marginBot0' : ''" label="房屋用途:"> | 107 | <el-form-item label="房屋用途:"> |
108 | <el-input disabled v-model="ruleForm.fwyt"></el-input> | 108 | <el-input disabled v-model="ruleForm.fwyt"></el-input> |
109 | </el-form-item> | 109 | </el-form-item> |
110 | </el-col> | 110 | </el-col> |
111 | <el-col :span="8"> | 111 | <el-col :span="8"> |
112 | <el-form-item :class="flag ? 'marginBot0' : ''" label="房屋性质:"> | 112 | <el-form-item label="房屋性质:"> |
113 | <el-input disabled v-model="ruleForm.fwxz"></el-input> | 113 | <el-input disabled v-model="ruleForm.fwxz"></el-input> |
114 | </el-form-item> | 114 | </el-form-item> |
115 | </el-col> | 115 | </el-col> |
116 | <el-col :span="8"> | 116 | <el-col :span="8"> |
117 | <el-form-item :class="flag ? 'marginBot0' : ''" label="房屋结构:"> | 117 | <el-form-item label="房屋结构:"> |
118 | <el-input disabled v-model="ruleForm.fwjg"></el-input> | 118 | <el-input disabled v-model="ruleForm.fwjg"></el-input> |
119 | </el-form-item> | 119 | </el-form-item> |
120 | </el-col> | 120 | </el-col> |
... | @@ -125,7 +125,7 @@ | ... | @@ -125,7 +125,7 @@ |
125 | </div> | 125 | </div> |
126 | <el-row :gutter="10"> | 126 | <el-row :gutter="10"> |
127 | <el-col :span="14"> | 127 | <el-col :span="14"> |
128 | <el-form-item :class="flag ? 'marginBot0' : ''" label="共有方式:"> | 128 | <el-form-item label="共有方式:"> |
129 | <el-radio-group :disabled="$route.query.viewtype == 1" v-model="ruleForm.gyfs"> | 129 | <el-radio-group :disabled="$route.query.viewtype == 1" v-model="ruleForm.gyfs"> |
130 | <el-radio label="1">单独所有</el-radio> | 130 | <el-radio label="1">单独所有</el-radio> |
131 | <el-radio label="2">共同共有</el-radio> | 131 | <el-radio label="2">共同共有</el-radio> |
... | @@ -134,7 +134,7 @@ | ... | @@ -134,7 +134,7 @@ |
134 | </el-form-item> | 134 | </el-form-item> |
135 | </el-col> | 135 | </el-col> |
136 | <el-col :span="5" v-show="ruleForm.gyfs == '2'"> | 136 | <el-col :span="5" v-show="ruleForm.gyfs == '2'"> |
137 | <el-form-item :class="flag ? 'marginBot0' : ''" label="是否分别持证:"> | 137 | <el-form-item label="是否分别持证:"> |
138 | <el-radio-group v-model="ruleForm.sffbcz"> | 138 | <el-radio-group v-model="ruleForm.sffbcz"> |
139 | <el-radio label="1">是</el-radio> | 139 | <el-radio label="1">是</el-radio> |
140 | <el-radio label="0">否</el-radio> | 140 | <el-radio label="0">否</el-radio> |
... | @@ -142,7 +142,7 @@ | ... | @@ -142,7 +142,7 @@ |
142 | </el-form-item> | 142 | </el-form-item> |
143 | </el-col> | 143 | </el-col> |
144 | <el-col :span="5" v-show="ruleForm.gyfs == '2'"> | 144 | <el-col :span="5" v-show="ruleForm.gyfs == '2'"> |
145 | <el-form-item :class="flag ? 'marginBot0' : ''" label="持证人:"> | 145 | <el-form-item label="持证人:"> |
146 | <el-select v-model="ruleForm.czr" placeholder="持证人"> | 146 | <el-select v-model="ruleForm.czr" placeholder="持证人"> |
147 | <el-option v-for="item in czrOptions" :key="item.value" :label="item.label" :value="item.value"> | 147 | <el-option v-for="item in czrOptions" :key="item.value" :label="item.label" :value="item.value"> |
148 | </el-option> | 148 | </el-option> |
... | @@ -157,7 +157,7 @@ | ... | @@ -157,7 +157,7 @@ |
157 | </div> | 157 | </div> |
158 | <el-row :gutter="10"> | 158 | <el-row :gutter="10"> |
159 | <el-col> | 159 | <el-col> |
160 | <el-form-item :class="flag ? 'marginBot0' : ''" label="登记原因:" prop="djyy"> | 160 | <el-form-item label="登记原因:" prop="djyy"> |
161 | <el-input class="textArea" type="textarea" :disabled="$route.query.viewtype == 1" v-model="ruleForm.djyy"> | 161 | <el-input class="textArea" type="textarea" :disabled="$route.query.viewtype == 1" v-model="ruleForm.djyy"> |
162 | </el-input> | 162 | </el-input> |
163 | </el-form-item> | 163 | </el-form-item> |
... | @@ -165,7 +165,7 @@ | ... | @@ -165,7 +165,7 @@ |
165 | </el-row> | 165 | </el-row> |
166 | </div> | 166 | </div> |
167 | <el-row class="btn" v-if="!$route.query.viewtype"> | 167 | <el-row class="btn" v-if="!$route.query.viewtype"> |
168 | <el-form-item :class="flag ? 'marginBot0' : ''"> | 168 | <el-form-item> |
169 | <el-button type="primary" @click="onSubmit">保存</el-button> | 169 | <el-button type="primary" @click="onSubmit">保存</el-button> |
170 | </el-form-item> | 170 | </el-form-item> |
171 | </el-row> | 171 | </el-row> | ... | ... |
... | @@ -3,41 +3,41 @@ | ... | @@ -3,41 +3,41 @@ |
3 | <div class="slxx"> | 3 | <div class="slxx"> |
4 | <el-form :model="ruleForm" :rules="rules" class="loadingtext" ref="ruleForm" :label-position="flag ? 'top' : ''" | 4 | <el-form :model="ruleForm" :rules="rules" class="loadingtext" ref="ruleForm" :label-position="flag ? 'top' : ''" |
5 | :inline="flag" label-width="120px"> | 5 | :inline="flag" label-width="120px"> |
6 | <div class="slxx_con" v-if="isShow"> | 6 | <div class="slxx_con" v-if="isShow" :class="flag ? 'formMarginBot0' : ''"> |
7 | <div class="slxx_title title-block"> | 7 | <div class="slxx_title title-block"> |
8 | 受理信息 | 8 | 受理信息 |
9 | <div class="triangle"></div> | 9 | <div class="triangle"></div> |
10 | </div> | 10 | </div> |
11 | <el-row :gutter="10"> | 11 | <el-row :gutter="10"> |
12 | <el-col :span="8"> | 12 | <el-col :span="8"> |
13 | <el-form-item :class="flag ? 'marginBot0' : ''" label="业务号:"> | 13 | <el-form-item label="业务号:"> |
14 | <el-input disabled v-model="ruleForm.slywxx.ywh"></el-input> | 14 | <el-input disabled v-model="ruleForm.slywxx.ywh"></el-input> |
15 | </el-form-item> | 15 | </el-form-item> |
16 | </el-col> | 16 | </el-col> |
17 | <el-col :span="8"> | 17 | <el-col :span="8"> |
18 | <el-form-item :class="flag ? 'marginBot0' : ''" label="受理人员:"> | 18 | <el-form-item label="受理人员:"> |
19 | <el-input disabled v-model="ruleForm.slywxx.slry"></el-input> | 19 | <el-input disabled v-model="ruleForm.slywxx.slry"></el-input> |
20 | </el-form-item> | 20 | </el-form-item> |
21 | </el-col> | 21 | </el-col> |
22 | <el-col :span="8"> | 22 | <el-col :span="8"> |
23 | <el-form-item :class="flag ? 'marginBot0' : ''" label="受理时间:"> | 23 | <el-form-item label="受理时间:"> |
24 | <el-input disabled v-model="ruleForm.slywxx.slsj"></el-input> | 24 | <el-input disabled v-model="ruleForm.slywxx.slsj"></el-input> |
25 | </el-form-item> | 25 | </el-form-item> |
26 | </el-col> | 26 | </el-col> |
27 | </el-row> | 27 | </el-row> |
28 | <el-row :gutter="10"> | 28 | <el-row :gutter="10"> |
29 | <el-col :span="8"> | 29 | <el-col :span="8"> |
30 | <el-form-item :class="flag ? 'marginBot0' : ''" label="权利类型:"> | 30 | <el-form-item label="权利类型:"> |
31 | <el-input disabled v-model="ruleForm.slywxx.qllxmc"></el-input> | 31 | <el-input disabled v-model="ruleForm.slywxx.qllxmc"></el-input> |
32 | </el-form-item> | 32 | </el-form-item> |
33 | </el-col> | 33 | </el-col> |
34 | <el-col :span="8"> | 34 | <el-col :span="8"> |
35 | <el-form-item :class="flag ? 'marginBot0' : ''" label="登记类型:"> | 35 | <el-form-item label="登记类型:"> |
36 | <el-input disabled v-model="ruleForm.slywxx.djlxmc"></el-input> | 36 | <el-input disabled v-model="ruleForm.slywxx.djlxmc"></el-input> |
37 | </el-form-item> | 37 | </el-form-item> |
38 | </el-col> | 38 | </el-col> |
39 | <el-col :span="8"> | 39 | <el-col :span="8"> |
40 | <el-form-item :class="flag ? 'marginBot0' : ''" label="登记情形:"> | 40 | <el-form-item label="登记情形:"> |
41 | <el-input disabled v-model="ruleForm.slywxx.djqxmc"></el-input> | 41 | <el-input disabled v-model="ruleForm.slywxx.djqxmc"></el-input> |
42 | </el-form-item> | 42 | </el-form-item> |
43 | </el-col> | 43 | </el-col> |
... | @@ -48,43 +48,44 @@ | ... | @@ -48,43 +48,44 @@ |
48 | </div> | 48 | </div> |
49 | <el-row :gutter="10"> | 49 | <el-row :gutter="10"> |
50 | <el-col :span="8"> | 50 | <el-col :span="8"> |
51 | <el-form-item :class="flag ? 'marginBot0' : ''" label="宗地代码:"> | 51 | <el-form-item label="宗地代码:"> |
52 | <el-input disabled v-model="ruleForm.zdjbxx.zddm"></el-input> | 52 | <el-input disabled v-model="ruleForm.zdjbxx.zddm"></el-input> |
53 | </el-form-item> | 53 | </el-form-item> |
54 | </el-col> | 54 | </el-col> |
55 | <el-col :span="8"> | 55 | <el-col :span="8"> |
56 | <el-form-item :class="flag ? 'marginBot0' : ''" label="不动产单元号:"> | 56 | <el-form-item label="不动产单元号:"> |
57 | <el-input disabled v-model="ruleForm.zdjbxx.bdcdyh"></el-input> | 57 | <el-input disabled v-model="ruleForm.zdjbxx.bdcdyh"></el-input> |
58 | </el-form-item> | 58 | </el-form-item> |
59 | </el-col> | 59 | </el-col> |
60 | <el-col :span="8"> | 60 | <el-col :span="8"> |
61 | <el-form-item :class="flag ? 'marginBot0' : ''" label="权利性质:"> | 61 | <el-form-item label="权利性质:"> |
62 | <el-input disabled v-model="ruleForm.zdjbxx.qlxzmc"></el-input> | 62 | <el-input disabled v-model="ruleForm.zdjbxx.qlxzmc"></el-input> |
63 | </el-form-item> | 63 | </el-form-item> |
64 | </el-col> | 64 | </el-col> |
65 | </el-row> | 65 | </el-row> |
66 | <el-row :gutter="10"> | 66 | <el-row :gutter="10"> |
67 | <el-col :span="8"> | 67 | <el-col :span="8"> |
68 | <el-form-item :class="flag ? 'marginBot0' : ''" label="宗地面积:"> | 68 | <el-form-item label="宗地面积:"> |
69 | <el-input disabled v-model="ruleForm.zdjbxx.zdmj"></el-input> | 69 | <el-input disabled v-model="ruleForm.zdjbxx.zdmj"></el-input> |
70 | </el-form-item> | 70 | </el-form-item> |
71 | </el-col> | 71 | </el-col> |
72 | <el-col :span="8"> | 72 | <el-col :span="8"> |
73 | <el-form-item :class="flag ? 'marginBot0' : ''" label="土地用途:"> | 73 | <el-form-item label="土地用途:"> |
74 | <el-input disabled v-model="ruleForm.zdjbxx.ghytmc"></el-input> | 74 | <el-input disabled v-model="ruleForm.zdjbxx.ghytmc"></el-input> |
75 | </el-form-item> | 75 | </el-form-item> |
76 | </el-col> | 76 | </el-col> |
77 | <el-col :span="8"> | 77 | <el-col :span="8"> |
78 | <el-form-item :class="flag ? 'marginBot0' : ''" label="权利设定方式:"> | 78 | <el-form-item label="权利设定方式:"> |
79 | <el-input disabled v-model="ruleForm.zdjbxx.qlsdfsmc"></el-input> | 79 | <el-input disabled v-model="ruleForm.zdjbxx.qlsdfsmc"></el-input> |
80 | </el-form-item> | 80 | </el-form-item> |
81 | </el-col> | 81 | </el-col> |
82 | </el-row> | 82 | </el-row> |
83 | <el-row :gutter="10"> | 83 | <el-row :gutter="10"> |
84 | <el-col :span="8"> | 84 | <el-col :span="8"> |
85 | <el-form-item :class="flag ? 'marginBot0' : ''" label="取得价格:"> | 85 | <el-form-item label="取得价格:"> |
86 | <div style="display:flex"> | 86 | <div style="display:flex"> |
87 | <el-input v-model="ruleForm.jsydsyq.qdjg" style="width:500%" oninput="value=value.replace(/[^\d.]/g,'')"></el-input> | 87 | <el-input v-model="ruleForm.jsydsyq.qdjg" style="width:500%" |
88 | oninput="value=value.replace(/[^\d.]/g,'')"></el-input> | ||
88 | <el-select v-model="ruleForm.jsydsyq.jedw"> | 89 | <el-select v-model="ruleForm.jsydsyq.jedw"> |
89 | <el-option v-for="item in dictData['A57']" :key="item.dcode" :label="item.dname" :value="item.dcode"> | 90 | <el-option v-for="item in dictData['A57']" :key="item.dcode" :label="item.dname" :value="item.dcode"> |
90 | </el-option> | 91 | </el-option> |
... | @@ -94,27 +95,27 @@ | ... | @@ -94,27 +95,27 @@ |
94 | </el-col> | 95 | </el-col> |
95 | 96 | ||
96 | <el-col :span="16"> | 97 | <el-col :span="16"> |
97 | <el-form-item :class="flag ? 'marginBot0' : ''" label="坐落:"> | 98 | <el-form-item label="坐落:"> |
98 | <el-input disabled v-model="ruleForm.zdjbxx.zl"></el-input> | 99 | <el-input disabled v-model="ruleForm.zdjbxx.zl"></el-input> |
99 | </el-form-item> | 100 | </el-form-item> |
100 | </el-col> | 101 | </el-col> |
101 | </el-row> | 102 | </el-row> |
102 | <el-row :gutter="10"> | 103 | <el-row :gutter="10"> |
103 | <el-col :span="8"> | 104 | <el-col :span="8"> |
104 | <el-form-item :class="flag ? 'marginBot0' : ''" label="使用期限:"> | 105 | <el-form-item label="使用期限:"> |
105 | <el-input disabled v-model="ruleForm.jsydsyq.tdsyqx"></el-input> | 106 | <el-input disabled v-model="ruleForm.jsydsyq.tdsyqx"></el-input> |
106 | </el-form-item> | 107 | </el-form-item> |
107 | </el-col> | 108 | </el-col> |
108 | 109 | ||
109 | <el-col :span="16"> | 110 | <el-col :span="16"> |
110 | <el-form-item :class="flag ? 'marginBot0' : ''" label="使用权起止时间:"> | 111 | <el-form-item label="使用权起止时间:"> |
111 | <el-input disabled v-model="ruleForm.jsydsyq.syqqzsj"></el-input> | 112 | <el-input disabled v-model="ruleForm.jsydsyq.syqqzsj"></el-input> |
112 | </el-form-item> | 113 | </el-form-item> |
113 | </el-col> | 114 | </el-col> |
114 | </el-row> | 115 | </el-row> |
115 | <el-row :gutter="10"> | 116 | <el-row :gutter="10"> |
116 | <el-col> | 117 | <el-col> |
117 | <el-form-item :class="flag ? 'marginBot0' : ''" label="附记:" prop="fj"> | 118 | <el-form-item label="附记:" prop="fj"> |
118 | <el-input type="textarea" v-model="ruleForm.jsydsyq.fj" :disabled="$route.query.viewtype == 1"></el-input> | 119 | <el-input type="textarea" v-model="ruleForm.jsydsyq.fj" :disabled="$route.query.viewtype == 1"></el-input> |
119 | </el-form-item> | 120 | </el-form-item> |
120 | </el-col> | 121 | </el-col> |
... | @@ -125,7 +126,7 @@ | ... | @@ -125,7 +126,7 @@ |
125 | </div> | 126 | </div> |
126 | <el-row :gutter="10"> | 127 | <el-row :gutter="10"> |
127 | <el-col :span="14"> | 128 | <el-col :span="14"> |
128 | <el-form-item :class="flag ? 'marginBot0' : ''" label="共有方式:"> | 129 | <el-form-item label="共有方式:"> |
129 | <el-radio-group :disabled="$route.query.viewtype == 0" v-model="ruleForm.slywxx.gyfs"> | 130 | <el-radio-group :disabled="$route.query.viewtype == 0" v-model="ruleForm.slywxx.gyfs"> |
130 | <el-radio label="0">单独所有</el-radio> | 131 | <el-radio label="0">单独所有</el-radio> |
131 | <el-radio label="1">共同共有</el-radio> | 132 | <el-radio label="1">共同共有</el-radio> |
... | @@ -135,7 +136,7 @@ | ... | @@ -135,7 +136,7 @@ |
135 | </el-form-item> | 136 | </el-form-item> |
136 | </el-col> | 137 | </el-col> |
137 | <el-col :span="5" v-show="ruleForm.gyfs == '2'"> | 138 | <el-col :span="5" v-show="ruleForm.gyfs == '2'"> |
138 | <el-form-item :class="flag ? 'marginBot0' : ''" label="是否分别持证:"> | 139 | <el-form-item label="是否分别持证:"> |
139 | <el-radio-group v-model="ruleForm.slywxx.sffbcz"> | 140 | <el-radio-group v-model="ruleForm.slywxx.sffbcz"> |
140 | <el-radio label="1">是</el-radio> | 141 | <el-radio label="1">是</el-radio> |
141 | <el-radio label="0">否</el-radio> | 142 | <el-radio label="0">否</el-radio> |
... | @@ -143,7 +144,7 @@ | ... | @@ -143,7 +144,7 @@ |
143 | </el-form-item> | 144 | </el-form-item> |
144 | </el-col> | 145 | </el-col> |
145 | <el-col :span="5" v-show="ruleForm.gyfs == '2'"> | 146 | <el-col :span="5" v-show="ruleForm.gyfs == '2'"> |
146 | <el-form-item :class="flag ? 'marginBot0' : ''" label="持证人:"> | 147 | <el-form-item label="持证人:"> |
147 | <el-select v-model="ruleForm.czr" placeholder="持证人"> | 148 | <el-select v-model="ruleForm.czr" placeholder="持证人"> |
148 | <el-option v-for="item in czrOptions" :key="item.value" :label="item.label" :value="item.value"> | 149 | <el-option v-for="item in czrOptions" :key="item.value" :label="item.label" :value="item.value"> |
149 | </el-option> | 150 | </el-option> |
... | @@ -154,7 +155,7 @@ | ... | @@ -154,7 +155,7 @@ |
154 | <qlrCommonTable :tableData="ruleForm.qlrList" @upDateQlrxxList="upDateQlrxxList" | 155 | <qlrCommonTable :tableData="ruleForm.qlrList" @upDateQlrxxList="upDateQlrxxList" |
155 | :viewtype="$route.query.viewtype" :gyfs="ruleForm.slywxx.gyfs" /> | 156 | :viewtype="$route.query.viewtype" :gyfs="ruleForm.slywxx.gyfs" /> |
156 | 157 | ||
157 | 158 | ||
158 | <div v-if="ruleForm.ywrList && ruleForm.ywrList.length > 0"> | 159 | <div v-if="ruleForm.ywrList && ruleForm.ywrList.length > 0"> |
159 | <div class="slxx_title title-block"> | 160 | <div class="slxx_title title-block"> |
160 | 义务人信息 | 161 | 义务人信息 |
... | @@ -170,7 +171,7 @@ | ... | @@ -170,7 +171,7 @@ |
170 | </div> | 171 | </div> |
171 | <el-row :gutter="10"> | 172 | <el-row :gutter="10"> |
172 | <el-col> | 173 | <el-col> |
173 | <el-form-item :class="flag ? 'marginBot0' : ''" label="登记原因:" prop="djyy"> | 174 | <el-form-item label="登记原因:" prop="djyy"> |
174 | <el-input class="textArea" type="textarea" :disabled="$route.query.viewtype == 1" | 175 | <el-input class="textArea" type="textarea" :disabled="$route.query.viewtype == 1" |
175 | v-model="ruleForm.jsydsyq.djyy"> | 176 | v-model="ruleForm.jsydsyq.djyy"> |
176 | </el-input> | 177 | </el-input> |
... | @@ -179,7 +180,7 @@ | ... | @@ -179,7 +180,7 @@ |
179 | </el-row> | 180 | </el-row> |
180 | </div> | 181 | </div> |
181 | <el-row class="btn" v-if="!$route.query.viewtype"> | 182 | <el-row class="btn" v-if="!$route.query.viewtype"> |
182 | <el-form-item :class="flag ? 'marginBot0' : ''"> | 183 | <el-form-item> |
183 | <el-button type="primary" @click="onSubmit">保存</el-button> | 184 | <el-button type="primary" @click="onSubmit">保存</el-button> |
184 | </el-form-item> | 185 | </el-form-item> |
185 | </el-row> | 186 | </el-row> |
... | @@ -231,15 +232,15 @@ export default { | ... | @@ -231,15 +232,15 @@ export default { |
231 | this.ruleForm.ywrList && (this.ruleForm.ywrList = _.cloneDeep(val)) | 232 | this.ruleForm.ywrList && (this.ruleForm.ywrList = _.cloneDeep(val)) |
232 | }, | 233 | }, |
233 | onSubmit () { | 234 | onSubmit () { |
234 | if(this.ruleForm.slywxx.gyfs=="0"){ | 235 | if (this.ruleForm.slywxx.gyfs == "0") { |
235 | if(this.ruleForm.qlrList.length>1){ | 236 | if (this.ruleForm.qlrList.length > 1) { |
236 | this.$message({ | 237 | this.$message({ |
237 | showClose: true, | 238 | showClose: true, |
238 | message: "共有方式:单独所有,权利人只能是一个人", | 239 | message: "共有方式:单独所有,权利人只能是一个人", |
239 | type: "error", | 240 | type: "error", |
240 | }); | 241 | }); |
241 | return false; | 242 | return false; |
242 | } | 243 | } |
243 | } | 244 | } |
244 | saveData(this.ruleForm).then((res) => { | 245 | saveData(this.ruleForm).then((res) => { |
245 | if (res.code === 200) { | 246 | if (res.code === 200) { | ... | ... |
... | @@ -3,41 +3,41 @@ | ... | @@ -3,41 +3,41 @@ |
3 | <div class="slxx"> | 3 | <div class="slxx"> |
4 | <el-form :model="ruleForm" :rules="rules" ref="ruleForm" :label-position="flag ? 'top' : ''" :inline="flag" | 4 | <el-form :model="ruleForm" :rules="rules" ref="ruleForm" :label-position="flag ? 'top' : ''" :inline="flag" |
5 | label-width="120px"> | 5 | label-width="120px"> |
6 | <div class="slxx_con"> | 6 | <div class="slxx_con" :class="flag ? 'formMarginBot0' : ''"> |
7 | <div class="slxx_title title-block"> | 7 | <div class="slxx_title title-block"> |
8 | 受理信息 | 8 | 受理信息 |
9 | <div class="triangle"></div> | 9 | <div class="triangle"></div> |
10 | </div> | 10 | </div> |
11 | <el-row :gutter="10"> | 11 | <el-row :gutter="10"> |
12 | <el-col :span="8"> | 12 | <el-col :span="8"> |
13 | <el-form-item :class="flag ? 'marginBot0' : ''" label="业务号:"> | 13 | <el-form-item label="业务号:"> |
14 | <el-input disabled v-model="ruleForm.slywxx.ywh"></el-input> | 14 | <el-input disabled v-model="ruleForm.slywxx.ywh"></el-input> |
15 | </el-form-item> | 15 | </el-form-item> |
16 | </el-col> | 16 | </el-col> |
17 | <el-col :span="8"> | 17 | <el-col :span="8"> |
18 | <el-form-item :class="flag ? 'marginBot0' : ''" label="受理人员:"> | 18 | <el-form-item label="受理人员:"> |
19 | <el-input disabled v-model="ruleForm.slywxx.slry"></el-input> | 19 | <el-input disabled v-model="ruleForm.slywxx.slry"></el-input> |
20 | </el-form-item> | 20 | </el-form-item> |
21 | </el-col> | 21 | </el-col> |
22 | <el-col :span="8"> | 22 | <el-col :span="8"> |
23 | <el-form-item :class="flag ? 'marginBot0' : ''" label="受理时间:"> | 23 | <el-form-item label="受理时间:"> |
24 | <el-input disabled v-model="ruleForm.slywxx.slsj"></el-input> | 24 | <el-input disabled v-model="ruleForm.slywxx.slsj"></el-input> |
25 | </el-form-item> | 25 | </el-form-item> |
26 | </el-col> | 26 | </el-col> |
27 | </el-row> | 27 | </el-row> |
28 | <el-row :gutter="10"> | 28 | <el-row :gutter="10"> |
29 | <el-col :span="8"> | 29 | <el-col :span="8"> |
30 | <el-form-item :class="flag ? 'marginBot0' : ''" label="权利类型:"> | 30 | <el-form-item label="权利类型:"> |
31 | <el-input disabled v-model="ruleForm.slywxx.qllxmc"></el-input> | 31 | <el-input disabled v-model="ruleForm.slywxx.qllxmc"></el-input> |
32 | </el-form-item> | 32 | </el-form-item> |
33 | </el-col> | 33 | </el-col> |
34 | <el-col :span="8"> | 34 | <el-col :span="8"> |
35 | <el-form-item :class="flag ? 'marginBot0' : ''" label="登记类型:"> | 35 | <el-form-item label="登记类型:"> |
36 | <el-input disabled v-model="ruleForm.slywxx.djlxmc"></el-input> | 36 | <el-input disabled v-model="ruleForm.slywxx.djlxmc"></el-input> |
37 | </el-form-item> | 37 | </el-form-item> |
38 | </el-col> | 38 | </el-col> |
39 | <el-col :span="8"> | 39 | <el-col :span="8"> |
40 | <el-form-item :class="flag ? 'marginBot0' : ''" label="登记情形:"> | 40 | <el-form-item label="登记情形:"> |
41 | <el-input disabled v-model="ruleForm.slywxx.djqxmc"></el-input> | 41 | <el-input disabled v-model="ruleForm.slywxx.djqxmc"></el-input> |
42 | </el-form-item> | 42 | </el-form-item> |
43 | </el-col> | 43 | </el-col> |
... | @@ -50,43 +50,44 @@ | ... | @@ -50,43 +50,44 @@ |
50 | </div> | 50 | </div> |
51 | <el-row :gutter="10"> | 51 | <el-row :gutter="10"> |
52 | <el-col :span="8"> | 52 | <el-col :span="8"> |
53 | <el-form-item :class="flag ? 'marginBot0' : ''" label="原不动产权证号:"> | 53 | <el-form-item label="原不动产权证号:"> |
54 | <el-input disabled v-model="ruleForm.slywxx.ybdcqzsh"></el-input> | 54 | <el-input disabled v-model="ruleForm.slywxx.ybdcqzsh"></el-input> |
55 | </el-form-item> | 55 | </el-form-item> |
56 | </el-col> | 56 | </el-col> |
57 | <el-col :span="8"> | 57 | <el-col :span="8"> |
58 | <el-form-item :class="flag ? 'marginBot0' : ''" label="不动产单元号:"> | 58 | <el-form-item label="不动产单元号:"> |
59 | <el-input disabled v-model="ruleForm.qlxx.bdcdyh"></el-input> | 59 | <el-input disabled v-model="ruleForm.qlxx.bdcdyh"></el-input> |
60 | </el-form-item> | 60 | </el-form-item> |
61 | </el-col> | 61 | </el-col> |
62 | <el-col :span="8"> | 62 | <el-col :span="8"> |
63 | <el-form-item :class="flag ? 'marginBot0' : ''" label="权利性质:"> | 63 | <el-form-item label="权利性质:"> |
64 | <el-input disabled v-model="ruleForm.zdjbxx.qlxzmc"></el-input> | 64 | <el-input disabled v-model="ruleForm.zdjbxx.qlxzmc"></el-input> |
65 | </el-form-item> | 65 | </el-form-item> |
66 | </el-col> | 66 | </el-col> |
67 | </el-row> | 67 | </el-row> |
68 | <el-row :gutter="10"> | 68 | <el-row :gutter="10"> |
69 | <el-col :span="8"> | 69 | <el-col :span="8"> |
70 | <el-form-item :class="flag ? 'marginBot0' : ''" label="宗地面积:"> | 70 | <el-form-item label="宗地面积:"> |
71 | <el-input disabled v-model="ruleForm.zdjbxx.zdmj"></el-input> | 71 | <el-input disabled v-model="ruleForm.zdjbxx.zdmj"></el-input> |
72 | </el-form-item> | 72 | </el-form-item> |
73 | </el-col> | 73 | </el-col> |
74 | <el-col :span="8"> | 74 | <el-col :span="8"> |
75 | <el-form-item :class="flag ? 'marginBot0' : ''" label="土地用途:"> | 75 | <el-form-item label="土地用途:"> |
76 | <el-input disabled v-model="ruleForm.qlxx.ytmc"></el-input> | 76 | <el-input disabled v-model="ruleForm.qlxx.ytmc"></el-input> |
77 | </el-form-item> | 77 | </el-form-item> |
78 | </el-col> | 78 | </el-col> |
79 | <el-col :span="8"> | 79 | <el-col :span="8"> |
80 | <el-form-item :class="flag ? 'marginBot0' : ''" label="权利设定方式:"> | 80 | <el-form-item label="权利设定方式:"> |
81 | <el-input disabled v-model="ruleForm.zdjbxx.qlsdfsmc"></el-input> | 81 | <el-input disabled v-model="ruleForm.zdjbxx.qlsdfsmc"></el-input> |
82 | </el-form-item> | 82 | </el-form-item> |
83 | </el-col> | 83 | </el-col> |
84 | </el-row> | 84 | </el-row> |
85 | <el-row :gutter="10"> | 85 | <el-row :gutter="10"> |
86 | <el-col :span="8"> | 86 | <el-col :span="8"> |
87 | <el-form-item :class="flag ? 'marginBot0' : ''" label="取得价格:"> | 87 | <el-form-item label="取得价格:"> |
88 | <div style="display:flex"> | 88 | <div style="display:flex"> |
89 | <el-input v-model="ruleForm.jsydsyq.qdjg" style="width:500%" oninput="value=value.replace(/[^\d.]/g,'')" disabled></el-input> | 89 | <el-input v-model="ruleForm.jsydsyq.qdjg" style="width:500%" oninput="value=value.replace(/[^\d.]/g,'')" |
90 | disabled></el-input> | ||
90 | <el-select v-model="ruleForm.jsydsyq.jedw" disabled> | 91 | <el-select v-model="ruleForm.jsydsyq.jedw" disabled> |
91 | <el-option v-for="item in dictData['A57']" :key="item.dcode" :label="item.dname" :value="item.dcode"> | 92 | <el-option v-for="item in dictData['A57']" :key="item.dcode" :label="item.dname" :value="item.dcode"> |
92 | </el-option> | 93 | </el-option> |
... | @@ -96,27 +97,27 @@ | ... | @@ -96,27 +97,27 @@ |
96 | </el-col> | 97 | </el-col> |
97 | 98 | ||
98 | <el-col :span="16"> | 99 | <el-col :span="16"> |
99 | <el-form-item :class="flag ? 'marginBot0' : ''" label="坐落:"> | 100 | <el-form-item label="坐落:"> |
100 | <el-input disabled v-model="ruleForm.qlxx.zl"></el-input> | 101 | <el-input disabled v-model="ruleForm.qlxx.zl"></el-input> |
101 | </el-form-item> | 102 | </el-form-item> |
102 | </el-col> | 103 | </el-col> |
103 | </el-row> | 104 | </el-row> |
104 | <el-row :gutter="10"> | 105 | <el-row :gutter="10"> |
105 | <el-col :span="8"> | 106 | <el-col :span="8"> |
106 | <el-form-item :class="flag ? 'marginBot0' : ''" label="使用期限:"> | 107 | <el-form-item label="使用期限:"> |
107 | <el-input disabled v-model="ruleForm.jsydsyq.tdsyqx"></el-input> | 108 | <el-input disabled v-model="ruleForm.jsydsyq.tdsyqx"></el-input> |
108 | </el-form-item> | 109 | </el-form-item> |
109 | </el-col> | 110 | </el-col> |
110 | 111 | ||
111 | <el-col :span="16"> | 112 | <el-col :span="16"> |
112 | <el-form-item :class="flag ? 'marginBot0' : ''" label="使用权起止时间:"> | 113 | <el-form-item label="使用权起止时间:"> |
113 | <el-input disabled v-model="ruleForm.jsydsyq.syqqzsj"></el-input> | 114 | <el-input disabled v-model="ruleForm.jsydsyq.syqqzsj"></el-input> |
114 | </el-form-item> | 115 | </el-form-item> |
115 | </el-col> | 116 | </el-col> |
116 | </el-row> | 117 | </el-row> |
117 | <el-row :gutter="10"> | 118 | <el-row :gutter="10"> |
118 | <el-col> | 119 | <el-col> |
119 | <el-form-item :class="flag ? 'marginBot0' : ''" label="附记:" prop="fj"> | 120 | <el-form-item label="附记:" prop="fj"> |
120 | <el-input type="textarea" v-model="ruleForm.jsydsyq.fj" :disabled="$route.query.viewtype == 1"></el-input> | 121 | <el-input type="textarea" v-model="ruleForm.jsydsyq.fj" :disabled="$route.query.viewtype == 1"></el-input> |
121 | </el-form-item> | 122 | </el-form-item> |
122 | </el-col> | 123 | </el-col> |
... | @@ -130,7 +131,7 @@ | ... | @@ -130,7 +131,7 @@ |
130 | class="el-icon-edit-outline">权利人信息</i></el-divider> | 131 | class="el-icon-edit-outline">权利人信息</i></el-divider> |
131 | <el-row :gutter="10"> | 132 | <el-row :gutter="10"> |
132 | <el-col :span="14"> | 133 | <el-col :span="14"> |
133 | <el-form-item :class="flag ? 'marginBot0' : ''" label="共有方式:"> | 134 | <el-form-item label="共有方式:"> |
134 | <el-radio-group :disabled="$route.query.viewtype == 1" v-model="ruleForm.slywxx.gyfs"> | 135 | <el-radio-group :disabled="$route.query.viewtype == 1" v-model="ruleForm.slywxx.gyfs"> |
135 | <el-radio label="0">单独所有</el-radio> | 136 | <el-radio label="0">单独所有</el-radio> |
136 | <el-radio label="1">共同共有</el-radio> | 137 | <el-radio label="1">共同共有</el-radio> |
... | @@ -140,7 +141,7 @@ | ... | @@ -140,7 +141,7 @@ |
140 | </el-form-item> | 141 | </el-form-item> |
141 | </el-col> | 142 | </el-col> |
142 | <el-col :span="5" v-show="ruleForm.gyfs == '2'"> | 143 | <el-col :span="5" v-show="ruleForm.gyfs == '2'"> |
143 | <el-form-item :class="flag ? 'marginBot0' : ''" label="是否分别持证:"> | 144 | <el-form-item label="是否分别持证:"> |
144 | <el-radio-group v-model="ruleForm.slywxx.sffbcz"> | 145 | <el-radio-group v-model="ruleForm.slywxx.sffbcz"> |
145 | <el-radio label="1">是</el-radio> | 146 | <el-radio label="1">是</el-radio> |
146 | <el-radio label="0">否</el-radio> | 147 | <el-radio label="0">否</el-radio> |
... | @@ -148,7 +149,7 @@ | ... | @@ -148,7 +149,7 @@ |
148 | </el-form-item> | 149 | </el-form-item> |
149 | </el-col> | 150 | </el-col> |
150 | <el-col :span="5" v-show="ruleForm.gyfs == '2'"> | 151 | <el-col :span="5" v-show="ruleForm.gyfs == '2'"> |
151 | <el-form-item :class="flag ? 'marginBot0' : ''" label="持证人:"> | 152 | <el-form-item label="持证人:"> |
152 | <el-select v-model="ruleForm.czr" placeholder="持证人"> | 153 | <el-select v-model="ruleForm.czr" placeholder="持证人"> |
153 | <el-option v-for="item in czrOptions" :key="item.value" :label="item.label" :value="item.value"> | 154 | <el-option v-for="item in czrOptions" :key="item.value" :label="item.label" :value="item.value"> |
154 | </el-option> | 155 | </el-option> |
... | @@ -164,7 +165,7 @@ | ... | @@ -164,7 +165,7 @@ |
164 | </div> | 165 | </div> |
165 | <el-row :gutter="10"> | 166 | <el-row :gutter="10"> |
166 | <el-col> | 167 | <el-col> |
167 | <el-form-item :class="flag ? 'marginBot0' : ''" label="登记原因:" prop="djyy"> | 168 | <el-form-item label="登记原因:" prop="djyy"> |
168 | <el-input class="textArea" type="textarea" :disabled="$route.query.viewtype == 1" | 169 | <el-input class="textArea" type="textarea" :disabled="$route.query.viewtype == 1" |
169 | v-model="ruleForm.jsydsyq.djyy"> | 170 | v-model="ruleForm.jsydsyq.djyy"> |
170 | </el-input> | 171 | </el-input> |
... | @@ -173,7 +174,7 @@ | ... | @@ -173,7 +174,7 @@ |
173 | </el-row> | 174 | </el-row> |
174 | </div> | 175 | </div> |
175 | <el-row class="btn" v-if="!$route.query.viewtype"> | 176 | <el-row class="btn" v-if="!$route.query.viewtype"> |
176 | <el-form-item :class="flag ? 'marginBot0' : ''"> | 177 | <el-form-item> |
177 | <el-button type="primary" @click="onSubmit">保存</el-button> | 178 | <el-button type="primary" @click="onSubmit">保存</el-button> |
178 | </el-form-item> | 179 | </el-form-item> |
179 | </el-row> | 180 | </el-row> | ... | ... |
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
-
Please register or sign in to post a comment