5ca85dc2 by weimo934

feat(bjlp):引入批量户组件

1 parent bdf50ebf
......@@ -16,7 +16,7 @@
<el-col :span="14">
<el-button class="radioBtn" label="1" @click="create" border>创建楼盘</el-button>
<el-button class="radioBtn" label="2" border>实预测转换</el-button>
<el-button class="radioBtn" label="3" border>批量户</el-button>
<el-button class="radioBtn" label="3" border @click="plhVisible=true">批量户</el-button>
<el-button class="radioBtn" label="4" border @click="plcVisible=true">批量层</el-button>
<el-button class="radioBtn" label="5" border @click="plShVisible=true">批量室号</el-button>
<el-button class="radioBtn" label="6" border>批量坐落</el-button>
......@@ -102,6 +102,7 @@
>
</div>
</el-dialog>
<pl-h :plh-visible="plhVisible" :bsms="bsms" @close="plhClose"></pl-h>
<pl-c :plc-visible="plcVisible" :bsms="bsms" @close="plcClose"></pl-c>
<pl-sh :plShVisible="plShVisible" :bsms="bsms" @close="plshClose"></pl-sh>
</div>
......@@ -110,6 +111,7 @@
<script>
import PlC from "./../../../../components/plc/plC"
import PlSh from "./../../../../components/plsh/plSh"
import PlH from "./../../../../components/plh/plH"
import LineTree from "../../../../components/lineTree/lineTree";
import addLjz from "./ljz/index";
import addZdy from "./zdy/index";
......@@ -119,12 +121,13 @@ import { getLpbMenuTree } from "../../../../api/lpb";
export default {
name: "",
components: { LineTree, addLjz, addZdy, addCh, lpbContent,PlC,PlSh },
components: { LineTree, addLjz, addZdy, addCh, lpbContent,PlC,PlSh,PlH },
props: {},
data() {
return {
bsms:["123","321","231"],
plcVisible:false,
plhVisible:false,
plShVisible:false,
tabPosition:'sc',
radio1: "",
......@@ -218,6 +221,9 @@ export default {
plcClose(){
this.plcVisible=false;
},
plhClose(){
this.plhVisible=false;
},
plshClose(){
this.plShVisible=false
},
......