Merge branch 'dev'
Showing
4 changed files
with
21 additions
and
22 deletions
1 | <!-- | 1 | <!-- |
2 | * @Description: workFrame左侧菜单列表-普通 | 2 | * @Description: workFrame左侧菜单列表-普通 |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2024-02-01 09:41:06 | 4 | * @LastEditTime: 2024-02-01 16:57:55 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="leftmenu" :class="{ 'animation-map-drawer': isShowdrawer }"> | 7 | <div class="leftmenu" :class="{ 'animation-map-drawer': isShowdrawer }"> |
... | @@ -77,7 +77,8 @@ | ... | @@ -77,7 +77,8 @@ |
77 | this.loadBdcdylist(); | 77 | this.loadBdcdylist(); |
78 | }, | 78 | }, |
79 | computed: { | 79 | computed: { |
80 | ...mapGetters(['isRefresh']) | 80 | ...mapGetters(['isRefresh', 'menuRefresh']), |
81 | |||
81 | }, | 82 | }, |
82 | watch: { | 83 | watch: { |
83 | isRefresh: { | 84 | isRefresh: { |
... | @@ -87,6 +88,12 @@ | ... | @@ -87,6 +88,12 @@ |
87 | } | 88 | } |
88 | }, | 89 | }, |
89 | immediate: true | 90 | immediate: true |
91 | }, | ||
92 | menuRefresh: { | ||
93 | handler (newValue, oldValue) { | ||
94 | this.loadBdcdylist(true) | ||
95 | }, | ||
96 | immediate: true | ||
90 | } | 97 | } |
91 | }, | 98 | }, |
92 | methods: { | 99 | methods: { | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: workFrame左侧菜单列表-分割 | 2 | * @Description: workFrame左侧菜单列表-分割 |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2024-01-25 14:21:44 | 4 | * @LastEditTime: 2024-02-01 16:58:20 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="leftmenu" :class="{ 'animation-map-drawer': isShowdrawer }"> | 7 | <div class="leftmenu" :class="{ 'animation-map-drawer': isShowdrawer }"> |
... | @@ -91,7 +91,7 @@ | ... | @@ -91,7 +91,7 @@ |
91 | this.loadBdcdylist(); | 91 | this.loadBdcdylist(); |
92 | }, | 92 | }, |
93 | computed: { | 93 | computed: { |
94 | ...mapGetters(['isRefresh']) | 94 | ...mapGetters(['isRefresh', 'menuRefresh']) |
95 | }, | 95 | }, |
96 | watch: { | 96 | watch: { |
97 | isRefresh: { | 97 | isRefresh: { |
... | @@ -99,6 +99,12 @@ | ... | @@ -99,6 +99,12 @@ |
99 | if (newVal) this.loadBdcdylist(true) | 99 | if (newVal) this.loadBdcdylist(true) |
100 | }, | 100 | }, |
101 | immediate: true | 101 | immediate: true |
102 | }, | ||
103 | menuRefresh: { | ||
104 | handler (newValue, oldValue) { | ||
105 | this.loadBdcdylist(true) | ||
106 | }, | ||
107 | immediate: true | ||
102 | } | 108 | } |
103 | }, | 109 | }, |
104 | methods: { | 110 | methods: { | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2024-02-01 14:02:37 | 4 | * @LastEditTime: 2024-02-01 16:57:18 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="container"> | 7 | <div class="container"> |
... | @@ -39,8 +39,8 @@ | ... | @@ -39,8 +39,8 @@ |
39 | <div class="containerFrame"> | 39 | <div class="containerFrame"> |
40 | <!-- 左侧菜单栏 区分业务--> | 40 | <!-- 左侧菜单栏 区分业务--> |
41 | <segmentMenu v-if="['A0320099', 'A0330099','A04300S1','A04200S2','A0830S1'].includes(slsq.djqxbm)" | 41 | <segmentMenu v-if="['A0320099', 'A0330099','A04300S1','A04200S2','A0830S1'].includes(slsq.djqxbm)" |
42 | @getCurrentSelectProps="getCurrentSelectProps" :key="menuKey" /> | 42 | @getCurrentSelectProps="getCurrentSelectProps" /> |
43 | <ordinaryMenu v-else @getCurrentSelectProps="getCurrentSelectProps" :key="menuKey" /> | 43 | <ordinaryMenu v-else @getCurrentSelectProps="getCurrentSelectProps" /> |
44 | <div class="leftCon"> | 44 | <div class="leftCon"> |
45 | <!-- 分屏左侧预览 --> | 45 | <!-- 分屏左侧预览 --> |
46 | <div v-if="splitScreen" class="splitScreen-con"> | 46 | <div v-if="splitScreen" class="splitScreen-con"> |
... | @@ -132,7 +132,6 @@ | ... | @@ -132,7 +132,6 @@ |
132 | mixins: [WorkFlow, publicFlow], | 132 | mixins: [WorkFlow, publicFlow], |
133 | data () { | 133 | data () { |
134 | return { | 134 | return { |
135 | menuKey: 0, | ||
136 | //受理申请标识码 | 135 | //受理申请标识码 |
137 | bsmSlsq: this.$route.query.bsmSlsq, | 136 | bsmSlsq: this.$route.query.bsmSlsq, |
138 | //当前流程所在环节 | 137 | //当前流程所在环节 |
... | @@ -164,19 +163,6 @@ | ... | @@ -164,19 +163,6 @@ |
164 | shows: false | 163 | shows: false |
165 | } | 164 | } |
166 | }, | 165 | }, |
167 | computed: { | ||
168 | menuRefresh () { | ||
169 | return store.state.user.menuRefresh | ||
170 | } | ||
171 | }, | ||
172 | watch: { | ||
173 | menuRefresh: { | ||
174 | handler (newValue, oldValue) { | ||
175 | this.menuKey++ | ||
176 | }, | ||
177 | immediate: true | ||
178 | } | ||
179 | }, | ||
180 | mounted () { | 166 | mounted () { |
181 | this.$store.dispatch("user/refreshPage", false); | 167 | this.$store.dispatch("user/refreshPage", false); |
182 | //添加页面监听事件 | 168 | //添加页面监听事件 | ... | ... |
... | @@ -56,7 +56,7 @@ | ... | @@ -56,7 +56,7 @@ |
56 | 查封不动产列表 | 56 | 查封不动产列表 |
57 | <div class="triangle"></div> | 57 | <div class="triangle"></div> |
58 | </div> | 58 | </div> |
59 | <cfBdcdyTable :tableData="ruleForm.ssQlxxList" /> | 59 | <cfBdcdyTable :tableData="ruleForm.ztQlxxList" /> |
60 | <div class="slxx_title title-block"> | 60 | <div class="slxx_title title-block"> |
61 | 批量查封信息 | 61 | 批量查封信息 |
62 | <div class="triangle"></div> | 62 | <div class="triangle"></div> | ... | ... |
-
Please register or sign in to post a comment