63931883 by renchao@pashanhoo.com

Merge branch 'dev'

2 parents 3953793e c9000eb5
1 { 1 {
2 "TITLE": "不动产登记系统", 2 "TITLE": "不动产登记系统",
3 "SERVERAPI": "/bdcdj", 3 "SERVERAPI": "/bdcdj-th",
4 "ip": "http://192.168.2.38", 4 "ip": "http://192.168.2.38",
5 "IDCARDURL": "http://127.0.0.1:33088/function=get_idcard&readnew=0" 5 "IDCARDURL": "http://127.0.0.1:33088/function=get_idcard&readnew=0"
6 } 6 }
...\ No newline at end of file ...\ No newline at end of file
......
1 import Vue from 'vue'
2 import axios from 'axios'
1 import { Message } from "element-ui"; 3 import { Message } from "element-ui";
2 export function removeTreeListItem (treeList, dictId, idName = 'bsmDict') { 4 export function removeTreeListItem (treeList, dictId, idName = 'bsmDict') {
3 if (!treeList || !treeList.length) { 5 if (!treeList || !treeList.length) {
...@@ -111,7 +113,6 @@ export function down (index, data) { ...@@ -111,7 +113,6 @@ export function down (index, data) {
111 } 113 }
112 } 114 }
113 115
114
115 export function getUrlParam (paraName) { 116 export function getUrlParam (paraName) {
116 let url = document.location.toString(); 117 let url = document.location.toString();
117 let arrObj = url.split('?'); 118 let arrObj = url.split('?');
...@@ -133,3 +134,25 @@ export function getUrlParam (paraName) { ...@@ -133,3 +134,25 @@ export function getUrlParam (paraName) {
133 return ''; 134 return '';
134 } 135 }
135 } 136 }
137 /**
138 * @description: 身份证读卡器组件
139 * @author: renchao
140 */
141 export function getIdCardInfo () {
142 return axios.post(Vue.prototype.BASE_API.IDCARDURL)
143 }
144 /**
145 * @description: 高拍仪组件
146 * @author: renchao
147 */
148 export function getAltimeterInfo () {
149 let data = {
150 "filepath": "base64",
151 "rotate": "0",
152 "cutpage": "0",
153 "camidx": "0",
154 "ColorMode": "0",
155 "quality": "3"
156 }
157 return axios.post("http://127.0.0.1:38088/video=grabimage", JSON.stringify(data))
158 }
...\ No newline at end of file ...\ No newline at end of file
......
1 <!-- 1 <!--
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-06-14 11:10:26 4 * @LastEditTime: 2023-06-16 11:12:13
5 --> 5 -->
6 <template> 6 <template>
7 <div class="rlPopup"> 7 <div class="rlPopup">
...@@ -46,7 +46,7 @@ ...@@ -46,7 +46,7 @@
46 </div> 46 </div>
47 </template> 47 </template>
48 <script> 48 <script>
49 import axios from 'axios' 49 import { getAltimeterInfo } from '@/utils/operation.js'
50 import PhotoZoom from '@/components/PhotoZoom' 50 import PhotoZoom from '@/components/PhotoZoom'
51 import { uploadSjClmx, deleteClmx } from "@/api/clxx.js"; 51 import { uploadSjClmx, deleteClmx } from "@/api/clxx.js";
52 import publicPicture from '@/components/publicPicture/index.vue' 52 import publicPicture from '@/components/publicPicture/index.vue'
...@@ -149,20 +149,11 @@ ...@@ -149,20 +149,11 @@
149 const file = new File([blob], options); 149 const file = new File([blob], options);
150 return file; 150 return file;
151 } 151 }
152 152 getAltimeterInfo().then(res => {
153 let data = {
154 "filepath": "base64",
155 "rotate": "0",
156 "cutpage": "0",
157 "camidx": "0",
158 "ColorMode": "0",
159 "quality": "3"
160 }
161 axios.post("http://127.0.0.1:38088/video=grabimage", JSON.stringify(data)).then((res) => {
162 let blob = dataURLtoBlob('data:image/png;base64,' + res.data.photoBase64); 153 let blob = dataURLtoBlob('data:image/png;base64,' + res.data.photoBase64);
163 let file = blobToFile(blob); 154 let file = blobToFile(blob);
164 var formData = new FormData(); 155 var formData = new FormData();
165 formData.append('file', file.raw) 156 formData.append('file', file)
166 formData.append("bsmSj", this.previewImg.bsmSj); 157 formData.append("bsmSj", this.previewImg.bsmSj);
167 formData.append("bsmSlsq", this.previewImg.bsmSlsq); 158 formData.append("bsmSlsq", this.previewImg.bsmSlsq);
168 uploadSjClmx(formData).then((res) => { 159 uploadSjClmx(formData).then((res) => {
......
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
24 </div> 24 </div>
25 <el-button type="primary" native-type="submit" style="width:100%" @click="handleAdd()" v-if="!this.$route.query.viewtype">新增</el-button> 25 <el-button type="primary" native-type="submit" style="width:100%" @click="handleAdd()" v-if="!this.$route.query.viewtype">新增</el-button>
26 </div> 26 </div>
27 <image-preview ref='imageRef' :previewImg="previewImg" @updateList="updateList" @nextPriview="nextPriview" 27 <image-preview ref='imageRef' v-if="tableData.length>0" :previewImg="previewImg" @updateList="updateList" @nextPriview="nextPriview"
28 @prevPriview="prevPriview" /> 28 @prevPriview="prevPriview" />
29 </div> 29 </div>
30 </div> 30 </div>
...@@ -39,7 +39,7 @@ ...@@ -39,7 +39,7 @@
39 import { InitClml, saveClml, deleteSjClml, moveClml } from "@/api/clxx.js"; 39 import { InitClml, saveClml, deleteSjClml, moveClml } from "@/api/clxx.js";
40 import { popupDialog } from "@/utils/popup.js"; 40 import { popupDialog } from "@/utils/popup.js";
41 export default { 41 export default {
42 components: { clxxAddDialog, imagePreview}, 42 components: { clxxAddDialog, imagePreview },
43 data () { 43 data () {
44 return { 44 return {
45 isDialog: false, 45 isDialog: false,
......
...@@ -5,13 +5,11 @@ ...@@ -5,13 +5,11 @@
5 <el-tab-pane 5 <el-tab-pane
6 :disabled="isshow" 6 :disabled="isshow"
7 label="审批意见" 7 label="审批意见"
8 name="spyj" 8 name="spyj"></el-tab-pane>
9 ></el-tab-pane>
10 <el-tab-pane 9 <el-tab-pane
11 :disabled="isshow" 10 :disabled="isshow"
12 label="材料信息" 11 label="材料信息"
13 name="clxx" 12 name="clxx"></el-tab-pane>
14 ></el-tab-pane>
15 </el-tabs> 13 </el-tabs>
16 <div v-if="activeName == 'slxx'"> 14 <div v-if="activeName == 'slxx'">
17 <div class="from-clues-header"> 15 <div class="from-clues-header">
...@@ -24,8 +22,7 @@ ...@@ -24,8 +22,7 @@
24 v-for="item in qsztList" 22 v-for="item in qsztList"
25 :key="item.value" 23 :key="item.value"
26 :label="item.label" 24 :label="item.label"
27 :value="item.value" 25 :value="item.value">
28 >
29 </el-option> 26 </el-option>
30 </el-select> 27 </el-select>
31 </el-form-item> 28 </el-form-item>
...@@ -34,8 +31,7 @@ ...@@ -34,8 +31,7 @@
34 <el-form-item 31 <el-form-item
35 :prop="item.prop" 32 :prop="item.prop"
36 :label="item.label" 33 :label="item.label"
37 label-width="140px" 34 label-width="140px">
38 >
39 <el-input v-model="form[item.prop]"></el-input> 35 <el-input v-model="form[item.prop]"></el-input>
40 </el-form-item> 36 </el-form-item>
41 </el-col> 37 </el-col>
...@@ -55,8 +51,7 @@ ...@@ -55,8 +51,7 @@
55 :model="ruleForm" 51 :model="ruleForm"
56 :rules="rules" 52 :rules="rules"
57 ref="ruleForm" 53 ref="ruleForm"
58 label-width="120px" 54 label-width="120px">
59 >
60 <div class="spyj_form"> 55 <div class="spyj_form">
61 <div class="item_left">初审意见</div> 56 <div class="item_left">初审意见</div>
62 <div class="item_right"> 57 <div class="item_right">
...@@ -65,15 +60,13 @@ ...@@ -65,15 +60,13 @@
65 <el-form-item 60 <el-form-item
66 label-width="0" 61 label-width="0"
67 class="opinion_item" 62 class="opinion_item"
68 prop="shyj" 63 prop="shyj">
69 >
70 <el-input 64 <el-input
71 type="textarea" 65 type="textarea"
72 :rows="4" 66 :rows="4"
73 class="opinion" 67 class="opinion"
74 placeholder="请输入审批意见" 68 placeholder="请输入审批意见"
75 v-model="ruleForm.shyj" 69 v-model="ruleForm.shyj"></el-input>
76 ></el-input>
77 </el-form-item> 70 </el-form-item>
78 </el-col> 71 </el-col>
79 </el-row> 72 </el-row>
...@@ -82,8 +75,7 @@ ...@@ -82,8 +75,7 @@
82 <el-form-item 75 <el-form-item
83 prop="shryxm" 76 prop="shryxm"
84 label="审查人" 77 label="审查人"
85 label-width="90px" 78 label-width="90px">
86 >
87 <el-input v-model="ruleForm.shr"></el-input> 79 <el-input v-model="ruleForm.shr"></el-input>
88 </el-form-item> 80 </el-form-item>
89 </el-col> 81 </el-col>
...@@ -91,8 +83,7 @@ ...@@ -91,8 +83,7 @@
91 <el-form-item 83 <el-form-item
92 label="审核时间" 84 label="审核时间"
93 prop="shjssj" 85 prop="shjssj"
94 label-width="90px" 86 label-width="90px">
95 >
96 <el-input v-model="ruleForm.shsj"></el-input> 87 <el-input v-model="ruleForm.shsj"></el-input>
97 </el-form-item> 88 </el-form-item>
98 </el-col> 89 </el-col>
...@@ -104,8 +95,7 @@ ...@@ -104,8 +95,7 @@
104 :model="ruleForm" 95 :model="ruleForm"
105 :rules="rules" 96 :rules="rules"
106 ref="ruleForm" 97 ref="ruleForm"
107 label-width="120px" 98 label-width="120px">
108 >
109 <div class="spyj_form"> 99 <div class="spyj_form">
110 <div class="item_left">复审意见</div> 100 <div class="item_left">复审意见</div>
111 <div class="item_right"> 101 <div class="item_right">
...@@ -114,15 +104,13 @@ ...@@ -114,15 +104,13 @@
114 <el-form-item 104 <el-form-item
115 label-width="0" 105 label-width="0"
116 class="opinion_item" 106 class="opinion_item"
117 prop="shyj" 107 prop="shyj">
118 >
119 <el-input 108 <el-input
120 type="textarea" 109 type="textarea"
121 :rows="4" 110 :rows="4"
122 class="opinion" 111 class="opinion"
123 placeholder="请输入审批意见" 112 placeholder="请输入审批意见"
124 v-model="ruleForm.shyj" 113 v-model="ruleForm.shyj"></el-input>
125 ></el-input>
126 </el-form-item> 114 </el-form-item>
127 </el-col> 115 </el-col>
128 </el-row> 116 </el-row>
...@@ -131,8 +119,7 @@ ...@@ -131,8 +119,7 @@
131 <el-form-item 119 <el-form-item
132 prop="shryxm" 120 prop="shryxm"
133 label="审查人" 121 label="审查人"
134 label-width="90px" 122 label-width="90px">
135 >
136 <el-input v-model="ruleForm.shr"></el-input> 123 <el-input v-model="ruleForm.shr"></el-input>
137 </el-form-item> 124 </el-form-item>
138 </el-col> 125 </el-col>
...@@ -140,8 +127,7 @@ ...@@ -140,8 +127,7 @@
140 <el-form-item 127 <el-form-item
141 label="审核时间" 128 label="审核时间"
142 prop="shjssj" 129 prop="shjssj"
143 label-width="90px" 130 label-width="90px">
144 >
145 <el-input v-model="ruleForm.shsj"></el-input> 131 <el-input v-model="ruleForm.shsj"></el-input>
146 </el-form-item> 132 </el-form-item>
147 </el-col> 133 </el-col>
...@@ -153,8 +139,7 @@ ...@@ -153,8 +139,7 @@
153 :model="ruleForm" 139 :model="ruleForm"
154 :rules="rules" 140 :rules="rules"
155 ref="ruleForm" 141 ref="ruleForm"
156 label-width="120px" 142 label-width="120px">
157 >
158 <div class="spyj_form"> 143 <div class="spyj_form">
159 <div class="item_left">核定意见</div> 144 <div class="item_left">核定意见</div>
160 <div class="item_right"> 145 <div class="item_right">
...@@ -163,15 +148,13 @@ ...@@ -163,15 +148,13 @@
163 <el-form-item 148 <el-form-item
164 label-width="0" 149 label-width="0"
165 class="opinion_item" 150 class="opinion_item"
166 prop="shyj" 151 prop="shyj">
167 >
168 <el-input 152 <el-input
169 type="textarea" 153 type="textarea"
170 :rows="4" 154 :rows="4"
171 class="opinion" 155 class="opinion"
172 placeholder="请输入审批意见" 156 placeholder="请输入审批意见"
173 v-model="ruleForm.shyj" 157 v-model="ruleForm.shyj"></el-input>
174 ></el-input>
175 </el-form-item> 158 </el-form-item>
176 </el-col> 159 </el-col>
177 </el-row> 160 </el-row>
...@@ -180,8 +163,7 @@ ...@@ -180,8 +163,7 @@
180 <el-form-item 163 <el-form-item
181 prop="shryxm" 164 prop="shryxm"
182 label="审查人" 165 label="审查人"
183 label-width="90px" 166 label-width="90px">
184 >
185 <el-input v-model="ruleForm.shr"></el-input> 167 <el-input v-model="ruleForm.shr"></el-input>
186 </el-form-item> 168 </el-form-item>
187 </el-col> 169 </el-col>
...@@ -189,8 +171,7 @@ ...@@ -189,8 +171,7 @@
189 <el-form-item 171 <el-form-item
190 label="审核时间" 172 label="审核时间"
191 prop="shjssj" 173 prop="shjssj"
192 label-width="90px" 174 label-width="90px">
193 >
194 <el-input v-model="ruleForm.shsj"></el-input> 175 <el-input v-model="ruleForm.shsj"></el-input>
195 </el-form-item> 176 </el-form-item>
196 </el-col> 177 </el-col>
...@@ -228,7 +209,7 @@ ...@@ -228,7 +209,7 @@
228 </div> 209 </div>
229 <el-button type="primary" native-type="submit" style="width:100%" @click="handleAdd()">新增</el-button> 210 <el-button type="primary" native-type="submit" style="width:100%" @click="handleAdd()">新增</el-button>
230 </div> 211 </div>
231 <image-preview ref='imageRef' :previewImg="previewImg" @updateList="updateList" @nextPriview="nextPriview" 212 <image-preview ref='imageRef' v-if="tableData.length>0" :previewImg="previewImg" @updateList="updateList" @nextPriview="nextPriview"
232 @prevPriview="prevPriview" /> 213 @prevPriview="prevPriview" />
233 </div> 214 </div>
234 </div> 215 </div>
...@@ -248,15 +229,15 @@ ...@@ -248,15 +229,15 @@
248 import clxxAddDialog from "./tabsconcent/clxxAddDialog.vue"; 229 import clxxAddDialog from "./tabsconcent/clxxAddDialog.vue";
249 import imagePreview from '@/views/components/imagePreview.vue' 230 import imagePreview from '@/views/components/imagePreview.vue'
250 import { InitClml, saveClml, deleteSjClml, moveClml } from "@/api/clxx.js"; 231 import { InitClml, saveClml, deleteSjClml, moveClml } from "@/api/clxx.js";
251 export default { 232 export default {
252 components: { clxxAddDialog, imagePreview }, 233 components: { clxxAddDialog, imagePreview },
253 props: { 234 props: {
254 formData: { 235 formData: {
255 type: Object, 236 type: Object,
256 default: () => {}, 237 default: () => { },
257 }, 238 },
258 }, 239 },
259 data() { 240 data () {
260 return { 241 return {
261 activeName: "slxx", 242 activeName: "slxx",
262 form: {}, 243 form: {},
...@@ -308,7 +289,7 @@ export default { ...@@ -308,7 +289,7 @@ export default {
308 created () { 289 created () {
309 this.clmlInitList(1) 290 this.clmlInitList(1)
310 }, 291 },
311 mounted() { 292 mounted () {
312 if (this.formData.data) { 293 if (this.formData.data) {
313 this.$nextTick(() => { 294 this.$nextTick(() => {
314 this.form = Object.assign({}, this.formData.data); 295 this.form = Object.assign({}, this.formData.data);
...@@ -330,7 +311,7 @@ export default { ...@@ -330,7 +311,7 @@ export default {
330 311
331 methods: { 312 methods: {
332 // 受理信息保存 313 // 受理信息保存
333 slxxsubmitForm() { 314 slxxsubmitForm () {
334 this.$refs.form.validate((valid) => { 315 this.$refs.form.validate((valid) => {
335 if (valid) { 316 if (valid) {
336 // addUserCommonOpinion({ commonOpinion: this.form.commonOpinion }).then(res => { 317 // addUserCommonOpinion({ commonOpinion: this.form.commonOpinion }).then(res => {
...@@ -349,8 +330,8 @@ export default { ...@@ -349,8 +330,8 @@ export default {
349 this.isshow = false; 330 this.isshow = false;
350 }, 331 },
351 // 审批意见保存 332 // 审批意见保存
352 spyjsubmitForm() { 333 spyjsubmitForm () {
353 console.log("this.ruleForm",this.ruleForm); 334 console.log("this.ruleForm", this.ruleForm);
354 // this.ruleForm.bsmSlsq = this.bsmSlsq 335 // this.ruleForm.bsmSlsq = this.bsmSlsq
355 // this.ruleForm.bestepid = this.bestepid 336 // this.ruleForm.bestepid = this.bestepid
356 // saveSpyjBySlsq(this.ruleForm).then(res => { 337 // saveSpyjBySlsq(this.ruleForm).then(res => {
...@@ -364,8 +345,8 @@ export default { ...@@ -364,8 +345,8 @@ export default {
364 }, 345 },
365 346
366 // 材料信息保存 347 // 材料信息保存
367 clxxsubmitForm() {}, 348 clxxsubmitForm () { },
368 closeDialog() { 349 closeDialog () {
369 this.$alert("取消后填写内容将被清空", "提示", { 350 this.$alert("取消后填写内容将被清空", "提示", {
370 confirmButtonText: "确定", 351 confirmButtonText: "确定",
371 callback: (action) => { 352 callback: (action) => {
...@@ -380,10 +361,10 @@ export default { ...@@ -380,10 +361,10 @@ export default {
380 361
381 // this.resetTableFields(); 362 // this.resetTableFields();
382 }, 363 },
383 handleTabClick() {}, 364 handleTabClick () { },
384 365
385 //使用常用意见 366 //使用常用意见
386 useOpinion(opinion) { 367 useOpinion (opinion) {
387 this.ruleForm.shyj = opinion; 368 this.ruleForm.shyj = opinion;
388 }, 369 },
389 370
...@@ -533,13 +514,13 @@ export default { ...@@ -533,13 +514,13 @@ export default {
533 }) 514 })
534 }, 515 },
535 }, 516 },
536 }; 517 };
537 </script> 518 </script>
538 <style scoped lang="scss"> 519 <style scoped lang="scss">
539 @import "~@/styles/mixin.scss"; 520 @import "~@/styles/mixin.scss";
540 @import "~@/styles/public.scss"; 521 @import "~@/styles/public.scss";
541 522
542 .from-clues-header { 523 .from-clues-header {
543 @include flex; 524 @include flex;
544 flex-direction: column; 525 flex-direction: column;
545 overflow-y: hidden; 526 overflow-y: hidden;
...@@ -550,11 +531,11 @@ export default { ...@@ -550,11 +531,11 @@ export default {
550 margin-bottom: 20px; 531 margin-bottom: 20px;
551 text-align: center; 532 text-align: center;
552 } 533 }
553 } 534 }
554 535
555 // 审批意见样式 536 // 审批意见样式
556 537
557 .spyj { 538 .spyj {
558 .box { 539 .box {
559 overflow-x: auto; 540 overflow-x: auto;
560 width: 100%; 541 width: 100%;
...@@ -567,7 +548,7 @@ export default { ...@@ -567,7 +548,7 @@ export default {
567 padding: 20px 40px; 548 padding: 20px 40px;
568 /deep/.el-input__inner { 549 /deep/.el-input__inner {
569 width: 200px; 550 width: 200px;
570 border:none; 551 border: none;
571 } 552 }
572 } 553 }
573 .spyj_title { 554 .spyj_title {
...@@ -646,9 +627,9 @@ export default { ...@@ -646,9 +627,9 @@ export default {
646 text-align: center; 627 text-align: center;
647 margin: 15px 0; 628 margin: 15px 0;
648 } 629 }
649 } 630 }
650 631
651 // 材料信息样式 632 // 材料信息样式
652 .active { 633 .active {
653 background: $light-blue !important; 634 background: $light-blue !important;
654 color: #fff; 635 color: #fff;
......
...@@ -23,175 +23,208 @@ ...@@ -23,175 +23,208 @@
23 <el-row :gutter="10"> 23 <el-row :gutter="10">
24 <el-col :span="8"> 24 <el-col :span="8">
25 <el-form-item label="补录编号:"> 25 <el-form-item label="补录编号:">
26 <el-input disabled v-model="ruleForm.qlxx.ywh"></el-input> 26 <el-input disabled v-model="ruleForm.repair.ywh"></el-input>
27 </el-form-item> 27 </el-form-item>
28 </el-col> 28 </el-col>
29 <el-col :span="8"> 29 <el-col :span="8">
30 <el-form-item label="补录人员:"> 30 <el-form-item label="补录人员:">
31 <el-input v-model="ruleForm.qlxx.dbr"></el-input> 31 <el-input disabled v-model="ruleForm.repair.slry"></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 label="补录时间:"> 35 <el-form-item label="补录时间:">
36 <el-input v-model="ruleForm.qlxx.qlrmc"></el-input> 36 <el-input disabled v-model="ruleForm.repair.slsj"></el-input>
37 </el-form-item> 37 </el-form-item>
38 </el-col> 38 </el-col>
39 </el-row> 39 </el-row>
40 <!-- <el-row :gutter="10"> 40 <div class="slxx_title title-block">
41 房地产权(独幢、层、套、间房屋)
42 <div class="triangle"></div>
43 </div>
44 <el-row :gutter="10">
41 <el-col :span="8"> 45 <el-col :span="8">
42 <el-form-item label="权利类型:"> 46 <el-form-item label="不动产单元号:">
43 <el-input v-model="ruleForm.qlxx.qlxx"></el-input> 47 <el-input disabled v-model="ruleForm.qlxx.bdcdyh"></el-input>
44 </el-form-item> 48 </el-form-item>
45 </el-col> 49 </el-col>
46 <el-col :span="8"> 50 <el-col :span="8">
47 <el-form-item label="登记类型:"> 51 <el-form-item label="业务号:">
48 <el-input v-model="ruleForm.qlxx.djlxmc"></el-input> 52 <el-input v-model="ruleForm.qlxx.ywh"></el-input>
49 </el-form-item> 53 </el-form-item>
50 </el-col> 54 </el-col>
51 <el-col :span="8"> 55 <el-col :span="8">
52 <el-form-item label="登记情形:"> 56 <el-form-item label="上手业务号:">
53 <el-input v-model="ruleForm.qlxx.djlxmc"></el-input> 57 <el-input v-model="ruleForm.qlxx.ssywh"></el-input>
54 </el-form-item> 58 </el-form-item>
55 </el-col> 59 </el-col>
56 </el-row> --> 60 </el-row>
57 <div class="slxx_title title-block">
58 不动产单元情况
59 <div class="triangle"></div>
60 </div>
61 <el-row :gutter="10"> 61 <el-row :gutter="10">
62 <el-col :span="8"> 62 <el-col :span="8">
63 <el-form-item label="不动产单元号:"> 63 <el-form-item label="权利类型:">
64 <el-input disabled v-model="ruleForm.qlxx.bdcdyh"></el-input> 64 <el-input disabled v-model="ruleForm.qlxx.qllxmc"></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 label="权利性质:"> 68 <el-form-item label="登记类型:">
69 <el-input v-model="ruleForm.qlxx.qlxzmc"></el-input> 69 <el-select v-model="ruleForm.qlxx.djlx">
70 <el-option v-for="item in dictData['A21']" :key="item.dcode" :label="item.dname" :value="item.dcode">
71 </el-option>
72 </el-select>
70 </el-form-item> 73 </el-form-item>
71 </el-col> 74 </el-col>
72 <el-col :span="8"> 75 <el-col :span="8">
73 <el-form-item label="权利性质:"> 76 <el-form-item label="房地坐落:">
74 <el-input v-model="ruleForm.qlxx.qlxzmc"></el-input> 77 <el-input v-model="ruleForm.qlxx.zl"></el-input>
75 </el-form-item> 78 </el-form-item>
76 </el-col> 79 </el-col>
77 </el-row>
78 <el-row :gutter="10">
79 <el-col :span="8"> 80 <el-col :span="8">
80 <el-form-item label="宗地面积:"> 81 <el-form-item label="土地使用权人:">
81 <el-input v-model="ruleForm.qlxx.mjmc"></el-input> 82 <el-input v-model="ruleForm.fdcq2.tdsyqr"></el-input>
82 </el-form-item> 83 </el-form-item>
83 </el-col> 84 </el-col>
84 <el-col :span="8"> 85 <el-col :span="8">
85 <el-form-item label="土地用途:"> 86 <el-form-item label="独用土地面积:">
86 <el-input v-model="ruleForm.fdcq2.ghyt"></el-input> 87 <el-input v-model="ruleForm.fdcq2.dytdmj"></el-input>
87 </el-form-item> 88 </el-form-item>
88 </el-col> 89 </el-col>
89 <el-col :span="8"> 90 <el-col :span="8">
90 <el-form-item label="坐落:"> 91 <el-form-item label="分摊土地面积:">
91 <el-input v-model="ruleForm.qlxx.zl"></el-input> 92 <el-input v-model="ruleForm.fdcq2.fttdmj"></el-input>
92 </el-form-item> 93 </el-form-item>
93 </el-col> 94 </el-col>
94 <el-col :span="8"> 95 <el-col :span="8">
95 <el-form-item label="房屋结构:"> 96 <el-form-item label="土地用途:">
96 <el-input v-model="ruleForm.fdcq2.fwjgmc"></el-input> 97 <el-input v-model="ruleForm.qlxx.ywh"></el-input>
97 </el-form-item> 98 </el-form-item>
98 </el-col> 99 </el-col>
99 <el-col :span="8"> 100 <el-col :span="8">
100 <el-form-item label="权利性质:"> 101 <el-form-item label="土地使用起始时间:">
101 <el-input v-model="ruleForm.qlxx.qlxzmc"></el-input> 102 <el-input v-model="ruleForm.qlxx.ywh"></el-input>
102 </el-form-item> 103 </el-form-item>
103 </el-col> 104 </el-col>
104 <el-col :span="8"> 105 <el-col :span="8">
105 <el-form-item label="上手业务号"> 106 <el-form-item label="土地使用结束时间:">
106 <el-input v-model="ruleForm.qlxx.ssywh"></el-input> 107 <el-input v-model="ruleForm.qlxx.ywh"></el-input>
107 </el-form-item> 108 </el-form-item>
108 </el-col> 109 </el-col>
109 <el-col :span="8"> 110 <el-col :span="8">
110 <el-form-item label="权利类型:"> 111 <el-form-item label="土地使用期限:">
111 <el-input v-model="ruleForm.qlxx.qllx"></el-input> 112 <el-input v-model="ruleForm.qlxx.ywh"></el-input>
112 </el-form-item> 113 </el-form-item>
113 </el-col> 114 </el-col>
114 <el-col :span="8"> 115 <el-col :span="8">
115 <el-form-item label="登记类型:"> 116 <el-form-item label="房地产交易价格:">
116 <el-input v-model="ruleForm.qlxx.djlx"></el-input> 117 <el-input v-model="ruleForm.fdcq2.qjjg"></el-input>
118 <el-select v-model="ruleForm.fdcq2.jedw">
119 <el-option v-for="item in dictData['A57']" :key="item.dcode" :label="item.dname" :value="item.dcode">
120 </el-option>
121 </el-select>
117 </el-form-item> 122 </el-form-item>
118 </el-col> 123 </el-col>
119 <el-col :span="8"> 124 <el-col :span="8">
120 <el-form-item label="房地坐落:"> 125 <el-form-item label="规划用途:">
121 <el-input v-model="ruleForm.qlxx.fdzl"></el-input> 126 <el-select v-model="ruleForm.fdcq2.ghyt">
127 <el-option v-for="item in dictData['A17']" :key="item.dcode" :label="item.dname" :value="item.dcode">
128 </el-option>
129 </el-select>
122 </el-form-item> 130 </el-form-item>
123 </el-col> 131 </el-col>
124 <el-col :span="8"> 132 <el-col :span="8">
125 <el-form-item label="土地使用权人:"> 133 <el-form-item label="批准用途:">
126 <el-input v-model="ruleForm.qlxx.tdsyqr"></el-input> 134 <el-input v-model="ruleForm.fdcq2.pzyt"></el-input>
127 </el-form-item> 135 </el-form-item>
128 </el-col> 136 </el-col>
129 <el-col :span="8"> 137 <el-col :span="8">
130 <el-form-item label="独用土地面积:"> 138 <el-form-item label="实际用途:">
131 <el-input v-model="ruleForm.qlxx.dytdmj"></el-input> 139 <el-input v-model="ruleForm.fdcq2.sjyt"></el-input>
132 </el-form-item> 140 </el-form-item>
133 </el-col> 141 </el-col>
134 <el-col :span="8"> 142 <el-col :span="8">
135 <el-form-item label="权利性质:"> 143 <el-form-item label="房屋性质:">
136 <el-input v-model="ruleForm.qlxx.qlxzmc"></el-input> 144 <el-select v-model="ruleForm.fdcq2.fwxz">
145 <el-option v-for="item in dictData['A19']" :key="item.dcode" :label="item.dname" :value="item.dcode">
146 </el-option>
147 </el-select>
137 </el-form-item> 148 </el-form-item>
138 </el-col> 149 </el-col>
139 <el-col :span="8"> 150 <el-col :span="8">
140 <el-form-item label="权利性质:"> 151 <el-form-item label="房屋结构:">
141 <el-input v-model="ruleForm.qlxx.qlxzmc"></el-input> 152 <el-select v-model="ruleForm.fdcq2.fwjg">
153 <el-option v-for="item in dictData['A46']" :key="item.dcode" :label="item.dname" :value="item.dcode">
154 </el-option>
155 </el-select>
142 </el-form-item> 156 </el-form-item>
143 </el-col> 157 </el-col>
144 <el-col :span="8"> 158 <el-col :span="8">
145 <el-form-item label="权利性质:"> 159 <el-form-item label="所在层:">
146 <el-input v-model="ruleForm.qlxx.qlxzmc"></el-input> 160 <el-input v-model="ruleForm.fdcq2.szc"></el-input>
147 </el-form-item> 161 </el-form-item>
148 </el-col> 162 </el-col>
149 <el-col :span="8"> 163 <el-col :span="8">
150 <el-form-item label="权利性质:"> 164 <el-form-item label="总层数:">
151 <el-input v-model="ruleForm.qlxx.qlxzmc"></el-input> 165 <el-input v-model="ruleForm.fdcq2.zcs"></el-input>
152 </el-form-item> 166 </el-form-item>
153 </el-col> 167 </el-col>
154 <el-col :span="8"> 168 <el-col :span="8">
155 <el-form-item label="权利性质:"> 169 <el-form-item label="建筑面积:">
156 <el-input v-model="ruleForm.qlxx.qlxzmc"></el-input> 170 <el-input v-model="ruleForm.fdcq2.jzmj"></el-input>
157 </el-form-item> 171 </el-form-item>
158 </el-col> 172 </el-col>
159 <el-col :span="8"> 173 <el-col :span="8">
160 <el-form-item label="权利性质:"> 174 <el-form-item label="专有建筑面积:">
161 <el-input v-model="ruleForm.qlxx.qlxzmc"></el-input> 175 <el-input v-model="ruleForm.fdcq2.zyjzmj"></el-input>
162 </el-form-item> 176 </el-form-item>
163 </el-col> 177 </el-col>
164 <el-col :span="8"> 178 <el-col :span="8">
165 <el-form-item label="权利性质:"> 179 <el-form-item label="分摊建筑面积:">
166 <el-input v-model="ruleForm.qlxx.qlxzmc"></el-input> 180 <el-input v-model="ruleForm.fdcq2.ftjzmj"></el-input>
167 </el-form-item> 181 </el-form-item>
168 </el-col> 182 </el-col>
169 <el-col :span="8"> 183 <el-col :span="8">
170 <el-form-item label="权利性质:"> 184 <el-form-item label="竣工时间:">
171 <el-input v-model="ruleForm.qlxx.qlxzmc"></el-input> 185 <el-input v-model="ruleForm.fdcq2.jgsj"></el-input>
172 </el-form-item> 186 </el-form-item>
173 </el-col> 187 </el-col>
188
174 <el-col :span="8"> 189 <el-col :span="8">
175 <el-form-item label="权利性质:"> 190 <el-form-item label="不动产权证号:">
176 <el-input v-model="ruleForm.qlxx.qlxzmc"></el-input> 191 <el-input v-model="ruleForm.qlxx.bdcqzh"></el-input>
177 </el-form-item> 192 </el-form-item>
178 </el-col> 193 </el-col>
179 <el-col :span="8"> 194 <el-col :span="8">
180 <el-form-item label="权利性质:"> 195 <el-form-item label="区县代码:">
181 <el-input v-model="ruleForm.qlxx.qlxzmc"></el-input> 196 <el-input v-model="ruleForm.qlxx.qxdm"></el-input>
182 </el-form-item> 197 </el-form-item>
183 </el-col> 198 </el-col>
184 <el-col :span="8"> 199 <el-col :span="8">
185 <el-form-item label="权利性质:"> 200 <el-form-item label="登记机构:">
186 <el-input v-model="ruleForm.qlxx.qlxzmc"></el-input> 201 <el-input v-model="ruleForm.qlxx.djjg"></el-input>
187 </el-form-item> 202 </el-form-item>
188 </el-col> 203 </el-col>
189 <el-col :span="8"> 204 <el-col :span="8">
190 <el-form-item label="权利性质:"> 205 <el-form-item label="登簿人:">
191 <el-input v-model="ruleForm.qlxx.qlxzmc"></el-input> 206 <el-input v-model="ruleForm.qlxx.dbr"></el-input>
207 </el-form-item>
208 </el-col>
209 <el-col :span="8">
210 <el-form-item label="登记时间:">
211 <el-input v-model="ruleForm.qlxx.djsj"></el-input>
212 </el-form-item>
213 </el-col>
214 </el-row>
215 <el-row>
216 <el-col :span="24">
217 <el-form-item label="登记原因:">
218 <el-input v-model="ruleForm.fdcq2.djyy"></el-input>
219 </el-form-item>
220 </el-col>
221 </el-row>
222 <el-row>
223 <el-col :span="24">
224 <el-form-item label="附记:">
225 <el-input v-model="ruleForm.fdcq2.fj"></el-input>
192 </el-form-item> 226 </el-form-item>
193 </el-col> 227 </el-col>
194
195 </el-row> 228 </el-row>
196 <div class="slxx_title title-block"> 229 <div class="slxx_title title-block">
197 权利人信息 230 权利人信息
...@@ -249,24 +282,6 @@ ...@@ -249,24 +282,6 @@
249 :viewtype="$route.query.viewtype" 282 :viewtype="$route.query.viewtype"
250 /> 283 />
251 </div> 284 </div>
252
253 <div class="slxx_title title-block">
254 登记原因
255 <div class="triangle"></div>
256 </div>
257 <el-row :gutter="10">
258 <el-col>
259 <el-form-item label="登记原因:" prop="djyy">
260 <el-input
261 class="textArea"
262 type="textarea"
263 :disabled="$route.query.viewtype"
264 v-model="ruleForm.fdcq2.djyy"
265 >
266 </el-input>
267 </el-form-item>
268 </el-col>
269 </el-row>
270 </div> 285 </div>
271 <el-row class="btn" v-if="!$route.query.viewtype && ableOperation"> 286 <el-row class="btn" v-if="!$route.query.viewtype && ableOperation">
272 <el-form-item> 287 <el-form-item>
......
...@@ -66,9 +66,9 @@ ...@@ -66,9 +66,9 @@
66 <el-select v-model="scope.row.sqrzjlxbm" class="width100"> 66 <el-select v-model="scope.row.sqrzjlxbm" class="width100">
67 <el-option 67 <el-option
68 v-for="item in zjzlData" 68 v-for="item in zjzlData"
69 :key="item.value" 69 :key="item.dcode"
70 :label="item.label" 70 :label="item.dname"
71 :value="item.value"> 71 :value="item.dcode">
72 </el-option> 72 </el-option>
73 </el-select> 73 </el-select>
74 </template> 74 </template>
...@@ -113,10 +113,10 @@ ...@@ -113,10 +113,10 @@
113 </div> 113 </div>
114 </template> 114 </template>
115 <script> 115 <script>
116 import axios from 'axios'
117 import store from '@/store/index.js' 116 import store from '@/store/index.js'
118 import { getLodop } from "@/utils/LodopFuncs"
119 import { datas } from "./addjtfcdata"; 117 import { datas } from "./addjtfcdata";
118 import { getLodop } from "@/utils/LodopFuncs"
119 import { getIdCardInfo } from '@/utils/operation.js'
120 import { getPrintTemplateByCode } from "@/api/system"; 120 import { getPrintTemplateByCode } from "@/api/system";
121 import { addJtfcCxjgXx, getJtfcInfo, printJtcfInfo } from "@/api/sqcx"; 121 import { addJtfcCxjgXx, getJtfcInfo, printJtcfInfo } from "@/api/sqcx";
122 export default { 122 export default {
...@@ -359,7 +359,7 @@ ...@@ -359,7 +359,7 @@
359 this.isSearch = false; 359 this.isSearch = false;
360 }, 360 },
361 handleRead (row, type) { 361 handleRead (row, type) {
362 axios.post(this.BASE_API.IDCARDURL).then(res => { 362 getIdCardInfo().then(res => {
363 if (res.data.code == 0) { 363 if (res.data.code == 0) {
364 let data = res.data.IDCardInfo 364 let data = res.data.IDCardInfo
365 row.sqrxm = data.name 365 row.sqrxm = data.name
...@@ -372,7 +372,6 @@ ...@@ -372,7 +372,6 @@
372 if (type == 'sqr') { 372 if (type == 'sqr') {
373 this.form.qlrList = _.cloneDeep(this.form.sqrList) 373 this.form.qlrList = _.cloneDeep(this.form.sqrList)
374 } 374 }
375 console.log(this.form.sqrList);
376 } else { 375 } else {
377 this.$message({ 376 this.$message({
378 message: res.data.message, 377 message: res.data.message,
......
1 <!-- 1 <!--
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-05-17 10:40:46 4 * @LastEditTime: 2023-06-16 11:12:40
5 --> 5 -->
6 <template> 6 <template>
7 <div class="clxx"> 7 <div class="clxx">
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
33 </div> 33 </div>
34 </div> 34 </div>
35 </div> 35 </div>
36 <image-preview ref='imageRef' :previewImg="previewImg" @updateList="updateList" @nextPriview="nextPriview" 36 <image-preview ref='imageRef' v-if="tableData.length>0" :previewImg="previewImg" @updateList="updateList" @nextPriview="nextPriview"
37 @prevPriview="prevPriview" /> 37 @prevPriview="prevPriview" />
38 </div> 38 </div>
39 </div> 39 </div>
......
1 <!-- 1 <!--
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-06-14 13:14:26 4 * @LastEditTime: 2023-06-16 10:38:23
5 --> 5 -->
6 <template> 6 <template>
7 <div> 7 <div>
...@@ -12,8 +12,8 @@ ...@@ -12,8 +12,8 @@
12 </div> 12 </div>
13 </template> 13 </template>
14 <script> 14 <script>
15 import axios from 'axios'
16 import { mapGetters } from 'vuex' 15 import { mapGetters } from 'vuex'
16 import { getIdCardInfo } from '@/utils/operation.js'
17 import addQlr from './dialog/addQlr.vue' 17 import addQlr from './dialog/addQlr.vue'
18 export default { 18 export default {
19 components: { 19 components: {
...@@ -195,7 +195,7 @@ ...@@ -195,7 +195,7 @@
195 195
196 // 身份证读取 196 // 身份证读取
197 readClick (row) { 197 readClick (row) {
198 axios.post(this.BASE_API.IDCARDURL).then(res => { 198 getIdCardInfo().then(res => {
199 if (res.data.code == 0) { 199 if (res.data.code == 0) {
200 let data = res.data.IDCardInfo 200 let data = res.data.IDCardInfo
201 row.sqrmc = data.name 201 row.sqrmc = data.name
......
1 /*
2 * @Description:
3 * @Autor: renchao
4 * @LastEditTime: 2023-05-05 09:45:31
5 */
6 import Router from '@/router'
7 export default {
8 methods: {
9 //点击行选中或取消复选框
10 handleRowClick (row, column, event) {
11 this.$refs.table.toggleRowSelection(row)
12 },
13 jump (data, type) {
14 const { href } = Router.resolve(
15 "/djbworkFrame?bsmSlsq=" +
16 data.bsmSlsq +
17 "&bestepid=" +
18 data.bestepid + '&bsmBusiness=' + '&sqywbm=' + type
19 );
20 window.open(href, "_blank");
21 this.$popupCacel()
22 },
23 queryClick () {
24 this.pageData.currentPage = 1
25 // this.fetchData();
26 }
27 }
28 }