Merge branch 'dev' of http://yun.pashanhoo.com:9090/bdc/bdcdj-web into dev
Showing
26 changed files
with
105 additions
and
58 deletions
... | @@ -173,10 +173,15 @@ export default { | ... | @@ -173,10 +173,15 @@ export default { |
173 | .bgc{ | 173 | .bgc{ |
174 | 174 | ||
175 | td{ | 175 | td{ |
176 | background-color: rgb(182, 203, 207) !important; | 176 | // background-color: rgb(182, 203, 207) !important; |
177 | 177 | ||
178 | } | 178 | } |
179 | } | 179 | } |
180 | .xxTable tr td{ | ||
181 | |||
182 | min-width: 520px!important; | ||
183 | |||
184 | } | ||
180 | .red{ | 185 | .red{ |
181 | color: red; | 186 | color: red; |
182 | } | 187 | } | ... | ... |
... | @@ -72,6 +72,8 @@ export default { | ... | @@ -72,6 +72,8 @@ export default { |
72 | //左侧树形结构数据 | 72 | //左侧树形结构数据 |
73 | treedata: [], | 73 | treedata: [], |
74 | sfqdata: [], | 74 | sfqdata: [], |
75 | keyy: "", | ||
76 | iskey: "", | ||
75 | activeName: 0, | 77 | activeName: 0, |
76 | // 查询参数 | 78 | // 查询参数 |
77 | queryForm: {}, | 79 | queryForm: {}, |
... | @@ -170,16 +172,16 @@ export default { | ... | @@ -170,16 +172,16 @@ export default { |
170 | }).then((res) => { | 172 | }).then((res) => { |
171 | if (res.code === 200) { | 173 | if (res.code === 200) { |
172 | if (this.sfqdata.some((item) => item.bdcdyid === val.bdcdyid)) { | 174 | if (this.sfqdata.some((item) => item.bdcdyid === val.bdcdyid)) { |
173 | let index= this.sfqdata.findIndex((item) => { | 175 | let index = this.sfqdata.findIndex((item) => { |
174 | return item.bdcdyid ==val.bdcdyid; | 176 | return item.bdcdyid == val.bdcdyid; |
175 | }); | 177 | }); |
176 | this.activeName=index | 178 | this.activeName = index |
177 | this.setstyle(index,0); | 179 | this.setstyle(index, 0, this.iskey); |
178 | } else { | 180 | } else { |
179 | this.sfqdata.push(loadsfqData(res.result, val.bdcdyh, val.bdcdyid)); | 181 | this.sfqdata.push(loadsfqData(res.result, val.bdcdyh, val.bdcdyid)); |
180 | this.activeName = this.sfqdata.length - 1; | 182 | this.activeName = this.sfqdata.length - 1; |
181 | this.$nextTick(() => { | 183 | this.$nextTick(() => { |
182 | this.setstyle(this.sfqdata.length - 1,0); | 184 | this.setstyle(this.sfqdata.length - 1, 0, this.iskey); |
183 | }) | 185 | }) |
184 | } | 186 | } |
185 | } | 187 | } |
... | @@ -187,8 +189,8 @@ export default { | ... | @@ -187,8 +189,8 @@ export default { |
187 | this.currentSelectProps = { | 189 | this.currentSelectProps = { |
188 | bdcdyid: val.bdcdyid, | 190 | bdcdyid: val.bdcdyid, |
189 | bdcdyh: val.bdcdyh, | 191 | bdcdyh: val.bdcdyh, |
190 | qllx: this.formData.qllx, | 192 | qllx: this.currentSelectProps.qllx, |
191 | bsmQlxx: this.formData.bsmQlxx, | 193 | bsmQlxx: this.currentSelectProps.bsmQlxx, |
192 | }; | 194 | }; |
193 | }, | 195 | }, |
194 | /** | 196 | /** |
... | @@ -201,9 +203,7 @@ export default { | ... | @@ -201,9 +203,7 @@ export default { |
201 | bdcdyh: val, | 203 | bdcdyh: val, |
202 | }).then((res) => { | 204 | }).then((res) => { |
203 | if (res.code === 200) { | 205 | if (res.code === 200) { |
204 | this.treedata = loadTreeData( | 206 | this.treedata = loadTreeData(val); |
205 | val | ||
206 | ); | ||
207 | this.sfqdata.push( | 207 | this.sfqdata.push( |
208 | loadsfqData(res.result, val, this.currentSelectProps.bdcdyid) | 208 | loadsfqData(res.result, val, this.currentSelectProps.bdcdyid) |
209 | ); | 209 | ); |
... | @@ -211,11 +211,19 @@ export default { | ... | @@ -211,11 +211,19 @@ export default { |
211 | this.defaultNode = getNode( | 211 | this.defaultNode = getNode( |
212 | this.currentSelectProps.qllx, | 212 | this.currentSelectProps.qllx, |
213 | { linShi: 0, xianShi: 0, liShi: 0 }, | 213 | { linShi: 0, xianShi: 0, liShi: 0 }, |
214 | "" | 214 | res.result.bdcdylx|| "" |
215 | ); | 215 | ); |
216 | this.$refs.tree.setCurrentKey(this.defaultNode.id); //data[0].id为默认选中的节点 | 216 | this.sfqdata[0].children.forEach((item, index) => { |
217 | this.loadComponent(this.defaultNode.form); | 217 | if (item.id == this.defaultNode.id) { |
218 | this.setstyle(0,0); | 218 | this.iskey = index |
219 | } | ||
220 | }) | ||
221 | // this.$refs.tree.setCurrentKey(this.defaultNode.id); //data[0].id为默认选中的节点 | ||
222 | // this.loadComponent(this.defaultNode.form); | ||
223 | |||
224 | this.setstyle(0, 0, this.iskey); | ||
225 | |||
226 | |||
219 | }); | 227 | }); |
220 | } | 228 | } |
221 | }); | 229 | }); |
... | @@ -244,20 +252,26 @@ export default { | ... | @@ -244,20 +252,26 @@ export default { |
244 | * @author: renchao | 252 | * @author: renchao |
245 | * 设置样式和点击定位到当前功能 | 253 | * 设置样式和点击定位到当前功能 |
246 | */ | 254 | */ |
247 | setstyle(newindex,index) { | 255 | setstyle (newindex, index, key) { |
248 | if(index==0){ | 256 | if (key != undefined || this.keyy == index) { |
249 | this.loadComponent(this.$refs.sfq[newindex].$children[0].$attrs.re.form); | 257 | if (key != undefined) { |
258 | this.keyy = key | ||
250 | } | 259 | } |
251 | let dpme = this.$refs.sfq[newindex].$children[0].$el | 260 | this.loadComponent(this.$refs.sfq[newindex].$children[this.keyy].$attrs.re.form); |
252 | if (index != 0) { | 261 | let dpme = this.$refs.sfq[newindex].$children[this.keyy].$el |
253 | dpme.style.backgroundColor = "#ffffff"; | ||
254 | dpme.style.color = "black"; | ||
255 | dpme.style.border = "none"; | ||
256 | } else { | ||
257 | dpme.style.backgroundColor = "#f5f5f5"; | 262 | dpme.style.backgroundColor = "#f5f5f5"; |
258 | dpme.style.color = "#0079fe"; | 263 | dpme.style.color = "#0079fe"; |
259 | dpme.style.borderRight = "4px solid #0079fe"; | 264 | dpme.style.borderRight = "4px solid #0079fe"; |
265 | } else { | ||
266 | let dpme = this.$refs.sfq[newindex].$children[this.keyy].$el | ||
267 | dpme.style.backgroundColor = "#ffffff"; | ||
268 | dpme.style.color = "black"; | ||
269 | dpme.style.border = "none"; | ||
260 | } | 270 | } |
271 | |||
272 | |||
273 | |||
274 | |||
261 | }, | 275 | }, |
262 | /** | 276 | /** |
263 | * @description: addlist | 277 | * @description: addlist |
... | @@ -265,13 +279,22 @@ export default { | ... | @@ -265,13 +279,22 @@ export default { |
265 | * @author: renchao | 279 | * @author: renchao |
266 | * 新增列表功能 | 280 | * 新增列表功能 |
267 | */ | 281 | */ |
268 | addlist(data, index) { | 282 | addlist (data, index) { |
269 | let newindex= this.sfqdata.findIndex((item) => { | 283 | if (index != undefined) { |
270 | return item.bdcdyid ==data.bdcdyid; | 284 | let newindex = this.sfqdata.findIndex((item) => { |
285 | return item.bdcdyid == data.bdcdyid; | ||
271 | }); | 286 | }); |
272 | this.setstyle(newindex,index); | 287 | this.setstyle(newindex, index); |
273 | this.currentSelectProps.bdcdyid = data.bdcdyid; | 288 | this.currentSelectProps.bdcdyid = data.bdcdyid; |
274 | this.loadComponent(data.form); | 289 | this.loadComponent(data.form); |
290 | } else { | ||
291 | let newindex = this.sfqdata.findIndex((item) => { | ||
292 | return item.bdcdyid == data.bdcdyid; | ||
293 | }); | ||
294 | this.setstyle(newindex, index, this.iskey); | ||
295 | this.currentSelectProps.bdcdyid = data.bdcdyid; | ||
296 | } | ||
297 | |||
275 | }, | 298 | }, |
276 | /** | 299 | /** |
277 | * @description: loadComponent | 300 | * @description: loadComponent | ... | ... |
... | @@ -239,7 +239,7 @@ export default { | ... | @@ -239,7 +239,7 @@ export default { |
239 | * @author: renchao | 239 | * @author: renchao |
240 | */ | 240 | */ |
241 | add(val) { | 241 | add(val) { |
242 | if (val != "") { | 242 | if (val != ""&&this.tableData.length>0) { |
243 | this.$set(this.tableData[this.currentindex], "shyj", val); | 243 | this.$set(this.tableData[this.currentindex], "shyj", val); |
244 | } | 244 | } |
245 | }, | 245 | }, | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-08-23 15:07:51 | 4 | * @LastEditTime: 2023-08-28 09:56:03 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="from-clues"> | 7 | <div class="from-clues"> |
... | @@ -349,4 +349,16 @@ | ... | @@ -349,4 +349,16 @@ |
349 | </script> | 349 | </script> |
350 | <style scoped lang="scss"> | 350 | <style scoped lang="scss"> |
351 | @import "~@/styles/public.scss"; | 351 | @import "~@/styles/public.scss"; |
352 | /deep/ .back{ | ||
353 | display: inline-block; | ||
354 | font-size: 14px; | ||
355 | width: 20px; | ||
356 | height: 20px; | ||
357 | border-radius: 10px; | ||
358 | line-height: 20px; | ||
359 | margin-right: 4px; | ||
360 | text-align: center; | ||
361 | background-color: rgba(171,12,12,0.1); | ||
362 | color: #B44747; | ||
363 | } | ||
352 | </style> | 364 | </style> | ... | ... |
1 | /* | 1 | /* |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-08-28 15:33:05 | 4 | * @LastEditTime: 2023-08-28 09:01:00 |
5 | */ | 5 | */ |
6 | import filter from '@/utils/filter.js' | 6 | import filter from '@/utils/filter.js' |
7 | let vm = null | 7 | let vm = null |
... | @@ -48,7 +48,14 @@ class data extends filter { | ... | @@ -48,7 +48,14 @@ class data extends filter { |
48 | { | 48 | { |
49 | prop: "zbhj", | 49 | prop: "zbhj", |
50 | label: "在办环节", | 50 | label: "在办环节", |
51 | minWidth: '80' | 51 | width: '80', |
52 | render: (h, scope) => { | ||
53 | if (scope.row.stepnum > 1) { | ||
54 | return <span><span class="back">退</span>{scope.row.zbhj}</span> | ||
55 | } else { | ||
56 | return <span>{scope.row.zbhj}</span> | ||
57 | } | ||
58 | } | ||
52 | }, | 59 | }, |
53 | { | 60 | { |
54 | label: '业务号', | 61 | label: '业务号', | ... | ... |
... | @@ -9,7 +9,7 @@ | ... | @@ -9,7 +9,7 @@ |
9 | label-width="120px"> | 9 | label-width="120px"> |
10 | <div class="slxx_con"> | 10 | <div class="slxx_con"> |
11 | <div class="slxx_title title-block"> | 11 | <div class="slxx_title title-block"> |
12 | 受理信息 | 12 | 申请业务信息 |
13 | <div class="triangle"></div> | 13 | <div class="triangle"></div> |
14 | </div> | 14 | </div> |
15 | <el-row :gutter="10"> | 15 | <el-row :gutter="10"> | ... | ... |
... | @@ -14,7 +14,7 @@ | ... | @@ -14,7 +14,7 @@ |
14 | label-width="120px"> | 14 | label-width="120px"> |
15 | <div class="slxx_con"> | 15 | <div class="slxx_con"> |
16 | <div class="slxx_title title-block"> | 16 | <div class="slxx_title title-block"> |
17 | 受理信息 | 17 | 申请业务信息 |
18 | <div class="triangle"></div> | 18 | <div class="triangle"></div> |
19 | </div> | 19 | </div> |
20 | <el-row :gutter="10"> | 20 | <el-row :gutter="10"> | ... | ... |
... | @@ -17,7 +17,7 @@ | ... | @@ -17,7 +17,7 @@ |
17 | > | 17 | > |
18 | <div class="slxx_con" :class="flag ? 'formMarginBot0' : ''"> | 18 | <div class="slxx_con" :class="flag ? 'formMarginBot0' : ''"> |
19 | <div class="slxx_title title-block"> | 19 | <div class="slxx_title title-block"> |
20 | 受理信息 | 20 | 申请业务信息 |
21 | <div class="triangle"></div> | 21 | <div class="triangle"></div> |
22 | </div> | 22 | </div> |
23 | <el-row :gutter="10"> | 23 | <el-row :gutter="10"> | ... | ... |
... | @@ -15,7 +15,7 @@ | ... | @@ -15,7 +15,7 @@ |
15 | > | 15 | > |
16 | <div class="slxx_con" :class="flag ? 'formMarginBot0' : ''"> | 16 | <div class="slxx_con" :class="flag ? 'formMarginBot0' : ''"> |
17 | <div class="slxx_title title-block"> | 17 | <div class="slxx_title title-block"> |
18 | 受理信息 | 18 | 申请业务信息 |
19 | <div class="triangle"></div> | 19 | <div class="triangle"></div> |
20 | </div> | 20 | </div> |
21 | <el-row :gutter="10" v-if="ruleForm.slsq"> | 21 | <el-row :gutter="10" v-if="ruleForm.slsq"> |
... | @@ -69,7 +69,7 @@ | ... | @@ -69,7 +69,7 @@ |
69 | </el-col> | 69 | </el-col> |
70 | <el-col :span="8"> | 70 | <el-col :span="8"> |
71 | <el-form-item label="坐落:"> | 71 | <el-form-item label="坐落:"> |
72 | <el-input v-model="ruleForm.sldy.zl"></el-input> | 72 | <el-input maxlength="100" v-model="ruleForm.sldy.zl"></el-input> |
73 | </el-form-item> | 73 | </el-form-item> |
74 | </el-col> | 74 | </el-col> |
75 | </el-row> | 75 | </el-row> | ... | ... |
... | @@ -14,7 +14,7 @@ | ... | @@ -14,7 +14,7 @@ |
14 | label-width="120px"> | 14 | label-width="120px"> |
15 | <div class="slxx_con" :class="flag ? 'formMarginBot0' : ''"> | 15 | <div class="slxx_con" :class="flag ? 'formMarginBot0' : ''"> |
16 | <div class="slxx_title title-block"> | 16 | <div class="slxx_title title-block"> |
17 | 受理信息 | 17 | 申请业务信息 |
18 | <div class="triangle"></div> | 18 | <div class="triangle"></div> |
19 | </div> | 19 | </div> |
20 | <el-row :gutter="10" v-if="ruleForm.slsq"> | 20 | <el-row :gutter="10" v-if="ruleForm.slsq"> |
... | @@ -68,7 +68,7 @@ | ... | @@ -68,7 +68,7 @@ |
68 | </el-col> | 68 | </el-col> |
69 | <el-col :span="8"> | 69 | <el-col :span="8"> |
70 | <el-form-item label="坐落:"> | 70 | <el-form-item label="坐落:"> |
71 | <el-input v-model="ruleForm.sldy.zl" disabled></el-input> | 71 | <el-input maxlength="100" v-model="ruleForm.sldy.zl" disabled></el-input> |
72 | </el-form-item> | 72 | </el-form-item> |
73 | </el-col> | 73 | </el-col> |
74 | </el-row> | 74 | </el-row> | ... | ... |
... | @@ -15,7 +15,7 @@ | ... | @@ -15,7 +15,7 @@ |
15 | > | 15 | > |
16 | <div class="slxx_con" :class="flag ? 'formMarginBot0' : ''"> | 16 | <div class="slxx_con" :class="flag ? 'formMarginBot0' : ''"> |
17 | <div class="slxx_title title-block"> | 17 | <div class="slxx_title title-block"> |
18 | 受理信息 | 18 | 申请业务信息 |
19 | <div class="triangle"></div> | 19 | <div class="triangle"></div> |
20 | </div> | 20 | </div> |
21 | <el-row :gutter="10" v-if="ruleForm.slsq"> | 21 | <el-row :gutter="10" v-if="ruleForm.slsq"> | ... | ... |
... | @@ -15,7 +15,7 @@ | ... | @@ -15,7 +15,7 @@ |
15 | > | 15 | > |
16 | <div class="slxx_con" :class="flag ? 'formMarginBot0' : ''"> | 16 | <div class="slxx_con" :class="flag ? 'formMarginBot0' : ''"> |
17 | <div class="slxx_title title-block"> | 17 | <div class="slxx_title title-block"> |
18 | 受理信息 | 18 | 申请业务信息 |
19 | <div class="triangle"></div> | 19 | <div class="triangle"></div> |
20 | </div> | 20 | </div> |
21 | <el-row :gutter="10" v-if="ruleForm.slsq"> | 21 | <el-row :gutter="10" v-if="ruleForm.slsq"> | ... | ... |
... | @@ -16,7 +16,7 @@ | ... | @@ -16,7 +16,7 @@ |
16 | > | 16 | > |
17 | <div class="slxx_con" :class="flag ? 'formMarginBot0' : ''"> | 17 | <div class="slxx_con" :class="flag ? 'formMarginBot0' : ''"> |
18 | <div class="slxx_title title-block"> | 18 | <div class="slxx_title title-block"> |
19 | 受理信息 | 19 | 申请业务信息 |
20 | <div class="triangle"></div> | 20 | <div class="triangle"></div> |
21 | </div> | 21 | </div> |
22 | <el-row :gutter="10"> | 22 | <el-row :gutter="10"> | ... | ... |
... | @@ -17,7 +17,7 @@ | ... | @@ -17,7 +17,7 @@ |
17 | label-width="120px"> | 17 | label-width="120px"> |
18 | <div class="slxx_con" v-if="isShow" :class="flag ? 'formMarginBot0' : ''"> | 18 | <div class="slxx_con" v-if="isShow" :class="flag ? 'formMarginBot0' : ''"> |
19 | <div class="slxx_title title-block"> | 19 | <div class="slxx_title title-block"> |
20 | 受理信息 | 20 | 申请业务信息 |
21 | <div class="triangle"></div> | 21 | <div class="triangle"></div> |
22 | </div> | 22 | </div> |
23 | <el-row :gutter="10"> | 23 | <el-row :gutter="10"> |
... | @@ -70,8 +70,8 @@ | ... | @@ -70,8 +70,8 @@ |
70 | </el-form-item> | 70 | </el-form-item> |
71 | </el-col> | 71 | </el-col> |
72 | <el-col :span="8"> | 72 | <el-col :span="8"> |
73 | <el-form-item label="权利性质:"> | 73 | <el-form-item label="权利性质1:"> |
74 | <el-input v-model="ruleForm.zdjbxx.qlxzmc"></el-input> | 74 | <el-input maxlength="25" v-model="ruleForm.zdjbxx.qlxzmc"></el-input> |
75 | </el-form-item> | 75 | </el-form-item> |
76 | </el-col> | 76 | </el-col> |
77 | </el-row> | 77 | </el-row> |
... | @@ -121,7 +121,7 @@ | ... | @@ -121,7 +121,7 @@ |
121 | 121 | ||
122 | <el-col :span="16"> | 122 | <el-col :span="16"> |
123 | <el-form-item label="坐落:"> | 123 | <el-form-item label="坐落:"> |
124 | <el-input v-model="ruleForm.sldy.zl"></el-input> | 124 | <el-input maxlength="100" v-model="ruleForm.sldy.zl"></el-input> |
125 | </el-form-item> | 125 | </el-form-item> |
126 | </el-col> | 126 | </el-col> |
127 | </el-row> | 127 | </el-row> | ... | ... |
... | @@ -17,7 +17,7 @@ | ... | @@ -17,7 +17,7 @@ |
17 | > | 17 | > |
18 | <div class="slxx_con" :class="flag ? 'formMarginBot0' : ''"> | 18 | <div class="slxx_con" :class="flag ? 'formMarginBot0' : ''"> |
19 | <div class="slxx_title title-block"> | 19 | <div class="slxx_title title-block"> |
20 | 受理信息 | 20 | 申请业务信息 |
21 | <div class="triangle"></div> | 21 | <div class="triangle"></div> |
22 | </div> | 22 | </div> |
23 | <el-row :gutter="10"> | 23 | <el-row :gutter="10"> | ... | ... |
... | @@ -14,7 +14,7 @@ | ... | @@ -14,7 +14,7 @@ |
14 | label-width="140px"> | 14 | label-width="140px"> |
15 | <div class="slxx_con" :class="flag ? 'formMarginBot0' : ''"> | 15 | <div class="slxx_con" :class="flag ? 'formMarginBot0' : ''"> |
16 | <div class="slxx_title title-block"> | 16 | <div class="slxx_title title-block"> |
17 | 受理信息 | 17 | 申请业务信息 |
18 | <div class="triangle"></div> | 18 | <div class="triangle"></div> |
19 | </div> | 19 | </div> |
20 | <el-row :gutter="10" v-if="ruleForm.slsq"> | 20 | <el-row :gutter="10" v-if="ruleForm.slsq"> | ... | ... |
... | @@ -12,7 +12,7 @@ | ... | @@ -12,7 +12,7 @@ |
12 | > | 12 | > |
13 | <div class="slxx_con" :class="flag ? 'formMarginBot0' : ''"> | 13 | <div class="slxx_con" :class="flag ? 'formMarginBot0' : ''"> |
14 | <div class="slxx_title title-block"> | 14 | <div class="slxx_title title-block"> |
15 | 受理信息 | 15 | 申请业务信息 |
16 | <div class="triangle"></div> | 16 | <div class="triangle"></div> |
17 | </div> | 17 | </div> |
18 | <el-row :gutter="10"> | 18 | <el-row :gutter="10"> | ... | ... |
... | @@ -12,7 +12,7 @@ | ... | @@ -12,7 +12,7 @@ |
12 | > | 12 | > |
13 | <div class="slxx_con" :class="flag ? 'formMarginBot0' : ''"> | 13 | <div class="slxx_con" :class="flag ? 'formMarginBot0' : ''"> |
14 | <div class="slxx_title title-block"> | 14 | <div class="slxx_title title-block"> |
15 | 受理信息 | 15 | 申请业务信息 |
16 | <div class="triangle"></div> | 16 | <div class="triangle"></div> |
17 | </div> | 17 | </div> |
18 | <el-row :gutter="10"> | 18 | <el-row :gutter="10"> | ... | ... |
... | @@ -14,7 +14,7 @@ | ... | @@ -14,7 +14,7 @@ |
14 | label-width="140px"> | 14 | label-width="140px"> |
15 | <div class="slxx_con" :class="flag ? 'formMarginBot0' : ''"> | 15 | <div class="slxx_con" :class="flag ? 'formMarginBot0' : ''"> |
16 | <div class="slxx_title title-block"> | 16 | <div class="slxx_title title-block"> |
17 | 受理信息 | 17 | 申请业务信息 |
18 | <div class="triangle"></div> | 18 | <div class="triangle"></div> |
19 | </div> | 19 | </div> |
20 | <el-row :gutter="10" v-if="ruleForm.slsq"> | 20 | <el-row :gutter="10" v-if="ruleForm.slsq"> | ... | ... |
... | @@ -17,7 +17,7 @@ | ... | @@ -17,7 +17,7 @@ |
17 | > | 17 | > |
18 | <div class="slxx_con" v-if="isShow" :class="flag ? 'formMarginBot0' : ''"> | 18 | <div class="slxx_con" v-if="isShow" :class="flag ? 'formMarginBot0' : ''"> |
19 | <div class="slxx_title title-block"> | 19 | <div class="slxx_title title-block"> |
20 | 受理信息 | 20 | 申请业务信息 |
21 | <div class="triangle"></div> | 21 | <div class="triangle"></div> |
22 | </div> | 22 | </div> |
23 | <el-row :gutter="10"> | 23 | <el-row :gutter="10"> | ... | ... |
... | @@ -12,7 +12,7 @@ | ... | @@ -12,7 +12,7 @@ |
12 | > | 12 | > |
13 | <div class="slxx_con" :class="flag ? 'formMarginBot0' : ''"> | 13 | <div class="slxx_con" :class="flag ? 'formMarginBot0' : ''"> |
14 | <div class="slxx_title title-block"> | 14 | <div class="slxx_title title-block"> |
15 | 受理信息 | 15 | 申请业务信息 |
16 | <div class="triangle"></div> | 16 | <div class="triangle"></div> |
17 | </div> | 17 | </div> |
18 | <el-row :gutter="10" v-if="ruleForm.slsq"> | 18 | <el-row :gutter="10" v-if="ruleForm.slsq"> | ... | ... |
... | @@ -12,7 +12,7 @@ | ... | @@ -12,7 +12,7 @@ |
12 | > | 12 | > |
13 | <div class="slxx_con" :class="flag ? 'formMarginBot0' : ''"> | 13 | <div class="slxx_con" :class="flag ? 'formMarginBot0' : ''"> |
14 | <div class="slxx_title title-block"> | 14 | <div class="slxx_title title-block"> |
15 | 受理信息 | 15 | 申请业务信息 |
16 | <div class="triangle"></div> | 16 | <div class="triangle"></div> |
17 | </div> | 17 | </div> |
18 | <el-row :gutter="10" v-if="ruleForm.slsq"> | 18 | <el-row :gutter="10" v-if="ruleForm.slsq"> | ... | ... |
... | @@ -12,7 +12,7 @@ | ... | @@ -12,7 +12,7 @@ |
12 | > | 12 | > |
13 | <div class="slxx_con" :class="flag ? 'formMarginBot0' : ''"> | 13 | <div class="slxx_con" :class="flag ? 'formMarginBot0' : ''"> |
14 | <div class="slxx_title title-block"> | 14 | <div class="slxx_title title-block"> |
15 | 受理信息 | 15 | 申请业务信息 |
16 | <div class="triangle"></div> | 16 | <div class="triangle"></div> |
17 | </div> | 17 | </div> |
18 | <el-row :gutter="10" v-if="ruleForm.slsq"> | 18 | <el-row :gutter="10" v-if="ruleForm.slsq"> | ... | ... |
... | @@ -9,7 +9,7 @@ | ... | @@ -9,7 +9,7 @@ |
9 | > | 9 | > |
10 | <div class="slxx_con" :class="flag ? 'formMarginBot0' : ''"> | 10 | <div class="slxx_con" :class="flag ? 'formMarginBot0' : ''"> |
11 | <div class="slxx_title title-block"> | 11 | <div class="slxx_title title-block"> |
12 | 受理信息 | 12 | 申请业务信息 |
13 | <div class="triangle"></div> | 13 | <div class="triangle"></div> |
14 | </div> | 14 | </div> |
15 | <el-row :gutter="10" v-if="ruleForm.flow"> | 15 | <el-row :gutter="10" v-if="ruleForm.flow"> | ... | ... |
... | @@ -12,7 +12,7 @@ | ... | @@ -12,7 +12,7 @@ |
12 | > | 12 | > |
13 | <div class="slxx_con" :class="flag ? 'formMarginBot0' : ''"> | 13 | <div class="slxx_con" :class="flag ? 'formMarginBot0' : ''"> |
14 | <div class="slxx_title title-block"> | 14 | <div class="slxx_title title-block"> |
15 | 受理信息 | 15 | 申请业务信息 |
16 | <div class="triangle"></div> | 16 | <div class="triangle"></div> |
17 | </div> | 17 | </div> |
18 | <el-row :gutter="10"> | 18 | <el-row :gutter="10"> | ... | ... |
-
Please register or sign in to post a comment