fix(fg,hb):去掉弹出框遮罩,修改下拉框修改无效
Showing
2 changed files
with
9 additions
and
3 deletions
... | @@ -5,6 +5,7 @@ | ... | @@ -5,6 +5,7 @@ |
5 | :visible.sync="isVisible" | 5 | :visible.sync="isVisible" |
6 | width="50%" | 6 | width="50%" |
7 | @close="close" | 7 | @close="close" |
8 | :modal-append-to-body="false" | ||
8 | center> | 9 | center> |
9 | <div class="search"> | 10 | <div class="search"> |
10 | <el-button type="primary" @click="search">查询</el-button> | 11 | <el-button type="primary" @click="search">查询</el-button> |
... | @@ -156,6 +157,7 @@ | ... | @@ -156,6 +157,7 @@ |
156 | </script> | 157 | </script> |
157 | 158 | ||
158 | <style scoped lang="less"> | 159 | <style scoped lang="less"> |
160 | |||
159 | .main { | 161 | .main { |
160 | box-sizing: border-box; | 162 | box-sizing: border-box; |
161 | padding: 18px; | 163 | padding: 18px; | ... | ... |
... | @@ -650,7 +650,7 @@ | ... | @@ -650,7 +650,7 @@ |
650 | // 用户bsm暂时传空 | 650 | // 用户bsm暂时传空 |
651 | this.checkedData.userbsm = '' | 651 | this.checkedData.userbsm = '' |
652 | // fwlist 暂时传空 | 652 | // fwlist 暂时传空 |
653 | this.checkedData.fwlist = [{zdbsm: '', ztype: ''}] | 653 | this.checkedData.fwlist = [{zbsm: '', ztype: ''}] |
654 | }) | 654 | }) |
655 | }, | 655 | }, |
656 | getzdtzm() { | 656 | getzdtzm() { |
... | @@ -719,8 +719,9 @@ | ... | @@ -719,8 +719,9 @@ |
719 | } | 719 | } |
720 | ] | 720 | ] |
721 | }); | 721 | }); |
722 | this.fghData.newZdlist[this.fghData.newZdlist.length - 1] = JSON.parse(JSON.stringify(this.checkedData)); | 722 | this.changeXzq(this.checkedData.xzqbsm) |
723 | 723 | this.changeDjq(this.checkedData.djqbsm) | |
724 | this.$set(this.fghData.newZdlist,this.fghData.newZdlist.length - 1, JSON.parse(JSON.stringify(this.checkedData))) | ||
724 | }, | 725 | }, |
725 | delRow(index) { | 726 | delRow(index) { |
726 | this.fghData.newZdlist.splice(index, 1) | 727 | this.fghData.newZdlist.splice(index, 1) |
... | @@ -759,6 +760,9 @@ | ... | @@ -759,6 +760,9 @@ |
759 | } | 760 | } |
760 | </script> | 761 | </script> |
761 | <style scoped lang="less"> | 762 | <style scoped lang="less"> |
763 | .v-model{ | ||
764 | z-index: 99!important; | ||
765 | } | ||
762 | .main { | 766 | .main { |
763 | box-sizing: border-box; | 767 | box-sizing: border-box; |
764 | padding: 18px; | 768 | padding: 18px; | ... | ... |
-
Please register or sign in to post a comment