6c8758ad by 任超

style:修改选择不动产单元

1 parent 03f3ce11
......@@ -21,6 +21,5 @@ yarn-error.log*
*.njsproj
*.sln
*.sw?
/src/api/config.js
package-lock.json
......
/*
* @Description: api请求配置文件
* @Autor: renchao
* @LastEditTime: 2023-03-02 13:56:25
*/
export default {
SERVERAPI: '/service-jiao', // 泽平
// SERVERAPI: '/service-bdcdj' // 38服务器地址
}
\ No newline at end of file
import dialogBox from '@/components/dialogBox/dialogBox.vue'
/*
* @Description: 引入公共组件
* @Autor: renchao
* @LastEditTime: 2023-03-02 13:25:48
*/
import dialogBox from '@/components/DialogBox/dialogBox.vue'
import LbTable from '@/components/LbTable/lb-table.vue'
import Theme from '@/components/Theme/theme.vue'
import Popup from '@/components/Popup/index'
......
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-03-02 14:04:16
-->
<template>
<dialogBox :title="title" width="85%" @closeDialog="closeDialog" v-model="value" isMain :isButton="false">
<component :is="router" :sqywInfo="sqywInfo" @closeDialog="closeDialog" @updateDialog="updateDialog" />
......@@ -9,6 +14,7 @@ export default {
props: {
value: { type: Boolean, default: true },
sqywInfo: { type: Object, default: () => { } },
djywbm: { type: String, default: '' }
},
data () {
return {
......@@ -20,7 +26,7 @@ export default {
value (val) {
if (val) {
this.title = "申请业务:" + this.sqywInfo?.djywmc ? this.sqywInfo?.djywmc : '';
let view = queueDjywmc(this.sqywInfo?.djywbm);
let view = queueDjywmc(this.sqywInfo?.djywbm || this.djywbm);
this.router = this.loadView(view);
}
},
......