6c8758ad by 任超

style:修改选择不动产单元

1 parent 03f3ce11
...@@ -21,6 +21,5 @@ yarn-error.log* ...@@ -21,6 +21,5 @@ yarn-error.log*
21 *.njsproj 21 *.njsproj
22 *.sln 22 *.sln
23 *.sw? 23 *.sw?
24 /src/api/config.js
25 24
26 package-lock.json 25 package-lock.json
......
1 /*
2 * @Description: api请求配置文件
3 * @Autor: renchao
4 * @LastEditTime: 2023-03-02 13:56:25
5 */
6 export default {
7 SERVERAPI: '/service-jiao', // 泽平
8 // SERVERAPI: '/service-bdcdj' // 38服务器地址
9 }
...\ No newline at end of file ...\ No newline at end of file
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 },
......