Merge branch 'dev'
Showing
21 changed files
with
100 additions
and
112 deletions
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-08-11 16:48:17 | 4 | * @LastEditTime: 2023-10-09 10:21:32 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <transition name="msgbox-fade" v-if="myShow"> | 7 | <transition name="msgbox-fade" v-if="myShow"> |
... | @@ -14,7 +14,7 @@ | ... | @@ -14,7 +14,7 @@ |
14 | </div> | 14 | </div> |
15 | <svg-icon icon-class='close' class="closeStyle" @click="onCancel" /> | 15 | <svg-icon icon-class='close' class="closeStyle" @click="onCancel" /> |
16 | </div> | 16 | </div> |
17 | <div class="mask-content" ref='contentRef' :style="{ 'height': contentHeight }"> | 17 | <div class="mask-content" ref='contentRef'> |
18 | <component :is="editItem" ref='childRef' @loading='loadingFn' :key="key" :formData='formData' /> | 18 | <component :is="editItem" ref='childRef' @loading='loadingFn' :key="key" :formData='formData' /> |
19 | </div> | 19 | </div> |
20 | <div class="ls-mask-footer" v-if='btnShow'> | 20 | <div class="ls-mask-footer" v-if='btnShow'> | ... | ... |
... | @@ -94,7 +94,10 @@ | ... | @@ -94,7 +94,10 @@ |
94 | }; | 94 | }; |
95 | }, | 95 | }, |
96 | created () { | 96 | created () { |
97 | this.loadData(); | 97 | this.loadData() |
98 | if (this.$parent.addRepairRecord) { | ||
99 | this.columns.unshift({ prop: "cz", label: "操作" }); | ||
100 | } | ||
98 | }, | 101 | }, |
99 | methods: { | 102 | methods: { |
100 | /** | 103 | /** |
... | @@ -102,9 +105,6 @@ | ... | @@ -102,9 +105,6 @@ |
102 | * @author: renchao | 105 | * @author: renchao |
103 | */ | 106 | */ |
104 | loadData () { | 107 | loadData () { |
105 | if (this.$parent.addRepairRecord) { | ||
106 | this.columns.unshift({ prop: "cz", label: "操作" }); | ||
107 | } | ||
108 | getCfdjList({ | 108 | getCfdjList({ |
109 | bdcdyid: this.bdcdyid, | 109 | bdcdyid: this.bdcdyid, |
110 | qllx: this.qllx, | 110 | qllx: this.qllx, | ... | ... |
... | @@ -91,7 +91,7 @@ | ... | @@ -91,7 +91,7 @@ |
91 | qsztList: datas.columns().qsztList, | 91 | qsztList: datas.columns().qsztList, |
92 | checkList: datas.columns().checkList, | 92 | checkList: datas.columns().checkList, |
93 | //传递参数 | 93 | //传递参数 |
94 | bdcdyid: this.$route.query.bdcdyid, | 94 | bdcdyid: this.$route.query.bdcdyid, |
95 | qllx: this.$route.query.qllx, | 95 | qllx: this.$route.query.qllx, |
96 | //列表数据 | 96 | //列表数据 |
97 | tableData: [], | 97 | tableData: [], |
... | @@ -102,7 +102,10 @@ | ... | @@ -102,7 +102,10 @@ |
102 | }; | 102 | }; |
103 | }, | 103 | }, |
104 | created () { | 104 | created () { |
105 | this.loadData(); | 105 | this.loadData() |
106 | if (this.$parent.addRepairRecord) { | ||
107 | this.columns.unshift({ prop: "cz", label: "操作" }); | ||
108 | } | ||
106 | }, | 109 | }, |
107 | methods: { | 110 | methods: { |
108 | /** | 111 | /** |
... | @@ -110,9 +113,6 @@ | ... | @@ -110,9 +113,6 @@ |
110 | * @author: renchao | 113 | * @author: renchao |
111 | */ | 114 | */ |
112 | loadData () { | 115 | loadData () { |
113 | if (this.$parent.addRepairRecord) { | ||
114 | this.columns.unshift({ prop: "cz", label: "操作" }); | ||
115 | } | ||
116 | getDiyaqList({ | 116 | getDiyaqList({ |
117 | bdcdyid: this.bdcdyid, | 117 | bdcdyid: this.bdcdyid, |
118 | qllx: this.qllx, | 118 | qllx: this.qllx, | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-08-25 17:12:43 | 4 | * @LastEditTime: 2023-10-09 10:35:11 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="djxxTable"> | 7 | <div class="djxxTable"> |
... | @@ -85,7 +85,7 @@ | ... | @@ -85,7 +85,7 @@ |
85 | qsztList: datas.columns().qsztList, | 85 | qsztList: datas.columns().qsztList, |
86 | checkList: datas.columns().checkList, | 86 | checkList: datas.columns().checkList, |
87 | //传递参数 | 87 | //传递参数 |
88 | bdcdyid: this.$route.query.bdcdyid, | 88 | bdcdyid: this.$route.query.bdcdyid, |
89 | qllx: this.$route.query.qllx, | 89 | qllx: this.$route.query.qllx, |
90 | //列表数据 | 90 | //列表数据 |
91 | tableData: [], | 91 | tableData: [], |
... | @@ -96,7 +96,10 @@ | ... | @@ -96,7 +96,10 @@ |
96 | }; | 96 | }; |
97 | }, | 97 | }, |
98 | created () { | 98 | created () { |
99 | this.loadData(); | 99 | this.loadData() |
100 | if (this.$parent.addRepairRecord) { | ||
101 | this.columns.unshift({ prop: "cz", label: "操作" }); | ||
102 | } | ||
100 | }, | 103 | }, |
101 | methods: { | 104 | methods: { |
102 | /** | 105 | /** |
... | @@ -104,9 +107,7 @@ | ... | @@ -104,9 +107,7 @@ |
104 | * @author: renchao | 107 | * @author: renchao |
105 | */ | 108 | */ |
106 | loadData () { | 109 | loadData () { |
107 | if (this.$parent.addRepairRecord) { | 110 | |
108 | this.columns.unshift({ prop: "cz", label: "操作" }); | ||
109 | } | ||
110 | getDiyiqList({ | 111 | getDiyiqList({ |
111 | bdcdyid: this.bdcdyid, | 112 | bdcdyid: this.bdcdyid, |
112 | qllx: this.qllx, | 113 | qllx: this.qllx, | ... | ... |
... | @@ -92,7 +92,7 @@ | ... | @@ -92,7 +92,7 @@ |
92 | qsztList: datas.columns().qsztList, | 92 | qsztList: datas.columns().qsztList, |
93 | checkList: datas.columns().checkList, | 93 | checkList: datas.columns().checkList, |
94 | //传递参数 | 94 | //传递参数 |
95 | bdcdyid: this.$route.query.bdcdyid, | 95 | bdcdyid: this.$route.query.bdcdyid, |
96 | qllx: this.$route.query.qllx, | 96 | qllx: this.$route.query.qllx, |
97 | //列表数据 | 97 | //列表数据 |
98 | tableData: [], | 98 | tableData: [], |
... | @@ -103,7 +103,10 @@ | ... | @@ -103,7 +103,10 @@ |
103 | }; | 103 | }; |
104 | }, | 104 | }, |
105 | created () { | 105 | created () { |
106 | this.loadData(); | 106 | this.loadData() |
107 | if (this.$parent.addRepairRecord) { | ||
108 | this.columns.unshift({ prop: "cz", label: "操作" }); | ||
109 | } | ||
107 | }, | 110 | }, |
108 | methods: { | 111 | methods: { |
109 | /** | 112 | /** |
... | @@ -111,9 +114,6 @@ | ... | @@ -111,9 +114,6 @@ |
111 | * @author: renchao | 114 | * @author: renchao |
112 | */ | 115 | */ |
113 | loadData () { | 116 | loadData () { |
114 | if (this.$parent.addRepairRecord) { | ||
115 | this.columns.unshift({ prop: "cz", label: "操作" }); | ||
116 | } | ||
117 | getFdcq2List({ | 117 | getFdcq2List({ |
118 | bdcdyid: this.bdcdyid, | 118 | bdcdyid: this.bdcdyid, |
119 | qllx: this.qllx, | 119 | qllx: this.qllx, | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-09-22 09:49:24 | 4 | * @LastEditTime: 2023-10-09 10:50:50 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="djxxTable"> | 7 | <div class="djxxTable"> |
8 | <djbDetail :title="title" :shows="shows" :propsParam="propsParam" | 8 | <djbDetail :title="title" ref="djbDetail" :shows="shows" :propsParam="propsParam" |
9 | :columns="columns" :tableData="tableData" /> | 9 | :columns="columns" :tableData="tableData" /> |
10 | </div> | 10 | </div> |
11 | </template> | 11 | </template> |
... | @@ -34,6 +34,9 @@ | ... | @@ -34,6 +34,9 @@ |
34 | }, | 34 | }, |
35 | created () { | 35 | created () { |
36 | this.loadData(); | 36 | this.loadData(); |
37 | if (this.$parent.addRepairRecord) { | ||
38 | this.columns.unshift({ prop: "cz", label: "操作" }); | ||
39 | } | ||
37 | }, | 40 | }, |
38 | methods: { | 41 | methods: { |
39 | /** | 42 | /** |
... | @@ -41,9 +44,6 @@ | ... | @@ -41,9 +44,6 @@ |
41 | * @author: renchao | 44 | * @author: renchao |
42 | */ | 45 | */ |
43 | loadData (checkList = []) { | 46 | loadData (checkList = []) { |
44 | if (this.$parent.addRepairRecord) { | ||
45 | this.columns.unshift({ prop: "cz", label: "操作" }); | ||
46 | } | ||
47 | getCfdjList({ | 47 | getCfdjList({ |
48 | bdcdyid: this.propsParam.bdcdyid, | 48 | bdcdyid: this.propsParam.bdcdyid, |
49 | qllx: this.propsParam.qllx, | 49 | qllx: this.propsParam.qllx, |
... | @@ -63,10 +63,9 @@ | ... | @@ -63,10 +63,9 @@ |
63 | } | 63 | } |
64 | }); | 64 | }); |
65 | if (this.tableData.length < datas.columns().emptycolNum) { | 65 | if (this.tableData.length < datas.columns().emptycolNum) { |
66 | this.emptycolNum = | 66 | this.$refs.djbDetail.emptycolNum = datas.columns().emptycolNum - this.tableData.length |
67 | datas.columns().emptycolNum - this.tableData.length; | ||
68 | } else { | 67 | } else { |
69 | this.emptycolNum = 0; | 68 | this.$refs.djbDetail.emptycolNum = 0 |
70 | } | 69 | } |
71 | } | 70 | } |
72 | }) | 71 | }) | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-09-19 09:47:05 | 4 | * @LastEditTime: 2023-10-09 10:18:46 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="clxx"> | 7 | <div class="clxx"> |
8 | <!-- 材料预览 --> | 8 | <!-- 材料预览 --> |
9 | <div class="clyl-box"> | 9 | <div class="clyl-box"> |
10 | <div class="menu-tree"> | 10 | <div class="menu-tree"> |
11 | <!-- <el-button | ||
12 | type="primary" | ||
13 | native-type="submit" | ||
14 | @click="viewDetail" | ||
15 | style="width: 100%; margin-top: 10px" v-if="tableData.length > 0">申请材料目录</el-button> --> | ||
16 | <div class="item"> | 11 | <div class="item"> |
17 | 材料目录({{ tableData.length }}) | 12 | 材料目录({{ tableData.length }}) |
18 | <div style="margin-top: 10px"> | 13 | <div style="margin-top: 10px"> | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-09-22 09:50:12 | 4 | * @LastEditTime: 2023-10-09 10:44:26 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="djxxTable"> | 7 | <div class="djxxTable"> |
8 | <djbDetail :title="title" :shows="shows" :propsParam="propsParam" | 8 | <djbDetail :title="title" ref="djbDetail" :shows="shows" :propsParam="propsParam" |
9 | :columns="columns" :tableData="tableData" /> | 9 | :columns="columns" :tableData="tableData" /> |
10 | </div> | 10 | </div> |
11 | </template> | 11 | </template> |
... | @@ -34,6 +34,9 @@ | ... | @@ -34,6 +34,9 @@ |
34 | }, | 34 | }, |
35 | created () { | 35 | created () { |
36 | this.loadData(); | 36 | this.loadData(); |
37 | if (this.$parent.addRepairRecord) { | ||
38 | this.columns.unshift({ prop: "cz", label: "操作" }); | ||
39 | } | ||
37 | }, | 40 | }, |
38 | methods: { | 41 | methods: { |
39 | /** | 42 | /** |
... | @@ -41,9 +44,6 @@ | ... | @@ -41,9 +44,6 @@ |
41 | * @author: renchao | 44 | * @author: renchao |
42 | */ | 45 | */ |
43 | loadData (checkList = []) { | 46 | loadData (checkList = []) { |
44 | if (this.$parent.addRepairRecord) { | ||
45 | this.columns.unshift({ prop: "cz", label: "操作" }); | ||
46 | } | ||
47 | getDiyaqList({ | 47 | getDiyaqList({ |
48 | bdcdyid: this.propsParam.bdcdyid, | 48 | bdcdyid: this.propsParam.bdcdyid, |
49 | qllx: this.propsParam.qllx, | 49 | qllx: this.propsParam.qllx, |
... | @@ -57,10 +57,9 @@ | ... | @@ -57,10 +57,9 @@ |
57 | item.dybdclx = getDictLeabel(item.dybdclx, "A27"); | 57 | item.dybdclx = getDictLeabel(item.dybdclx, "A27"); |
58 | }); | 58 | }); |
59 | if (this.tableData.length < datas.columns().emptycolNum) { | 59 | if (this.tableData.length < datas.columns().emptycolNum) { |
60 | this.emptycolNum = | 60 | this.$refs.djbDetail.emptycolNum = datas.columns().emptycolNum - this.tableData.length; |
61 | datas.columns().emptycolNum - this.tableData.length; | ||
62 | } else { | 61 | } else { |
63 | this.emptycolNum = 0; | 62 | this.$refs.djbDetail.emptycolNum = 0 |
64 | } | 63 | } |
65 | } | 64 | } |
66 | }) | 65 | }) | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: miaofang | 3 | * @Autor: miaofang |
4 | * @LastEditTime: 2023-09-22 09:50:28 | 4 | * @LastEditTime: 2023-10-09 10:44:45 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="djxxTable"> | 7 | <div class="djxxTable"> |
8 | <djbDetail :title="title" :shows="shows" :propsParam="propsParam" | 8 | <djbDetail :title="title" ref="djbDetail" :shows="shows" :propsParam="propsParam" |
9 | :columns="columns" :tableData="tableData" /> | 9 | :columns="columns" :tableData="tableData" /> |
10 | </div> | 10 | </div> |
11 | </template> | 11 | </template> |
... | @@ -33,13 +33,13 @@ | ... | @@ -33,13 +33,13 @@ |
33 | }; | 33 | }; |
34 | }, | 34 | }, |
35 | created () { | 35 | created () { |
36 | this.loadData(); | 36 | this.loadData() |
37 | if (this.$parent.addRepairRecord) { | ||
38 | this.columns.unshift({ prop: "cz", label: "操作" }); | ||
39 | } | ||
37 | }, | 40 | }, |
38 | methods: { | 41 | methods: { |
39 | loadData (checkList = []) { | 42 | loadData (checkList = []) { |
40 | if (this.$parent.addRepairRecord) { | ||
41 | this.columns.unshift({ prop: "cz", label: "操作" }); | ||
42 | } | ||
43 | getDiyiqList({ | 43 | getDiyiqList({ |
44 | bdcdyid: this.propsParam.bdcdyid, | 44 | bdcdyid: this.propsParam.bdcdyid, |
45 | qllx: this.propsParam.qllx, | 45 | qllx: this.propsParam.qllx, |
... | @@ -53,10 +53,9 @@ | ... | @@ -53,10 +53,9 @@ |
53 | item.dybdclx = getDictLeabel(item.dybdclx, "A27"); | 53 | item.dybdclx = getDictLeabel(item.dybdclx, "A27"); |
54 | }); | 54 | }); |
55 | if (this.tableData.length < datas.columns().emptycolNum) { | 55 | if (this.tableData.length < datas.columns().emptycolNum) { |
56 | this.emptycolNum = | 56 | this.$refs.djbDetail.emptycolNum = datas.columns().emptycolNum - this.tableData.length; |
57 | datas.columns().emptycolNum - this.tableData.length; | ||
58 | } else { | 57 | } else { |
59 | this.emptycolNum = 0; | 58 | this.$refs.djbDetail.emptycolNum = 0 |
60 | } | 59 | } |
61 | } | 60 | } |
62 | }) | 61 | }) | ... | ... |
... | @@ -67,12 +67,11 @@ | ... | @@ -67,12 +67,11 @@ |
67 | if (res.code === 200) { | 67 | if (res.code === 200) { |
68 | this.info = res.result; | 68 | this.info = res.result; |
69 | } | 69 | } |
70 | }); | 70 | }) |
71 | }, | 71 | } |
72 | }, | 72 | } |
73 | }; | 73 | } |
74 | </script> | 74 | </script> |
75 | |||
76 | <style lang="scss" scoped> | 75 | <style lang="scss" scoped> |
77 | .djbfm { | 76 | .djbfm { |
78 | width: 100%; | 77 | width: 100%; | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: miaofang | 3 | * @Autor: miaofang |
4 | * @LastEditTime: 2023-09-21 11:05:33 | 4 | * @LastEditTime: 2023-10-09 10:35:56 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="djxxTable"> | 7 | <div class="djxxTable"> |
... | @@ -149,7 +149,10 @@ | ... | @@ -149,7 +149,10 @@ |
149 | }; | 149 | }; |
150 | }, | 150 | }, |
151 | created () { | 151 | created () { |
152 | this.loadData(); | 152 | this.loadData() |
153 | if (this.$parent.addRepairRecord) { | ||
154 | this.columns.unshift({ prop: "cz", label: "操作" }); | ||
155 | } | ||
153 | }, | 156 | }, |
154 | methods: { | 157 | methods: { |
155 | /** | 158 | /** |
... | @@ -186,9 +189,6 @@ | ... | @@ -186,9 +189,6 @@ |
186 | * @author: miaofang | 189 | * @author: miaofang |
187 | */ | 190 | */ |
188 | loadData () { | 191 | loadData () { |
189 | if (this.$parent.addRepairRecord) { | ||
190 | this.columns.unshift({ prop: "cz", label: "操作" }); | ||
191 | } | ||
192 | getFdcq1List({ | 192 | getFdcq1List({ |
193 | bdcdyid: this.propsParam.bdcdyid, | 193 | bdcdyid: this.propsParam.bdcdyid, |
194 | qllx: this.propsParam.qllx, | 194 | qllx: this.propsParam.qllx, | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: miaofang | 3 | * @Autor: miaofang |
4 | * @LastEditTime: 2023-09-22 09:49:44 | 4 | * @LastEditTime: 2023-10-09 10:46:18 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="djxxTable"> | 7 | <div class="djxxTable"> |
8 | <djbDetail :title="title" :shows="shows" :propsParam="propsParam" | 8 | <djbDetail :title="title" ref="djbDetail" :shows="shows" :propsParam="propsParam" |
9 | :columns="columns" :tableData="tableData" /> | 9 | :columns="columns" :tableData="tableData" /> |
10 | </div> | 10 | </div> |
11 | </template> | 11 | </template> |
... | @@ -32,7 +32,10 @@ | ... | @@ -32,7 +32,10 @@ |
32 | }; | 32 | }; |
33 | }, | 33 | }, |
34 | created () { | 34 | created () { |
35 | this.loadData(); | 35 | this.loadData() |
36 | if (this.$parent.addRepairRecord) { | ||
37 | this.columns.unshift({ prop: "cz", label: "操作" }); | ||
38 | } | ||
36 | }, | 39 | }, |
37 | methods: { | 40 | methods: { |
38 | /** | 41 | /** |
... | @@ -40,9 +43,6 @@ | ... | @@ -40,9 +43,6 @@ |
40 | * @author: miaofang | 43 | * @author: miaofang |
41 | */ | 44 | */ |
42 | loadData (checkList = []) { | 45 | loadData (checkList = []) { |
43 | if (this.$parent.addRepairRecord) { | ||
44 | this.columns.unshift({ prop: "cz", label: "操作" }); | ||
45 | } | ||
46 | getFdcq2List({ | 46 | getFdcq2List({ |
47 | bdcdyid: this.propsParam.bdcdyid, | 47 | bdcdyid: this.propsParam.bdcdyid, |
48 | qllx: this.propsParam.qllx, | 48 | qllx: this.propsParam.qllx, |
... | @@ -55,10 +55,9 @@ | ... | @@ -55,10 +55,9 @@ |
55 | item.sjlx = getSjlx(item.sjlx); | 55 | item.sjlx = getSjlx(item.sjlx); |
56 | }); | 56 | }); |
57 | if (this.tableData.length < datas.columns().emptycolNum) { | 57 | if (this.tableData.length < datas.columns().emptycolNum) { |
58 | this.emptycolNum = | 58 | this.$refs.djbDetail.emptycolNum = datas.columns().emptycolNum - this.tableData.length; |
59 | datas.columns().emptycolNum - this.tableData.length; | ||
60 | } else { | 59 | } else { |
61 | this.emptycolNum = 0; | 60 | this.$refs.djbDetail.emptycolNum = 0 |
62 | } | 61 | } |
63 | } | 62 | } |
64 | }) | 63 | }) | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: miaofang | 3 | * @Autor: miaofang |
4 | * @LastEditTime: 2023-09-22 09:49:31 | 4 | * @LastEditTime: 2023-10-09 10:46:58 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="djxxTable"> | 7 | <div class="djxxTable"> |
8 | <djbDetail :title="title" :shows="shows" :propsParam="propsParam" | 8 | <djbDetail :title="title" ref="djbDetail" :shows="shows" :propsParam="propsParam" |
9 | :columns="columns" :tableData="tableData" /> | 9 | :columns="columns" :tableData="tableData" /> |
10 | </div> | 10 | </div> |
11 | </template> | 11 | </template> |
... | @@ -53,10 +53,9 @@ | ... | @@ -53,10 +53,9 @@ |
53 | item.sjlx = getSjlx(item.sjlx); | 53 | item.sjlx = getSjlx(item.sjlx); |
54 | }); | 54 | }); |
55 | if (this.tableData.length < datas.columns().emptycolNum) { | 55 | if (this.tableData.length < datas.columns().emptycolNum) { |
56 | this.emptycolNum = | 56 | this.$refs.djbDetail.emptycolNum = datas.columns().emptycolNum - this.tableData.length; |
57 | datas.columns().emptycolNum - this.tableData.length; | ||
58 | } else { | 57 | } else { |
59 | this.emptycolNum = 0; | 58 | this.$refs.djbDetail.emptycolNum = 0 |
60 | } | 59 | } |
61 | } | 60 | } |
62 | }) | 61 | }) | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: miaofang | 3 | * @Autor: miaofang |
4 | * @LastEditTime: 2023-09-22 09:53:54 | 4 | * @LastEditTime: 2023-10-09 10:48:11 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="djxxTable"> | 7 | <div class="djxxTable"> |
8 | <djbDetail :title="title" :shows="shows" :propsParam="propsParam" | 8 | <djbDetail :title="title" ref="djbDetail" :shows="shows" :propsParam="propsParam" |
9 | :columns="columns" :tableData="tableData" /> | 9 | :columns="columns" :tableData="tableData" /> |
10 | </div> | 10 | </div> |
11 | </template> | 11 | </template> |
... | @@ -62,13 +62,12 @@ | ... | @@ -62,13 +62,12 @@ |
62 | item.qy = getDictLeabel(item.qy, "A52"); | 62 | item.qy = getDictLeabel(item.qy, "A52"); |
63 | }); | 63 | }); |
64 | if (this.tableData.length < datas.columns().emptycolNum) { | 64 | if (this.tableData.length < datas.columns().emptycolNum) { |
65 | this.emptycolNum = | 65 | this.$refs.djbDetail.emptycolNum = datas.columns().emptycolNum - this.tableData.length |
66 | datas.columns().emptycolNum - this.tableData.length; | ||
67 | } else { | 66 | } else { |
68 | this.emptycolNum = 0; | 67 | this.$refs.djbDetail.emptycolNum = 0 |
69 | } | 68 | } |
70 | } | 69 | } |
71 | }); | 70 | }) |
72 | } | 71 | } |
73 | } | 72 | } |
74 | } | 73 | } | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: miaofang | 3 | * @Autor: miaofang |
4 | * @LastEditTime: 2023-09-22 09:53:31 | 4 | * @LastEditTime: 2023-10-09 10:52:16 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="djxxTable"> | 7 | <div class="djxxTable"> |
8 | <djbDetail :title="title" :shows="shows" :propsParam="propsParam" | 8 | <djbDetail :title="title" ref="djbDetail" :shows="shows" :propsParam="propsParam" |
9 | :columns="columns" :tableData="tableData" /> | 9 | :columns="columns" :tableData="tableData" /> |
10 | </div> | 10 | </div> |
11 | </template> | 11 | </template> |
... | @@ -65,10 +65,9 @@ | ... | @@ -65,10 +65,9 @@ |
65 | item.sjlx = getSjlx(item.sjlx); | 65 | item.sjlx = getSjlx(item.sjlx); |
66 | }); | 66 | }); |
67 | if (this.tableData.length < datas.columns().emptycolNum) { | 67 | if (this.tableData.length < datas.columns().emptycolNum) { |
68 | this.emptycolNum = | 68 | this.$refs.djbDetail.emptycolNum = datas.columns().emptycolNum - this.tableData.length |
69 | datas.columns().emptycolNum - this.tableData.length; | ||
70 | } else { | 69 | } else { |
71 | this.emptycolNum = 0 | 70 | this.$refs.djbDetail.emptycolNum = 0 |
72 | } | 71 | } |
73 | } | 72 | } |
74 | }) | 73 | }) | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: miaofang | 3 | * @Autor: miaofang |
4 | * @LastEditTime: 2023-09-22 09:53:19 | 4 | * @LastEditTime: 2023-10-09 10:48:55 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="djxxTable"> | 7 | <div class="djxxTable"> |
8 | <djbDetail :title="title" :shows="shows" :propsParam="propsParam" | 8 | <djbDetail :title="title" ref="djbDetail" :shows="shows" :propsParam="propsParam" |
9 | :columns="columns" :tableData="tableData" /> | 9 | :columns="columns" :tableData="tableData" /> |
10 | </div> | 10 | </div> |
11 | </template> | 11 | </template> |
... | @@ -55,16 +55,15 @@ | ... | @@ -55,16 +55,15 @@ |
55 | item.sjlx = getSjlx(item.sjlx); | 55 | item.sjlx = getSjlx(item.sjlx); |
56 | }); | 56 | }); |
57 | if (this.tableData.length < datas.columns().emptycolNum) { | 57 | if (this.tableData.length < datas.columns().emptycolNum) { |
58 | this.emptycolNum = | 58 | this.$refs.djbDetail.emptycolNum = datas.columns().emptycolNum - this.tableData.length |
59 | datas.columns().emptycolNum - this.tableData.length; | ||
60 | } else { | 59 | } else { |
61 | this.emptycolNum = 0; | 60 | this.$refs.djbDetail.emptycolNum = 0 |
62 | } | 61 | } |
63 | } | 62 | } |
64 | }); | 63 | }) |
65 | } | 64 | } |
66 | }, | 65 | } |
67 | }; | 66 | } |
68 | </script> | 67 | </script> |
69 | 68 | ||
70 | <style lang="scss" scoped> | 69 | <style lang="scss" scoped> | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: miaofang | 3 | * @Autor: miaofang |
4 | * @LastEditTime: 2023-09-18 13:06:42 | 4 | * @LastEditTime: 2023-10-09 10:54:12 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="djxxTable"> | 7 | <div class="djxxTable"> |
8 | <djbDetail :title="title" :shows="shows" :propsParam="propsParam" | 8 | <djbDetail :title="title" ref="djbDetail" :shows="shows" :propsParam="propsParam" |
9 | :columns="columns" :tableData="tableData" /> | 9 | :columns="columns" :tableData="tableData" /> |
10 | </div> | 10 | </div> |
11 | </template> | 11 | </template> |
... | @@ -63,10 +63,9 @@ | ... | @@ -63,10 +63,9 @@ |
63 | item.sjlx = getSjlx(item.sjlx); | 63 | item.sjlx = getSjlx(item.sjlx); |
64 | }); | 64 | }); |
65 | if (this.tableData.length < datas.columns().emptycolNum) { | 65 | if (this.tableData.length < datas.columns().emptycolNum) { |
66 | this.emptycolNum = | 66 | this.$refs.djbDetail.emptycolNum = datas.columns().emptycolNum - this.tableData.length |
67 | datas.columns().emptycolNum - this.tableData.length; | ||
68 | } else { | 67 | } else { |
69 | this.emptycolNum = 0; | 68 | this.$refs.djbDetail.emptycolNum = 0 |
70 | } | 69 | } |
71 | } | 70 | } |
72 | }) | 71 | }) | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: miaofang | 3 | * @Autor: miaofang |
4 | * @LastEditTime: 2023-09-22 09:52:50 | 4 | * @LastEditTime: 2023-10-09 10:49:37 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="djxxTable"> | 7 | <div class="djxxTable"> |
8 | <djbDetail :title="title" :shows="shows" :propsParam="propsParam" | 8 | <djbDetail :title="title" ref="djbDetail" :shows="shows" :propsParam="propsParam" |
9 | :columns="columns" :tableData="tableData" /> | 9 | :columns="columns" :tableData="tableData" /> |
10 | </div> | 10 | </div> |
11 | </template> | 11 | </template> |
... | @@ -57,10 +57,9 @@ | ... | @@ -57,10 +57,9 @@ |
57 | item.dybdclx = getDictLeabel(item.dybdclx, "A27"); | 57 | item.dybdclx = getDictLeabel(item.dybdclx, "A27"); |
58 | }); | 58 | }); |
59 | if (this.tableData.length < datas.columns().emptycolNum) { | 59 | if (this.tableData.length < datas.columns().emptycolNum) { |
60 | this.emptycolNum = | 60 | this.$refs.djbDetail.emptycolNum = datas.columns().emptycolNum - this.tableData.length |
61 | datas.columns().emptycolNum - this.tableData.length; | ||
62 | } else { | 61 | } else { |
63 | this.emptycolNum = 0 | 62 | this.$refs.djbDetail.emptycolNum = 0 |
64 | } | 63 | } |
65 | } | 64 | } |
66 | }) | 65 | }) | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: miaofang | 3 | * @Autor: miaofang |
4 | * @LastEditTime: 2023-09-22 09:52:37 | 4 | * @LastEditTime: 2023-10-09 10:53:14 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="djxxTable"> | 7 | <div class="djxxTable"> |
8 | <djbDetail :title="title" :shows="shows" :propsParam="propsParam" | 8 | <djbDetail :title="title" ref="djbDetail" :shows="shows" :propsParam="propsParam" |
9 | :columns="columns" :tableData="tableData" /> | 9 | :columns="columns" :tableData="tableData" /> |
10 | </div> | 10 | </div> |
11 | </template> | 11 | </template> |
... | @@ -56,10 +56,9 @@ | ... | @@ -56,10 +56,9 @@ |
56 | item.dybdclx = getDictLeabel(item.dybdclx, "A27"); | 56 | item.dybdclx = getDictLeabel(item.dybdclx, "A27"); |
57 | }); | 57 | }); |
58 | if (this.tableData.length < datas.columns().emptycolNum) { | 58 | if (this.tableData.length < datas.columns().emptycolNum) { |
59 | this.emptycolNum = | 59 | this.$refs.djbDetail.emptycolNum = datas.columns().emptycolNum - this.tableData.length |
60 | datas.columns().emptycolNum - this.tableData.length; | ||
61 | } else { | 60 | } else { |
62 | this.emptycolNum = 0; | 61 | this.$refs.djbDetail.emptycolNum = 0 |
63 | } | 62 | } |
64 | } | 63 | } |
65 | }) | 64 | }) | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-09-26 15:16:04 | 4 | * @LastEditTime: 2023-10-09 09:50:37 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <!-- 受理信息 --> | 7 | <!-- 受理信息 --> |
... | @@ -75,6 +75,7 @@ | ... | @@ -75,6 +75,7 @@ |
75 | v-model="ruleForm.zdjbxx.qlxz" | 75 | v-model="ruleForm.zdjbxx.qlxz" |
76 | noOptionsText="暂无数据" | 76 | noOptionsText="暂无数据" |
77 | :default-expand-level="1" | 77 | :default-expand-level="1" |
78 | :disabled="!viewEdit" | ||
78 | placeholder="" | 79 | placeholder="" |
79 | :normalizer="normalizer" | 80 | :normalizer="normalizer" |
80 | :show-count="true" | 81 | :show-count="true" | ... | ... |
-
Please register or sign in to post a comment