--no commit message
Showing
9 changed files
with
150 additions
and
11 deletions
... | @@ -11,7 +11,7 @@ | ... | @@ -11,7 +11,7 @@ |
11 | import { mapGetters } from 'vuex' | 11 | import { mapGetters } from 'vuex' |
12 | import { getSzRecordList } from "@/api/bdcqz.js"; | 12 | import { getSzRecordList } from "@/api/bdcqz.js"; |
13 | import table from "@/utils/mixin/table"; | 13 | import table from "@/utils/mixin/table"; |
14 | import { datas } from "../../javascript/szxxdata"; | 14 | import { szxxdatas } from "../../javascript/szxxdata"; |
15 | export default { | 15 | export default { |
16 | components: { | 16 | components: { |
17 | 17 | ||
... | @@ -34,7 +34,7 @@ | ... | @@ -34,7 +34,7 @@ |
34 | details: {}, | 34 | details: {}, |
35 | tableData: { | 35 | tableData: { |
36 | total: 0, | 36 | total: 0, |
37 | columns: datas.columns(), | 37 | columns: szxxdatas.columns(), |
38 | data: [], | 38 | data: [], |
39 | }, | 39 | }, |
40 | } | 40 | } | ... | ... |
This diff is collapsed.
Click to expand it.
... | @@ -102,9 +102,8 @@ export default { | ... | @@ -102,9 +102,8 @@ export default { |
102 | handler(val) { | 102 | handler(val) { |
103 | this.propsParam = this.$attrs; | 103 | this.propsParam = this.$attrs; |
104 | this.dataset() | 104 | this.dataset() |
105 | if(this.$parent.dqhj){ | ||
106 | this.getShList(); | 105 | this.getShList(); |
107 | } | 106 | |
108 | }, | 107 | }, |
109 | deep: true, | 108 | deep: true, |
110 | immediate: true, | 109 | immediate: true, | ... | ... |
... | @@ -104,7 +104,6 @@ export default { | ... | @@ -104,7 +104,6 @@ export default { |
104 | watch: { | 104 | watch: { |
105 | workFresh: { | 105 | workFresh: { |
106 | handler(newVal, oldVal) { | 106 | handler(newVal, oldVal) { |
107 | console.log(newVal, "newVal"); | ||
108 | if (newVal) this.list(); | 107 | if (newVal) this.list(); |
109 | }, | 108 | }, |
110 | }, | 109 | }, |
... | @@ -146,7 +145,7 @@ export default { | ... | @@ -146,7 +145,7 @@ export default { |
146 | "证书证明预览", | 145 | "证书证明预览", |
147 | "workflow/components/dialog/zsyl", | 146 | "workflow/components/dialog/zsyl", |
148 | { bdcqz: item, bsmSlsq: this.$route.query.bsmSlsq }, | 147 | { bdcqz: item, bsmSlsq: this.$route.query.bsmSlsq }, |
149 | "76%", | 148 | '1230px', |
150 | true | 149 | true |
151 | ); | 150 | ); |
152 | } else { | 151 | } else { | ... | ... |
1 | /* | ||
2 | * @Description: | ||
3 | * @Autor: renchao | ||
4 | * @LastEditTime: 2023-08-29 12:55:07 | ||
5 | */ | ||
6 | import filter from '@/utils/filter.js' | ||
7 | let vm = null | ||
8 | |||
9 | const sendThis = (_this) => { | ||
10 | vm = _this | ||
11 | } | ||
12 | class data extends filter { | ||
13 | constructor() { | ||
14 | super() | ||
15 | } | ||
16 | columns () { | ||
17 | return { | ||
18 | //发证列表 | ||
19 | fzgrid: [ | ||
20 | { | ||
21 | label: '序号', | ||
22 | type: 'index', | ||
23 | width: '50' | ||
24 | }, | ||
25 | { | ||
26 | prop: "fzrmc", | ||
27 | label: "发证人" | ||
28 | }, | ||
29 | { | ||
30 | prop: "bdcqzlx", | ||
31 | label: "不动产权证类型", | ||
32 | width: '130', | ||
33 | render: (h, scope) => { | ||
34 | return ( | ||
35 | <div> | ||
36 | <span v-show={scope.row.bdcqzlx == '1'}>不动产权证书</span> | ||
37 | <span v-show={scope.row.bdcqzlx == '2'}>不动产登记证明</span> | ||
38 | </div> | ||
39 | ) | ||
40 | } | ||
41 | }, | ||
42 | { | ||
43 | label: "权利类型", | ||
44 | width: '100', | ||
45 | render: (h, scope) => { | ||
46 | return ( | ||
47 | <el-tooltip effect="dark" content={scope.row.qllx} placement="top" popper-class="tooltip-width "> | ||
48 | <span class="ellipsis-table"> {scope.row.qllx}</span> | ||
49 | </el-tooltip> | ||
50 | ) | ||
51 | } | ||
52 | }, | ||
53 | { | ||
54 | label: "面积(㎡)", | ||
55 | width: '100', | ||
56 | render: (h, scope) => { | ||
57 | return ( | ||
58 | <el-tooltip effect="dark" content={scope.row.mj} placement="top" popper-class="tooltip-width "> | ||
59 | <span class="ellipsis-table"> {scope.row.mj}</span> | ||
60 | </el-tooltip> | ||
61 | ) | ||
62 | } | ||
63 | }, | ||
64 | { | ||
65 | prop: "fzsj", | ||
66 | label: "发证时间", | ||
67 | width: '140', | ||
68 | }, | ||
69 | { | ||
70 | prop: "lzrxm", | ||
71 | label: "领证人姓名" | ||
72 | }, | ||
73 | ], | ||
74 | } | ||
75 | } | ||
76 | } | ||
77 | let datas = new data() | ||
78 | export { | ||
79 | datas, | ||
80 | sendThis | ||
81 | } |
... | @@ -16,6 +16,7 @@ class data extends filter { | ... | @@ -16,6 +16,7 @@ class data extends filter { |
16 | columns () { | 16 | columns () { |
17 | return [ | 17 | return [ |
18 | { | 18 | { |
19 | width:"50px", | ||
19 | label: '序号', | 20 | label: '序号', |
20 | type: 'index', | 21 | type: 'index', |
21 | render: (h, scope) => { | 22 | render: (h, scope) => { |
... | @@ -59,8 +60,8 @@ class data extends filter { | ... | @@ -59,8 +60,8 @@ class data extends filter { |
59 | ] | 60 | ] |
60 | } | 61 | } |
61 | } | 62 | } |
62 | let datas = new data() | 63 | let szxxdatas = new data() |
63 | export { | 64 | export { |
64 | datas, | 65 | szxxdatas, |
65 | sendThis | 66 | sendThis |
66 | } | 67 | } | ... | ... |
1 | /* | ||
2 | * @Description: | ||
3 | * @Autor: renchao | ||
4 | * @LastEditTime: 2023-05-17 10:39:03 | ||
5 | */ | ||
6 | import filter from '@/utils/filter.js' | ||
7 | let vm = null | ||
8 | |||
9 | const sendThis = (_this) => { | ||
10 | vm = _this | ||
11 | } | ||
12 | class data extends filter { | ||
13 | constructor() { | ||
14 | super() | ||
15 | } | ||
16 | columns () { | ||
17 | return [ | ||
18 | { | ||
19 | width:"50px", | ||
20 | label: '序号', | ||
21 | type: 'index', | ||
22 | render: (h, scope) => { | ||
23 | return ( | ||
24 | <div> | ||
25 | {scope.$index + 1} | ||
26 | </div> | ||
27 | ) | ||
28 | } | ||
29 | }, | ||
30 | { | ||
31 | prop: "szry", | ||
32 | label: "缮证人员", | ||
33 | }, | ||
34 | { | ||
35 | prop: "szsj", | ||
36 | label: "缮证时间", | ||
37 | }, | ||
38 | { | ||
39 | label: "是否作废", | ||
40 | render: (h, scope) => { | ||
41 | if (scope.row.sfzf == '0') { | ||
42 | return <div>否</div> | ||
43 | } else { | ||
44 | return <div>已作废</div> | ||
45 | } | ||
46 | } | ||
47 | }, | ||
48 | { | ||
49 | prop: "bz", | ||
50 | label: "备注信息", | ||
51 | }, | ||
52 | ] | ||
53 | } | ||
54 | } | ||
55 | let szxxdatas = new data() | ||
56 | export { | ||
57 | szxxdatas, | ||
58 | sendThis | ||
59 | } |
... | @@ -126,7 +126,7 @@ export default { | ... | @@ -126,7 +126,7 @@ export default { |
126 | this.$popupDialog("证书证明预览", "workflow/components/dialog/zsyl", { | 126 | this.$popupDialog("证书证明预览", "workflow/components/dialog/zsyl", { |
127 | bsmSlsq: this.bsmSlsq, | 127 | bsmSlsq: this.bsmSlsq, |
128 | entryType: '1' | 128 | entryType: '1' |
129 | }, '1210px', true) | 129 | }, '1230px', true) |
130 | break; | 130 | break; |
131 | case "B6": | 131 | case "B6": |
132 | //根据编号获取对应信息 | 132 | //根据编号获取对应信息 | ... | ... |
... | @@ -104,10 +104,10 @@ | ... | @@ -104,10 +104,10 @@ |
104 | */ | 104 | */ |
105 | openDialog (item) { | 105 | openDialog (item) { |
106 | bdcqzPreview(item).then(res => { | 106 | bdcqzPreview(item).then(res => { |
107 | this.$popupDialog("证书证明预览", "workflow/components/dialog/zsyl", { | 107 | this.$popupDialog("证书证明预览", "workflow/components/dialog/zsylxq", { |
108 | bsmSlsq: item.bsmSlsq, | 108 | bsmSlsq: item.bsmSlsq, |
109 | bsmBdcqz: item.bsmBdcqz | 109 | bsmBdcqz: item.bsmBdcqz |
110 | }, '1210px', true) | 110 | }, '1230px', true) |
111 | }) | 111 | }) |
112 | }, | 112 | }, |
113 | /** | 113 | /** | ... | ... |
-
Please register or sign in to post a comment