e43c21ed by weimo934

merge(bjlp,plzl):合并代码

1 parent 250d1225
......@@ -113,7 +113,7 @@
type: Array
},
measureType: {
type: Number
type: String
}
},
data() {
......
......@@ -33,7 +33,7 @@
<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>
<el-button class="radioBtn" label="6" border @click="plzlVisible=true">批量坐落</el-button>
<el-button class="radioBtn" label="7" border>批量单元号</el-button>
</div>
</el-col>
......@@ -161,6 +161,7 @@ export default {
plcVisible:false,
plhVisible:false,
plShVisible:false,
plzlVisible:false,
hbjVisible:false,
tabPosition:1,
radio1: "",
......@@ -334,7 +335,7 @@ export default {
// 双击
console.log('双击了');
this.hbjVisible = true;
self.$refs.hbj.getHInfo(this.bsms[this.bsms.length-1]);
self.$refs.hbj.getHInfo(this.bsms[this.bsms.length-1]);
}else{
//单击
console.log('单击了');
......@@ -355,11 +356,11 @@ export default {
//户保存
hbjSaveInfo(){
let bsm = this.bsms[this.bsms.length-1]
this.$refs.hbj.onSave(bsm,this.tabPosition);
this.$refs.hbj.onSave(bsm,this.tabPosition);
},
//户编辑表单重置
hbjResetInfo(){
this.$refs.hbj.onReset();
this.$refs.hbj.onReset();
}
},
computed: {
......