style:修改选择不动产单元
Showing
4 changed files
with
22 additions
and
3 deletions
src/api/config.js
0 → 100644
1 | import dialogBox from '@/components/dialogBox/dialogBox.vue' | 1 | /* |
2 | * @Description: 引入公共组件 | ||
3 | * @Autor: renchao | ||
4 | * @LastEditTime: 2023-03-02 13:25:48 | ||
5 | */ | ||
6 | import dialogBox from '@/components/DialogBox/dialogBox.vue' | ||
2 | import LbTable from '@/components/LbTable/lb-table.vue' | 7 | import LbTable from '@/components/LbTable/lb-table.vue' |
3 | import Theme from '@/components/Theme/theme.vue' | 8 | import Theme from '@/components/Theme/theme.vue' |
4 | import Popup from '@/components/Popup/index' | 9 | import Popup from '@/components/Popup/index' | ... | ... |
1 | <!-- | ||
2 | * @Description: | ||
3 | * @Autor: renchao | ||
4 | * @LastEditTime: 2023-03-02 14:04:16 | ||
5 | --> | ||
1 | <template> | 6 | <template> |
2 | <dialogBox :title="title" width="85%" @closeDialog="closeDialog" v-model="value" isMain :isButton="false"> | 7 | <dialogBox :title="title" width="85%" @closeDialog="closeDialog" v-model="value" isMain :isButton="false"> |
3 | <component :is="router" :sqywInfo="sqywInfo" @closeDialog="closeDialog" @updateDialog="updateDialog" /> | 8 | <component :is="router" :sqywInfo="sqywInfo" @closeDialog="closeDialog" @updateDialog="updateDialog" /> |
... | @@ -9,6 +14,7 @@ export default { | ... | @@ -9,6 +14,7 @@ export default { |
9 | props: { | 14 | props: { |
10 | value: { type: Boolean, default: true }, | 15 | value: { type: Boolean, default: true }, |
11 | sqywInfo: { type: Object, default: () => { } }, | 16 | sqywInfo: { type: Object, default: () => { } }, |
17 | djywbm: { type: String, default: '' } | ||
12 | }, | 18 | }, |
13 | data () { | 19 | data () { |
14 | return { | 20 | return { |
... | @@ -20,7 +26,7 @@ export default { | ... | @@ -20,7 +26,7 @@ export default { |
20 | value (val) { | 26 | value (val) { |
21 | if (val) { | 27 | if (val) { |
22 | this.title = "申请业务:" + this.sqywInfo?.djywmc ? this.sqywInfo?.djywmc : ''; | 28 | this.title = "申请业务:" + this.sqywInfo?.djywmc ? this.sqywInfo?.djywmc : ''; |
23 | let view = queueDjywmc(this.sqywInfo?.djywbm); | 29 | let view = queueDjywmc(this.sqywInfo?.djywbm || this.djywbm); |
24 | this.router = this.loadView(view); | 30 | this.router = this.loadView(view); |
25 | } | 31 | } |
26 | }, | 32 | }, | ... | ... |
-
Please register or sign in to post a comment