e0d614ec by 杨威
2 parents 5f2725f1 a92510a6
......@@ -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;
......
......@@ -129,6 +129,7 @@
title="提示"
:visible.sync="isopenXz"
width="50%"
:modal-append-to-body="false"
center>
<div class="xz-container">
<div class="xz-main">
......@@ -297,6 +298,7 @@
v-if="fghData.newZdlist.length>0"
title="提示"
:visible.sync="isopenXz"
:modal-append-to-body="false"
width="50%"
center>
<div class="xz-container">
......@@ -466,6 +468,7 @@
v-if="fghData.newZdlist.length>0"
title="提示"
:visible.sync="isopenXz"
:modal-append-to-body="false"
width="50%"
center>
<div class="xz-container">
......@@ -650,7 +653,7 @@
// 用户bsm暂时传空
this.checkedData.userbsm = ''
// fwlist 暂时传空
this.checkedData.fwlist = [{zdbsm: '', ztype: ''}]
this.checkedData.fwlist = [{zbsm: '', ztype: ''}]
})
},
getzdtzm() {
......@@ -719,8 +722,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 +763,9 @@
}
</script>
<style scoped lang="less">
.v-model{
z-index: 99!important;
}
.main {
box-sizing: border-box;
padding: 18px;
......