style:土地模块
Showing
2 changed files
with
6 additions
and
3 deletions
... | @@ -31,6 +31,8 @@ export default { | ... | @@ -31,6 +31,8 @@ export default { |
31 | rightButtonList: [], | 31 | rightButtonList: [], |
32 | //批量按钮名称 | 32 | //批量按钮名称 |
33 | batchButtonName: '', | 33 | batchButtonName: '', |
34 | // 受理申请信息 | ||
35 | slsq: {} | ||
34 | } | 36 | } |
35 | }, | 37 | }, |
36 | computed: { | 38 | computed: { |
... | @@ -57,6 +59,7 @@ export default { | ... | @@ -57,6 +59,7 @@ export default { |
57 | if (res.code === 200) { | 59 | if (res.code === 200) { |
58 | this.leftButtonList = res.result.button; | 60 | this.leftButtonList = res.result.button; |
59 | this.rightButtonList = res.result.operation; | 61 | this.rightButtonList = res.result.operation; |
62 | this.slsq = res.result.slsq | ||
60 | } | 63 | } |
61 | }) | 64 | }) |
62 | }, | 65 | }, | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-05-18 14:58:55 | 4 | * @LastEditTime: 2023-05-22 09:45:59 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="container"> | 7 | <div class="container"> |
... | @@ -26,8 +26,8 @@ | ... | @@ -26,8 +26,8 @@ |
26 | <!-- 内容框架 --> | 26 | <!-- 内容框架 --> |
27 | <div class="containerFrame"> | 27 | <div class="containerFrame"> |
28 | <!-- 左侧菜单栏 区分业务--> | 28 | <!-- 左侧菜单栏 区分业务--> |
29 | <ordinaryMenu @getCurrentSelectProps="getCurrentSelectProps" /> | 29 | <segmentMenu v-if="slsq.djqxbm == 'A0320099' || slsq.djqxbm == 'A0330099'" @getCurrentSelectProps="getCurrentSelectProps" /> |
30 | <!-- <segmentMenu @getCurrentSelectProps="getCurrentSelectProps" /> --> | 30 | <ordinaryMenu v-else @getCurrentSelectProps="getCurrentSelectProps" /> |
31 | <div class="leftCon"> | 31 | <div class="leftCon"> |
32 | <!-- 分屏左侧预览 --> | 32 | <!-- 分屏左侧预览 --> |
33 | <div v-if="splitScreen" class="splitScreen-con"> | 33 | <div v-if="splitScreen" class="splitScreen-con"> | ... | ... |
-
Please register or sign in to post a comment