feat(bjlp):引入批量户组件
Showing
1 changed file
with
8 additions
and
2 deletions
... | @@ -16,7 +16,7 @@ | ... | @@ -16,7 +16,7 @@ |
16 | <el-col :span="14"> | 16 | <el-col :span="14"> |
17 | <el-button class="radioBtn" label="1" @click="create" border>创建楼盘</el-button> | 17 | <el-button class="radioBtn" label="1" @click="create" border>创建楼盘</el-button> |
18 | <el-button class="radioBtn" label="2" border>实预测转换</el-button> | 18 | <el-button class="radioBtn" label="2" border>实预测转换</el-button> |
19 | <el-button class="radioBtn" label="3" border>批量户</el-button> | 19 | <el-button class="radioBtn" label="3" border @click="plhVisible=true">批量户</el-button> |
20 | <el-button class="radioBtn" label="4" border @click="plcVisible=true">批量层</el-button> | 20 | <el-button class="radioBtn" label="4" border @click="plcVisible=true">批量层</el-button> |
21 | <el-button class="radioBtn" label="5" border @click="plShVisible=true">批量室号</el-button> | 21 | <el-button class="radioBtn" label="5" border @click="plShVisible=true">批量室号</el-button> |
22 | <el-button class="radioBtn" label="6" border>批量坐落</el-button> | 22 | <el-button class="radioBtn" label="6" border>批量坐落</el-button> |
... | @@ -102,6 +102,7 @@ | ... | @@ -102,6 +102,7 @@ |
102 | > | 102 | > |
103 | </div> | 103 | </div> |
104 | </el-dialog> | 104 | </el-dialog> |
105 | <pl-h :plh-visible="plhVisible" :bsms="bsms" @close="plhClose"></pl-h> | ||
105 | <pl-c :plc-visible="plcVisible" :bsms="bsms" @close="plcClose"></pl-c> | 106 | <pl-c :plc-visible="plcVisible" :bsms="bsms" @close="plcClose"></pl-c> |
106 | <pl-sh :plShVisible="plShVisible" :bsms="bsms" @close="plshClose"></pl-sh> | 107 | <pl-sh :plShVisible="plShVisible" :bsms="bsms" @close="plshClose"></pl-sh> |
107 | </div> | 108 | </div> |
... | @@ -110,6 +111,7 @@ | ... | @@ -110,6 +111,7 @@ |
110 | <script> | 111 | <script> |
111 | import PlC from "./../../../../components/plc/plC" | 112 | import PlC from "./../../../../components/plc/plC" |
112 | import PlSh from "./../../../../components/plsh/plSh" | 113 | import PlSh from "./../../../../components/plsh/plSh" |
114 | import PlH from "./../../../../components/plh/plH" | ||
113 | import LineTree from "../../../../components/lineTree/lineTree"; | 115 | import LineTree from "../../../../components/lineTree/lineTree"; |
114 | import addLjz from "./ljz/index"; | 116 | import addLjz from "./ljz/index"; |
115 | import addZdy from "./zdy/index"; | 117 | import addZdy from "./zdy/index"; |
... | @@ -119,12 +121,13 @@ import { getLpbMenuTree } from "../../../../api/lpb"; | ... | @@ -119,12 +121,13 @@ import { getLpbMenuTree } from "../../../../api/lpb"; |
119 | 121 | ||
120 | export default { | 122 | export default { |
121 | name: "", | 123 | name: "", |
122 | components: { LineTree, addLjz, addZdy, addCh, lpbContent,PlC,PlSh }, | 124 | components: { LineTree, addLjz, addZdy, addCh, lpbContent,PlC,PlSh,PlH }, |
123 | props: {}, | 125 | props: {}, |
124 | data() { | 126 | data() { |
125 | return { | 127 | return { |
126 | bsms:["123","321","231"], | 128 | bsms:["123","321","231"], |
127 | plcVisible:false, | 129 | plcVisible:false, |
130 | plhVisible:false, | ||
128 | plShVisible:false, | 131 | plShVisible:false, |
129 | tabPosition:'sc', | 132 | tabPosition:'sc', |
130 | radio1: "", | 133 | radio1: "", |
... | @@ -218,6 +221,9 @@ export default { | ... | @@ -218,6 +221,9 @@ export default { |
218 | plcClose(){ | 221 | plcClose(){ |
219 | this.plcVisible=false; | 222 | this.plcVisible=false; |
220 | }, | 223 | }, |
224 | plhClose(){ | ||
225 | this.plhVisible=false; | ||
226 | }, | ||
221 | plshClose(){ | 227 | plshClose(){ |
222 | this.plShVisible=false | 228 | this.plShVisible=false |
223 | }, | 229 | }, | ... | ... |
-
Please register or sign in to post a comment