15ab6f29 by weimo934

fix(fg,hb):去掉弹出框遮罩,修改下拉框修改无效

1 parent b2f407c6
......@@ -5,6 +5,7 @@
:visible.sync="isVisible"
width="50%"
@close="close"
:modal-append-to-body="false"
center>
<div class="search">
<el-button type="primary" @click="search">查询</el-button>
......@@ -156,6 +157,7 @@
</script>
<style scoped lang="less">
.main {
box-sizing: border-box;
padding: 18px;
......
......@@ -650,7 +650,7 @@
// 用户bsm暂时传空
this.checkedData.userbsm = ''
// fwlist 暂时传空
this.checkedData.fwlist = [{zdbsm: '', ztype: ''}]
this.checkedData.fwlist = [{zbsm: '', ztype: ''}]
})
},
getzdtzm() {
......@@ -719,8 +719,9 @@
}
]
});
this.fghData.newZdlist[this.fghData.newZdlist.length - 1] = JSON.parse(JSON.stringify(this.checkedData));
this.changeXzq(this.checkedData.xzqbsm)
this.changeDjq(this.checkedData.djqbsm)
this.$set(this.fghData.newZdlist,this.fghData.newZdlist.length - 1, JSON.parse(JSON.stringify(this.checkedData)))
},
delRow(index) {
this.fghData.newZdlist.splice(index, 1)
......@@ -759,6 +760,9 @@
}
</script>
<style scoped lang="less">
.v-model{
z-index: 99!important;
}
.main {
box-sizing: border-box;
padding: 18px;
......