Merge branch 'dev' of http://yun.pashanhoo.com:9090/bdc/bdcdj-web into dev
Showing
13 changed files
with
139 additions
and
148 deletions
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-08-10 15:20:52 | 4 | * @LastEditTime: 2023-08-23 15:36:24 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div> | 7 | <div> |
... | @@ -117,7 +117,7 @@ | ... | @@ -117,7 +117,7 @@ |
117 | const image = new Image(); | 117 | const image = new Image(); |
118 | image.onload = () => { | 118 | image.onload = () => { |
119 | context.drawImage(image, 0, 0); | 119 | context.drawImage(image, 0, 0); |
120 | context.font = '18px 楷体'; | 120 | context.font = '16px 楷体'; |
121 | context.fillStyle = '#000000'; | 121 | context.fillStyle = '#000000'; |
122 | context.fillText(this.bdcqz.sjjc ? this.bdcqz.sjjc : '', 60, 56); | 122 | context.fillText(this.bdcqz.sjjc ? this.bdcqz.sjjc : '', 60, 56); |
123 | context.fillText(this.bdcqz.djnd ? this.bdcqz.djnd : '', 113, 56); | 123 | context.fillText(this.bdcqz.djnd ? this.bdcqz.djnd : '', 113, 56); |
... | @@ -131,7 +131,32 @@ | ... | @@ -131,7 +131,32 @@ |
131 | context.fillText(this.bdcqz.qlxz ? this.bdcqz.qlxz : '', 138, 303); | 131 | context.fillText(this.bdcqz.qlxz ? this.bdcqz.qlxz : '', 138, 303); |
132 | context.fillText(this.bdcqz.yt ? this.bdcqz.yt : '', 138, 346); | 132 | context.fillText(this.bdcqz.yt ? this.bdcqz.yt : '', 138, 346); |
133 | context.fillText(this.bdcqz.mj ? this.bdcqz.mj : '', 138, 386); | 133 | context.fillText(this.bdcqz.mj ? this.bdcqz.mj : '', 138, 386); |
134 | // 使用期限 | ||
135 | if (this.bdcqz.syqx && this.bdcqz.syqx.length > 28) { | ||
136 | let lines3 = this.bdcqz.syqx ? this.bdcqz.syqx.split(' ') : []; | ||
137 | lines3.forEach((line, index) => { | ||
138 | const y = 427 + (index * 27); // 每行文本的垂直位置 | ||
139 | let currentLine = ''; | ||
140 | let arr = []; | ||
141 | for (let word of line) { | ||
142 | const testLine = currentLine + word; | ||
143 | const lineWidth = context.measureText(testLine).width; | ||
144 | if (lineWidth <= 315) { | ||
145 | currentLine = testLine; | ||
146 | } else { | ||
147 | arr.push(currentLine); | ||
148 | currentLine = word; | ||
149 | } | ||
150 | } | ||
151 | arr.push(currentLine); | ||
152 | arr.forEach((line, index) => { | ||
153 | context.fillText(line, 138, y + (index * 20)); // 调整行高 | ||
154 | }) | ||
155 | }) | ||
156 | } else { | ||
134 | context.fillText(this.bdcqz.syqx ? this.bdcqz.syqx : '', 138, 429); | 157 | context.fillText(this.bdcqz.syqx ? this.bdcqz.syqx : '', 138, 429); |
158 | } | ||
159 | |||
135 | // qlqtzk | 160 | // qlqtzk |
136 | const maxWidth = 280; // 最大宽度限制 | 161 | const maxWidth = 280; // 最大宽度限制 |
137 | let lines = this.bdcqz.qlqtzk ? this.bdcqz.qlqtzk.split('\n') : []; | 162 | let lines = this.bdcqz.qlqtzk ? this.bdcqz.qlqtzk.split('\n') : []; |
... | @@ -155,7 +180,7 @@ | ... | @@ -155,7 +180,7 @@ |
155 | }) | 180 | }) |
156 | }) | 181 | }) |
157 | 182 | ||
158 | let lines1 = this.bdcqz.fj ? this.bdcqz.fj.split(' ') : []; | 183 | let lines1 = this.bdcqz.fj ? this.bdcqz.fj.split('\n') : []; |
159 | lines1.forEach((line, index) => { | 184 | lines1.forEach((line, index) => { |
160 | const y = 100 + (index * 37); // 每行文本的垂直位置 | 185 | const y = 100 + (index * 37); // 每行文本的垂直位置 |
161 | let currentLine = ''; | 186 | let currentLine = ''; | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-07-25 09:21:53 | 4 | * @LastEditTime: 2023-08-23 15:07:51 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="from-clues"> | 7 | <div class="from-clues"> |
... | @@ -10,8 +10,7 @@ | ... | @@ -10,8 +10,7 @@ |
10 | :model="queryForm" | 10 | :model="queryForm" |
11 | ref="queryForm" | 11 | ref="queryForm" |
12 | @submit.native.prevent | 12 | @submit.native.prevent |
13 | label-width="100px" | 13 | label-width="100px"> |
14 | > | ||
15 | <el-row> | 14 | <el-row> |
16 | <el-col :span="5"> | 15 | <el-col :span="5"> |
17 | <el-form-item label="业务来源"> | 16 | <el-form-item label="业务来源"> |
... | @@ -22,14 +21,12 @@ | ... | @@ -22,14 +21,12 @@ |
22 | @change="handleSelect('ywly', 'ywlymc', 'ywly')" | 21 | @change="handleSelect('ywly', 'ywlymc', 'ywly')" |
23 | @clear="handleEmpty('ywlymc')" | 22 | @clear="handleEmpty('ywlymc')" |
24 | clearable | 23 | clearable |
25 | placeholder="请选择业务来源" | 24 | placeholder="请选择业务来源"> |
26 | > | ||
27 | <el-option | 25 | <el-option |
28 | v-for="item in dictData['ywly']" | 26 | v-for="item in dictData['ywly']" |
29 | :key="item.dcode" | 27 | :key="item.dcode" |
30 | :label="item.dname" | 28 | :label="item.dname" |
31 | :value="item.dcode" | 29 | :value="item.dcode"> |
32 | > | ||
33 | </el-option> | 30 | </el-option> |
34 | </el-select> | 31 | </el-select> |
35 | </el-form-item> | 32 | </el-form-item> |
... | @@ -43,14 +40,12 @@ | ... | @@ -43,14 +40,12 @@ |
43 | @clear="handleEmpty('qllxmc')" | 40 | @clear="handleEmpty('qllxmc')" |
44 | filterable | 41 | filterable |
45 | clearable | 42 | clearable |
46 | placeholder="请选择权利类型" | 43 | placeholder="请选择权利类型"> |
47 | > | ||
48 | <el-option | 44 | <el-option |
49 | v-for="item in dictData['A8']" | 45 | v-for="item in dictData['A8']" |
50 | :key="item.dcode" | 46 | :key="item.dcode" |
51 | :label="item.dname" | 47 | :label="item.dname" |
52 | :value="item.dcode" | 48 | :value="item.dcode"> |
53 | > | ||
54 | </el-option> | 49 | </el-option> |
55 | </el-select> | 50 | </el-select> |
56 | </el-form-item> | 51 | </el-form-item> |
... | @@ -64,14 +59,12 @@ | ... | @@ -64,14 +59,12 @@ |
64 | @clear="handleEmpty('djlxmc')" | 59 | @clear="handleEmpty('djlxmc')" |
65 | filterable | 60 | filterable |
66 | clearable | 61 | clearable |
67 | placeholder="请选择登记类型" | 62 | placeholder="请选择登记类型"> |
68 | > | ||
69 | <el-option | 63 | <el-option |
70 | v-for="item in dictData['A21']" | 64 | v-for="item in dictData['A21']" |
71 | :key="item.dcode" | 65 | :key="item.dcode" |
72 | :label="item.dname" | 66 | :label="item.dname" |
73 | :value="item.dcode" | 67 | :value="item.dcode"> |
74 | > | ||
75 | </el-option> | 68 | </el-option> |
76 | </el-select> | 69 | </el-select> |
77 | </el-form-item> | 70 | </el-form-item> |
... | @@ -82,8 +75,7 @@ | ... | @@ -82,8 +75,7 @@ |
82 | placeholder="请输入业务号" | 75 | placeholder="请输入业务号" |
83 | v-model="queryForm.ywh" | 76 | v-model="queryForm.ywh" |
84 | clearable | 77 | clearable |
85 | class="width100" | 78 | class="width100"> |
86 | > | ||
87 | </el-input> | 79 | </el-input> |
88 | </el-form-item> | 80 | </el-form-item> |
89 | </el-col> | 81 | </el-col> |
... | @@ -93,9 +85,7 @@ | ... | @@ -93,9 +85,7 @@ |
93 | <el-button | 85 | <el-button |
94 | type="primary" | 86 | type="primary" |
95 | native-type="submit" | 87 | native-type="submit" |
96 | @click="handleSearch" | 88 | @click="handleSearch">查询</el-button> |
97 | >查询</el-button | ||
98 | > | ||
99 | <el-button @click="moreQueryClick">高级查询</el-button> | 89 | <el-button @click="moreQueryClick">高级查询</el-button> |
100 | </el-form-item> | 90 | </el-form-item> |
101 | </el-col> | 91 | </el-col> |
... | @@ -107,8 +97,7 @@ | ... | @@ -107,8 +97,7 @@ |
107 | placeholder="请输入不动产单元号" | 97 | placeholder="请输入不动产单元号" |
108 | v-model="queryForm.bdcdyh" | 98 | v-model="queryForm.bdcdyh" |
109 | clearable | 99 | clearable |
110 | class="width100" | 100 | class="width100"> |
111 | > | ||
112 | </el-input> | 101 | </el-input> |
113 | </el-form-item> | 102 | </el-form-item> |
114 | </el-col> | 103 | </el-col> |
... | @@ -118,8 +107,7 @@ | ... | @@ -118,8 +107,7 @@ |
118 | placeholder="如需要模糊查询,前后输入%" | 107 | placeholder="如需要模糊查询,前后输入%" |
119 | v-model="queryForm.sqrmc" | 108 | v-model="queryForm.sqrmc" |
120 | clearable | 109 | clearable |
121 | class="width100" | 110 | class="width100"> |
122 | > | ||
123 | </el-input> | 111 | </el-input> |
124 | </el-form-item> | 112 | </el-form-item> |
125 | </el-col> | 113 | </el-col> |
... | @@ -129,8 +117,7 @@ | ... | @@ -129,8 +117,7 @@ |
129 | placeholder="如需要模糊查询,前后输入%" | 117 | placeholder="如需要模糊查询,前后输入%" |
130 | v-model="queryForm.sqrzjhm" | 118 | v-model="queryForm.sqrzjhm" |
131 | clearable | 119 | clearable |
132 | class="width100" | 120 | class="width100"> |
133 | > | ||
134 | </el-input> | 121 | </el-input> |
135 | </el-form-item> | 122 | </el-form-item> |
136 | </el-col> | 123 | </el-col> |
... | @@ -140,8 +127,7 @@ | ... | @@ -140,8 +127,7 @@ |
140 | placeholder="如需要模糊查询,前后输入%" | 127 | placeholder="如需要模糊查询,前后输入%" |
141 | v-model.trim="queryForm.zl" | 128 | v-model.trim="queryForm.zl" |
142 | clearable | 129 | clearable |
143 | class="width100" | 130 | class="width100"> |
144 | > | ||
145 | </el-input> | 131 | </el-input> |
146 | </el-form-item> | 132 | </el-form-item> |
147 | </el-col> | 133 | </el-col> |
... | @@ -153,16 +139,14 @@ | ... | @@ -153,16 +139,14 @@ |
153 | {{ item.name }}:{{ item.value }} | 139 | {{ item.name }}:{{ item.value }} |
154 | <i | 140 | <i |
155 | class="el-icon-circle-close" | 141 | class="el-icon-circle-close" |
156 | @click="handelItem(item, index)" | 142 | @click="handelItem(item, index)"></i> |
157 | ></i> | ||
158 | </li> | 143 | </li> |
159 | </ul> | 144 | </ul> |
160 | <el-button | 145 | <el-button |
161 | class="clean-btn" | 146 | class="clean-btn" |
162 | type="text" | 147 | type="text" |
163 | v-if="searchList.length > 0" | 148 | v-if="searchList.length > 0" |
164 | @click.native="hanldeCleanAll" | 149 | @click.native="hanldeCleanAll">清除全部 |
165 | >清除全部 | ||
166 | </el-button> | 150 | </el-button> |
167 | </el-row> | 151 | </el-row> |
168 | </el-form> | 152 | </el-form> |
... | @@ -177,37 +161,34 @@ | ... | @@ -177,37 +161,34 @@ |
177 | @size-change="handleSizeChange" | 161 | @size-change="handleSizeChange" |
178 | @p-current-change="handleCurrentChange" | 162 | @p-current-change="handleCurrentChange" |
179 | :column="tableData.columns" | 163 | :column="tableData.columns" |
180 | :data="tableData.data" | 164 | :data="tableData.data"> |
181 | > | ||
182 | </lb-table> | 165 | </lb-table> |
183 | </div> | 166 | </div> |
184 | <searchBox | 167 | <searchBox |
185 | v-model="isSearch" | 168 | v-model="isSearch" |
186 | @getSearch="getSearch" | 169 | @getSearch="getSearch" |
187 | :advancedForm="otherForm" | 170 | :advancedForm="otherForm" /> |
188 | /> | ||
189 | </div> | 171 | </div> |
190 | </template> | 172 | </template> |
191 | <script> | 173 | <script> |
192 | import { mapGetters } from "vuex"; | 174 | import { mapGetters } from "vuex"; |
193 | import searchBox from "../components/search.vue"; | 175 | import searchBox from "../components/search.vue"; |
194 | import table from "@/utils/mixin/table"; | 176 | import table from "@/utils/mixin/table"; |
195 | import searchMin from "../components/mixin/index"; | 177 | import searchMin from "../components/mixin/index"; |
196 | import { datas, sendThis } from "./dbxdata"; | 178 | import { datas, sendThis } from "./dbxdata"; |
197 | import { searchTaskToDo } from "@/api/workflow/search.js"; | 179 | import { searchTaskToDo } from "@/api/workflow/search.js"; |
198 | import { | 180 | import { |
199 | judgeUserTaskPermission, | 181 | judgeUserTaskPermission, |
200 | deleteFlow, | 182 | deleteFlow, |
201 | claimTask, | 183 | claimTask, |
202 | } from "@/api/workFlow.js"; | 184 | } from "@/api/workFlow.js"; |
203 | export default { | 185 | export default { |
204 | name: "dbx", | ||
205 | components: { searchBox }, | 186 | components: { searchBox }, |
206 | mixins: [table, searchMin], | 187 | mixins: [table, searchMin], |
207 | computed: { | 188 | computed: { |
208 | ...mapGetters(["dictData", "transfer"]), | 189 | ...mapGetters(["dictData", "transfer"]), |
209 | }, | 190 | }, |
210 | data() { | 191 | data () { |
211 | return { | 192 | return { |
212 | queryForm: {}, | 193 | queryForm: {}, |
213 | searchForm: { | 194 | searchForm: { |
... | @@ -224,16 +205,16 @@ export default { | ... | @@ -224,16 +205,16 @@ export default { |
224 | jumpid: "", | 205 | jumpid: "", |
225 | }; | 206 | }; |
226 | }, | 207 | }, |
227 | mounted() { | 208 | mounted () { |
228 | sendThis(this); | 209 | sendThis(this); |
229 | }, | 210 | }, |
230 | watch: { | 211 | watch: { |
231 | queryForm: { | 212 | queryForm: { |
232 | handler(newName, oldName) {}, | 213 | handler (newName, oldName) { }, |
233 | immediate: true, | 214 | immediate: true, |
234 | }, | 215 | }, |
235 | }, | 216 | }, |
236 | activated() { | 217 | activated () { |
237 | this.queryClick(); | 218 | this.queryClick(); |
238 | window["getBpageList"] = () => { | 219 | window["getBpageList"] = () => { |
239 | this.queryClick(); | 220 | this.queryClick(); |
... | @@ -245,7 +226,7 @@ export default { | ... | @@ -245,7 +226,7 @@ export default { |
245 | * @description: 列表渲染接口 | 226 | * @description: 列表渲染接口 |
246 | * @author: renchao | 227 | * @author: renchao |
247 | */ | 228 | */ |
248 | queryClick() { | 229 | queryClick () { |
249 | this.$startLoading(); | 230 | this.$startLoading(); |
250 | this.searchForm.ywh = this.queryForm.ywh; | 231 | this.searchForm.ywh = this.queryForm.ywh; |
251 | this.iterationData(); | 232 | this.iterationData(); |
... | @@ -267,7 +248,7 @@ export default { | ... | @@ -267,7 +248,7 @@ export default { |
267 | * @param {*} val | 248 | * @param {*} val |
268 | * @author: renchao | 249 | * @author: renchao |
269 | */ | 250 | */ |
270 | handleSort(val) { | 251 | handleSort (val) { |
271 | this.queryForm.sortField = val.prop; | 252 | this.queryForm.sortField = val.prop; |
272 | this.queryForm.sortOrder = val.order == "ascending" ? "asc" : "desc"; | 253 | this.queryForm.sortOrder = val.order == "ascending" ? "asc" : "desc"; |
273 | this.queryClick(); | 254 | this.queryClick(); |
... | @@ -277,7 +258,7 @@ export default { | ... | @@ -277,7 +258,7 @@ export default { |
277 | * @param {*} item | 258 | * @param {*} item |
278 | * @author: renchao | 259 | * @author: renchao |
279 | */ | 260 | */ |
280 | del(item) { | 261 | del (item) { |
281 | let formdata = new FormData(); | 262 | let formdata = new FormData(); |
282 | formdata.append("bsmSlsq", item.bsmSlsq); | 263 | formdata.append("bsmSlsq", item.bsmSlsq); |
283 | this.$confirm("确定要删除吗, 是否继续?", "提示", { | 264 | this.$confirm("确定要删除吗, 是否继续?", "提示", { |
... | @@ -311,7 +292,7 @@ export default { | ... | @@ -311,7 +292,7 @@ export default { |
311 | * @param {*} item | 292 | * @param {*} item |
312 | * @author: renchao | 293 | * @author: renchao |
313 | */ | 294 | */ |
314 | ywhClick(item) { | 295 | ywhClick (item) { |
315 | //判断用户是否拥有该任务的权限,若有则跳转,无权限则给予提示并刷新页面 | 296 | //判断用户是否拥有该任务的权限,若有则跳转,无权限则给予提示并刷新页面 |
316 | judgeUserTaskPermission({ | 297 | judgeUserTaskPermission({ |
317 | bsmSlsq: item.bsmSlsq, | 298 | bsmSlsq: item.bsmSlsq, |
... | @@ -364,8 +345,8 @@ export default { | ... | @@ -364,8 +345,8 @@ export default { |
364 | }); | 345 | }); |
365 | }, | 346 | }, |
366 | }, | 347 | }, |
367 | }; | 348 | }; |
368 | </script> | 349 | </script> |
369 | <style scoped lang="scss"> | 350 | <style scoped lang="scss"> |
370 | @import "~@/styles/public.scss"; | 351 | @import "~@/styles/public.scss"; |
371 | </style> | 352 | </style> | ... | ... |
1 | /* | 1 | /* |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-08-08 14:32:47 | 4 | * @LastEditTime: 2023-08-23 15:06:21 |
5 | */ | 5 | */ |
6 | import filter from '@/utils/filter.js' | 6 | import filter from '@/utils/filter.js' |
7 | let vm = null | 7 | let vm = null |
... | @@ -83,8 +83,8 @@ class data extends filter { | ... | @@ -83,8 +83,8 @@ class data extends filter { |
83 | { | 83 | { |
84 | prop: "zl", | 84 | prop: "zl", |
85 | label: "坐落", | 85 | label: "坐落", |
86 | minWidth: '130', | 86 | width: '150', |
87 | showOverflowTooltip: true | 87 | showOverflowTooltip: true, |
88 | }, | 88 | }, |
89 | { | 89 | { |
90 | prop: "slsj", | 90 | prop: "slsj", |
... | @@ -95,7 +95,7 @@ class data extends filter { | ... | @@ -95,7 +95,7 @@ class data extends filter { |
95 | { | 95 | { |
96 | prop: "slry", | 96 | prop: "slry", |
97 | label: "受理人员", | 97 | label: "受理人员", |
98 | width: '80' | 98 | minWidth: '80' |
99 | }, | 99 | }, |
100 | { | 100 | { |
101 | label: "转入时间", | 101 | label: "转入时间", | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-07-25 09:21:40 | 4 | * @LastEditTime: 2023-08-23 15:07:37 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="from-clues"> | 7 | <div class="from-clues"> |
... | @@ -11,8 +11,7 @@ | ... | @@ -11,8 +11,7 @@ |
11 | :model="queryForm" | 11 | :model="queryForm" |
12 | ref="queryForm" | 12 | ref="queryForm" |
13 | @submit.native.prevent | 13 | @submit.native.prevent |
14 | label-width="80px" | 14 | label-width="80px"> |
15 | > | ||
16 | <el-row> | 15 | <el-row> |
17 | <el-col :span="5"> | 16 | <el-col :span="5"> |
18 | <el-form-item label="业务来源" label-width="70px"> | 17 | <el-form-item label="业务来源" label-width="70px"> |
... | @@ -23,14 +22,12 @@ | ... | @@ -23,14 +22,12 @@ |
23 | class="width100" | 22 | class="width100" |
24 | filterable | 23 | filterable |
25 | clearable | 24 | clearable |
26 | placeholder="请选择业务来源" | 25 | placeholder="请选择业务来源"> |
27 | > | ||
28 | <el-option | 26 | <el-option |
29 | v-for="item in dictData['ywly']" | 27 | v-for="item in dictData['ywly']" |
30 | :key="item.dcode" | 28 | :key="item.dcode" |
31 | :label="item.dname" | 29 | :label="item.dname" |
32 | :value="item.dcode" | 30 | :value="item.dcode"> |
33 | > | ||
34 | </el-option> | 31 | </el-option> |
35 | </el-select> | 32 | </el-select> |
36 | </el-form-item> | 33 | </el-form-item> |
... | @@ -44,14 +41,12 @@ | ... | @@ -44,14 +41,12 @@ |
44 | class="width100" | 41 | class="width100" |
45 | filterable | 42 | filterable |
46 | clearable | 43 | clearable |
47 | placeholder="请选择权利类型" | 44 | placeholder="请选择权利类型"> |
48 | > | ||
49 | <el-option | 45 | <el-option |
50 | v-for="item in dictData['A8']" | 46 | v-for="item in dictData['A8']" |
51 | :key="item.dcode" | 47 | :key="item.dcode" |
52 | :label="item.dname" | 48 | :label="item.dname" |
53 | :value="item.dcode" | 49 | :value="item.dcode"> |
54 | > | ||
55 | </el-option> | 50 | </el-option> |
56 | </el-select> | 51 | </el-select> |
57 | </el-form-item> | 52 | </el-form-item> |
... | @@ -65,14 +60,12 @@ | ... | @@ -65,14 +60,12 @@ |
65 | class="width100" | 60 | class="width100" |
66 | filterable | 61 | filterable |
67 | clearable | 62 | clearable |
68 | placeholder="请选择登记类型" | 63 | placeholder="请选择登记类型"> |
69 | > | ||
70 | <el-option | 64 | <el-option |
71 | v-for="item in dictData['A21']" | 65 | v-for="item in dictData['A21']" |
72 | :key="item.dcode" | 66 | :key="item.dcode" |
73 | :label="item.dname" | 67 | :label="item.dname" |
74 | :value="item.dcode" | 68 | :value="item.dcode"> |
75 | > | ||
76 | </el-option> | 69 | </el-option> |
77 | </el-select> | 70 | </el-select> |
78 | </el-form-item> | 71 | </el-form-item> |
... | @@ -83,8 +76,7 @@ | ... | @@ -83,8 +76,7 @@ |
83 | placeholder="请输入业务号" | 76 | placeholder="请输入业务号" |
84 | v-model="queryForm.ywh" | 77 | v-model="queryForm.ywh" |
85 | clearable | 78 | clearable |
86 | class="width200px" | 79 | class="width200px"> |
87 | > | ||
88 | </el-input> | 80 | </el-input> |
89 | </el-form-item> | 81 | </el-form-item> |
90 | </el-col> | 82 | </el-col> |
... | @@ -94,9 +86,7 @@ | ... | @@ -94,9 +86,7 @@ |
94 | <el-button | 86 | <el-button |
95 | type="primary" | 87 | type="primary" |
96 | native-type="submit" | 88 | native-type="submit" |
97 | @click="handleSearch" | 89 | @click="handleSearch">查询</el-button> |
98 | >查询</el-button | ||
99 | > | ||
100 | <el-button @click="moreQueryClick">高级查询</el-button> | 90 | <el-button @click="moreQueryClick">高级查询</el-button> |
101 | </el-form-item> | 91 | </el-form-item> |
102 | </el-col> | 92 | </el-col> |
... | @@ -108,16 +98,14 @@ | ... | @@ -108,16 +98,14 @@ |
108 | {{ item.name }}:{{ item.value }} | 98 | {{ item.name }}:{{ item.value }} |
109 | <i | 99 | <i |
110 | class="el-icon-circle-close" | 100 | class="el-icon-circle-close" |
111 | @click="handelItem(item, index)" | 101 | @click="handelItem(item, index)"></i> |
112 | ></i> | ||
113 | </li> | 102 | </li> |
114 | </ul> | 103 | </ul> |
115 | <el-button | 104 | <el-button |
116 | class="clean-btn" | 105 | class="clean-btn" |
117 | type="text" | 106 | type="text" |
118 | v-if="searchList.length > 0" | 107 | v-if="searchList.length > 0" |
119 | @click.native="hanldeCleanAll" | 108 | @click.native="hanldeCleanAll">清除全部 |
120 | >清除全部 | ||
121 | </el-button> | 109 | </el-button> |
122 | </el-row> | 110 | </el-row> |
123 | </el-form> | 111 | </el-form> |
... | @@ -134,35 +122,33 @@ | ... | @@ -134,35 +122,33 @@ |
134 | @size-change="handleSizeChange" | 122 | @size-change="handleSizeChange" |
135 | @p-current-change="handleCurrentChange" | 123 | @p-current-change="handleCurrentChange" |
136 | :column="tableData.columns" | 124 | :column="tableData.columns" |
137 | :data="tableData.data" | 125 | :data="tableData.data"> |
138 | > | ||
139 | </lb-table> | 126 | </lb-table> |
140 | </div> | 127 | </div> |
141 | <searchBox | 128 | <searchBox |
142 | v-model="isSearch" | 129 | v-model="isSearch" |
143 | @getSearch="getSearch" | 130 | @getSearch="getSearch" |
144 | :advancedForm="otherForm" | 131 | :advancedForm="otherForm" /> |
145 | /> | ||
146 | </div> | 132 | </div> |
147 | </template> | 133 | </template> |
148 | <script> | 134 | <script> |
149 | import { mapGetters } from "vuex"; | 135 | import { mapGetters } from "vuex"; |
150 | import searchMin from "../components/mixin/index"; | 136 | import searchMin from "../components/mixin/index"; |
151 | import table from "@/utils/mixin/table"; | 137 | import table from "@/utils/mixin/table"; |
152 | import { datas, sendThis } from "./ybxdata"; | 138 | import { datas, sendThis } from "./ybxdata"; |
153 | import { searchTaskDone } from "@/api/workflow/search.js"; | 139 | import { searchTaskDone } from "@/api/workflow/search.js"; |
154 | import searchBox from "../components/search.vue"; | 140 | import searchBox from "../components/search.vue"; |
155 | export default { | 141 | export default { |
156 | name: "ybx", | 142 | name: "ybx", |
157 | components: { searchBox }, | 143 | components: { searchBox }, |
158 | mixins: [table, searchMin], | 144 | mixins: [table, searchMin], |
159 | mounted() { | 145 | mounted () { |
160 | sendThis(this); | 146 | sendThis(this); |
161 | }, | 147 | }, |
162 | computed: { | 148 | computed: { |
163 | ...mapGetters(["dictData"]), | 149 | ...mapGetters(["dictData"]), |
164 | }, | 150 | }, |
165 | data() { | 151 | data () { |
166 | return { | 152 | return { |
167 | queryForm: { | 153 | queryForm: { |
168 | ywly: "", | 154 | ywly: "", |
... | @@ -183,19 +169,18 @@ export default { | ... | @@ -183,19 +169,18 @@ export default { |
183 | }, | 169 | }, |
184 | }; | 170 | }; |
185 | }, | 171 | }, |
186 | activated() { | 172 | activated () { |
187 | this.queryClick(); | 173 | this.queryClick(); |
188 | window["getBpageList"] = () => { | 174 | window["getBpageList"] = () => { |
189 | this.queryClick(); | 175 | this.queryClick(); |
190 | }; | 176 | }; |
191 | }, | 177 | }, |
192 | methods: { | 178 | methods: { |
193 | // 列表渲染接口 | ||
194 | /** | 179 | /** |
195 | * @description: 列表渲染接口 | 180 | * @description: 列表渲染接口 |
196 | * @author: renchao | 181 | * @author: renchao |
197 | */ | 182 | */ |
198 | queryClick() { | 183 | queryClick () { |
199 | this.$startLoading(); | 184 | this.$startLoading(); |
200 | this.searchForm.ywh = this.queryForm.ywh; | 185 | this.searchForm.ywh = this.queryForm.ywh; |
201 | this.iterationData(); | 186 | this.iterationData(); |
... | @@ -223,7 +208,7 @@ export default { | ... | @@ -223,7 +208,7 @@ export default { |
223 | * @param {*} val | 208 | * @param {*} val |
224 | * @author: renchao | 209 | * @author: renchao |
225 | */ | 210 | */ |
226 | handleSort(val) { | 211 | handleSort (val) { |
227 | this.queryForm.sortField = val.prop; | 212 | this.queryForm.sortField = val.prop; |
228 | this.queryForm.sortOrder = val.order == "ascending" ? "asc" : "desc"; | 213 | this.queryForm.sortOrder = val.order == "ascending" ? "asc" : "desc"; |
229 | this.queryClick(); | 214 | this.queryClick(); |
... | @@ -233,7 +218,7 @@ export default { | ... | @@ -233,7 +218,7 @@ export default { |
233 | * @param {*} item | 218 | * @param {*} item |
234 | * @author: renchao | 219 | * @author: renchao |
235 | */ | 220 | */ |
236 | ywhClick(item) { | 221 | ywhClick (item) { |
237 | //有任务权限 | 222 | //有任务权限 |
238 | if (item.sjlx == "3") { | 223 | if (item.sjlx == "3") { |
239 | item.djywbm = "DJBBL"; | 224 | item.djywbm = "DJBBL"; |
... | @@ -257,8 +242,8 @@ export default { | ... | @@ -257,8 +242,8 @@ export default { |
257 | } | 242 | } |
258 | }, | 243 | }, |
259 | }, | 244 | }, |
260 | }; | 245 | }; |
261 | </script> | 246 | </script> |
262 | <style scoped lang="scss"> | 247 | <style scoped lang="scss"> |
263 | @import "~@/styles/public.scss"; | 248 | @import "~@/styles/public.scss"; |
264 | </style> | 249 | </style> | ... | ... |
1 | /* | ||
2 | * @Description: | ||
3 | * @Autor: renchao | ||
4 | * @LastEditTime: 2023-08-23 15:04:35 | ||
5 | */ | ||
1 | import filter from '@/utils/filter.js' | 6 | import filter from '@/utils/filter.js' |
2 | let vm = null | 7 | let vm = null |
3 | 8 | ||
... | @@ -57,6 +62,7 @@ class data extends filter { | ... | @@ -57,6 +62,7 @@ class data extends filter { |
57 | { | 62 | { |
58 | prop: "sqywmc", | 63 | prop: "sqywmc", |
59 | label: "申请业务名称", | 64 | label: "申请业务名称", |
65 | width: '150', | ||
60 | }, | 66 | }, |
61 | { | 67 | { |
62 | prop: "qlrmc", | 68 | prop: "qlrmc", | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-08-02 09:57:31 | 4 | * @LastEditTime: 2023-08-23 14:51:26 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <!-- 抵押权利信息查询 --> | 7 | <!-- 抵押权利信息查询 --> |
... | @@ -39,7 +39,6 @@ | ... | @@ -39,7 +39,6 @@ |
39 | <el-col :span="2" class="btnColRight"> | 39 | <el-col :span="2" class="btnColRight"> |
40 | <el-form-item> | 40 | <el-form-item> |
41 | <el-button type="primary" @click="handleSearch" :loading="loading">查询</el-button> | 41 | <el-button type="primary" @click="handleSearch" :loading="loading">查询</el-button> |
42 | <!-- <el-button type="primary" @click="resetForm(true)">重置</el-button> --> | ||
43 | </el-form-item> | 42 | </el-form-item> |
44 | </el-col> | 43 | </el-col> |
45 | </el-row> | 44 | </el-row> | ... | ... |
1 | /* | 1 | /* |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-08-04 09:52:09 | 4 | * @LastEditTime: 2023-08-23 14:51:40 |
5 | */ | 5 | */ |
6 | import filter from '@/utils/filter.js' | 6 | import filter from '@/utils/filter.js' |
7 | let vm = null | 7 | let vm = null |
... | @@ -35,22 +35,12 @@ class data extends filter { | ... | @@ -35,22 +35,12 @@ class data extends filter { |
35 | { | 35 | { |
36 | prop: "status", | 36 | prop: "status", |
37 | label: "状态", | 37 | label: "状态", |
38 | minWidth: '120', | ||
38 | render: (h, scope) => { | 39 | render: (h, scope) => { |
39 | return ( | 40 | return ( |
40 | <div> | 41 | <div> |
41 | <a style='color:#3498db;' v-show={scope.row.djblzt == 1}>{this.yWstatus(scope.row)}</a> | 42 | <a style='color:#3498db;' v-show={scope.row.djblzt == 1}>{this.yWstatus(scope.row)}</a> |
42 | <span v-show={scope.row.djblzt != 1}>{this.yWstatus(scope.row)}</span> | 43 | <span v-show={scope.row.djblzt != 1}>{this.yWstatus(scope.row)}</span> |
43 | {/* <a style='color:#3498db;' v-show={scope.row.djblzt == 1} >正在办理</a> | ||
44 | <span v-show={scope.row.zjgcdyzt == 1}>,在建工程抵押</span> | ||
45 | <span v-show={scope.row.ycfzt == 1}>,已预查封</span> | ||
46 | <span v-show={scope.row.ycfzt == 1}>,已预查封</span> | ||
47 | <span v-show={scope.row.cfzt == 1}>,已查封</span> | ||
48 | <span v-show={scope.row.diyizt == 1}>,已地役</span> | ||
49 | <span v-show={scope.row.yyzt == 1}>,异议中</span> | ||
50 | <span v-show={scope.row.xzzt == 1}>,已限制</span> | ||
51 | <span v-show={scope.row.ygmmzt == 1}>,已预告买卖</span> | ||
52 | <span v-show={scope.row.ygdyzt == 1}>,已预告抵押</span> | ||
53 | <span v-show={scope.row.dyzt == 1}>,已抵押</span> */} | ||
54 | </div> | 44 | </div> |
55 | ) | 45 | ) |
56 | } | 46 | } |
... | @@ -58,7 +48,8 @@ class data extends filter { | ... | @@ -58,7 +48,8 @@ class data extends filter { |
58 | { | 48 | { |
59 | prop: "bdcqzh", | 49 | prop: "bdcqzh", |
60 | label: "不动产证明号", | 50 | label: "不动产证明号", |
61 | minWidth: '150' | 51 | width: '150', |
52 | showOverflowTooltip: true | ||
62 | }, | 53 | }, |
63 | { | 54 | { |
64 | prop: "bdcdyh", | 55 | prop: "bdcdyh", | ... | ... |
1 | /* | 1 | /* |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-07-14 16:59:43 | 4 | * @LastEditTime: 2023-08-23 14:56:57 |
5 | */ | 5 | */ |
6 | import filter from '@/utils/filter.js' | 6 | import filter from '@/utils/filter.js' |
7 | let vm = null | 7 | let vm = null |
... | @@ -47,16 +47,20 @@ class data extends filter { | ... | @@ -47,16 +47,20 @@ class data extends filter { |
47 | { | 47 | { |
48 | prop: "qllxmc", | 48 | prop: "qllxmc", |
49 | label: "权利类型", | 49 | label: "权利类型", |
50 | width: '120', | ||
51 | showOverflowTooltip: true | ||
50 | }, | 52 | }, |
51 | { | 53 | { |
52 | prop: "bdcdyh", | 54 | prop: "bdcdyh", |
53 | label: "不动产单元号", | 55 | label: "不动产单元号", |
54 | minWidth: '150' | 56 | width: '150', |
57 | showOverflowTooltip: true | ||
55 | }, | 58 | }, |
56 | { | 59 | { |
57 | prop: "bdcqzh", | 60 | prop: "bdcqzh", |
58 | label: "不动产权证号", | 61 | label: "不动产权证号", |
59 | minWidth: '150' | 62 | width: '150', |
63 | showOverflowTooltip: true | ||
60 | }, | 64 | }, |
61 | { | 65 | { |
62 | prop: "gyqk", | 66 | prop: "gyqk", |
... | @@ -95,7 +99,8 @@ class data extends filter { | ... | @@ -95,7 +99,8 @@ class data extends filter { |
95 | { | 99 | { |
96 | prop: "zl", | 100 | prop: "zl", |
97 | label: "坐落", | 101 | label: "坐落", |
98 | minWidth: '130' | 102 | width: '130', |
103 | showOverflowTooltip: true | ||
99 | }, | 104 | }, |
100 | { | 105 | { |
101 | label: '操作', | 106 | label: '操作', | ... | ... |
... | @@ -80,12 +80,14 @@ class data extends filter { | ... | @@ -80,12 +80,14 @@ class data extends filter { |
80 | { | 80 | { |
81 | prop: "bdcdyh", | 81 | prop: "bdcdyh", |
82 | label: "不动产单元号", | 82 | label: "不动产单元号", |
83 | minWidth: '150' | 83 | width: '150', |
84 | showOverflowTooltip: true | ||
84 | }, | 85 | }, |
85 | { | 86 | { |
86 | prop: "bdcqzh", | 87 | prop: "bdcqzh", |
87 | label: "不动产权证号", | 88 | label: "不动产权证号", |
88 | minWidth: '150' | 89 | width: '150', |
90 | showOverflowTooltip: true | ||
89 | }, | 91 | }, |
90 | { | 92 | { |
91 | prop: "qlrmc", | 93 | prop: "qlrmc", |
... | @@ -108,7 +110,8 @@ class data extends filter { | ... | @@ -108,7 +110,8 @@ class data extends filter { |
108 | { | 110 | { |
109 | prop: "zl", | 111 | prop: "zl", |
110 | label: "坐落", | 112 | label: "坐落", |
111 | minWidth: '150' | 113 | width: '150', |
114 | showOverflowTooltip: true | ||
112 | }, | 115 | }, |
113 | { | 116 | { |
114 | label: '操作', | 117 | label: '操作', | ... | ... |
1 | /* | 1 | /* |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-07-14 17:00:04 | 4 | * @LastEditTime: 2023-08-23 14:49:24 |
5 | */ | 5 | */ |
6 | import filter from '@/utils/filter.js' | 6 | import filter from '@/utils/filter.js' |
7 | let vm = null | 7 | let vm = null |
... | @@ -35,17 +35,6 @@ class data extends filter { | ... | @@ -35,17 +35,6 @@ class data extends filter { |
35 | <div> | 35 | <div> |
36 | <a style='color:#3498db;' v-show={scope.row.djblzt == 1}>{this.yWstatus(scope.row)}</a> | 36 | <a style='color:#3498db;' v-show={scope.row.djblzt == 1}>{this.yWstatus(scope.row)}</a> |
37 | <span v-show={scope.row.djblzt != 1}>{this.yWstatus(scope.row)}</span> | 37 | <span v-show={scope.row.djblzt != 1}>{this.yWstatus(scope.row)}</span> |
38 | {/* <a style='color:#3498db;' v-show={scope.row.djblzt == 1} >正在办理</a> | ||
39 | <span v-show={scope.row.zjgcdyzt == 1}>,在建工程抵押</span> | ||
40 | <span v-show={scope.row.ycfzt == 1}>,已预查封</span> | ||
41 | <span v-show={scope.row.ycfzt == 1}>,已预查封</span> | ||
42 | <span v-show={scope.row.cfzt == 1}>,已查封</span> | ||
43 | <span v-show={scope.row.diyizt == 1}>,已地役</span> | ||
44 | <span v-show={scope.row.yyzt == 1}>,异议中</span> | ||
45 | <span v-show={scope.row.xzzt == 1}>,已限制</span> | ||
46 | <span v-show={scope.row.ygmmzt == 1}>,已预告买卖</span> | ||
47 | <span v-show={scope.row.ygdyzt == 1}>,已预告抵押</span> | ||
48 | <span v-show={scope.row.dyzt == 1}>,已抵押</span> */} | ||
49 | </div> | 38 | </div> |
50 | ) | 39 | ) |
51 | } | 40 | } |
... | @@ -57,12 +46,14 @@ class data extends filter { | ... | @@ -57,12 +46,14 @@ class data extends filter { |
57 | { | 46 | { |
58 | prop: "bdcdyh", | 47 | prop: "bdcdyh", |
59 | label: "不动产单元号", | 48 | label: "不动产单元号", |
60 | minWidth: '150' | 49 | width: '150', |
50 | showOverflowTooltip: true | ||
61 | }, | 51 | }, |
62 | { | 52 | { |
63 | prop: "bdcqzh", | 53 | prop: "bdcqzh", |
64 | label: "不动产权证号", | 54 | label: "不动产权证号", |
65 | minWidth: '150' | 55 | width: '150', |
56 | showOverflowTooltip: true | ||
66 | }, | 57 | }, |
67 | { | 58 | { |
68 | prop: "qlrmc", | 59 | prop: "qlrmc", | ... | ... |
... | @@ -51,12 +51,14 @@ class data extends filter { | ... | @@ -51,12 +51,14 @@ class data extends filter { |
51 | { | 51 | { |
52 | prop: "bdcdyh", | 52 | prop: "bdcdyh", |
53 | label: "不动产单元号", | 53 | label: "不动产单元号", |
54 | minWidth: '150' | 54 | width: '150', |
55 | showOverflowTooltip: true | ||
55 | }, | 56 | }, |
56 | { | 57 | { |
57 | prop: "bdcqzh", | 58 | prop: "bdcqzh", |
58 | label: "不动产权证号", | 59 | label: "不动产权证号", |
59 | minWidth: '150' | 60 | width: '150', |
61 | showOverflowTooltip: true | ||
60 | }, | 62 | }, |
61 | { | 63 | { |
62 | prop: "gyqk", | 64 | prop: "gyqk", | ... | ... |
... | @@ -84,12 +84,14 @@ class data extends filter { | ... | @@ -84,12 +84,14 @@ class data extends filter { |
84 | { | 84 | { |
85 | prop: "bdcdyh", | 85 | prop: "bdcdyh", |
86 | label: "不动产单元号", | 86 | label: "不动产单元号", |
87 | minWidth: '150' | 87 | width: '150', |
88 | showOverflowTooltip: true | ||
88 | }, | 89 | }, |
89 | { | 90 | { |
90 | prop: "bdcqzh", | 91 | prop: "bdcqzh", |
91 | label: "不动产权证号", | 92 | label: "不动产权证号", |
92 | minWidth: '150' | 93 | width: '150', |
94 | showOverflowTooltip: true | ||
93 | }, | 95 | }, |
94 | { | 96 | { |
95 | prop: "qlrmc", | 97 | prop: "qlrmc", | ... | ... |
... | @@ -65,7 +65,8 @@ class data extends filter { | ... | @@ -65,7 +65,8 @@ class data extends filter { |
65 | { | 65 | { |
66 | prop: "bdcqzh", | 66 | prop: "bdcqzh", |
67 | label: "不动产权证号", | 67 | label: "不动产权证号", |
68 | minWidth: '120' | 68 | width: '150', |
69 | showOverflowTooltip: true | ||
69 | }, | 70 | }, |
70 | { | 71 | { |
71 | prop: "qlr", | 72 | prop: "qlr", | ... | ... |
-
Please register or sign in to post a comment