Commit d995b079 authored by youjie's avatar youjie

no message

parent b3c2b669
<style scoped>
/* @import "../css/cssReset.css"; */
.w400 {
width: 400px!important;
}
.page_fnDm {
background-color: white
}
......@@ -809,7 +812,7 @@
</div>
</template>
</el-dialog>
<el-dialog custom-class='w400' title="账户类型/交易方式/收款账户" :visible.sync="typeVisible" center>
<el-dialog custom-class='w400' :modal="false" title="账户类型/交易方式/收款账户" :visible.sync="typeVisible" center @close="determine">
<el-form class="_info_box clearfix" label-width="80px">
<div v-for="(i,index) in typeList" :key="index">
<el-row class="fit row wrap" style="padding:15px 20px 0 0;">
......@@ -849,7 +852,7 @@
</div>
</el-form>
<div slot="footer" class="dialog-footer">
<q-btn @click="msg.TradeWay='',msg.BankID='',typeVisible=false">取消</q-btn>
<q-btn @click="cancel,typeVisible=false">取消</q-btn>
<q-btn color="primary" class="normalBtn q-ml-lg" @click="determine,typeVisible=false">确定</q-btn>
</div>
</el-dialog>
......@@ -1064,6 +1067,14 @@
},
methods: {
cancel(){
this.msg.TradeWay='',this.msg.BankID='',this.msg.AccountIdStr=''
for(let i=0;i<this.typeList.length;i++){
this.typeList[i].TradeWay = 0
this.typeList[i].TradeWay = 0
this.typeList[i].BankID = []
}
},
determine(){
this.msg.AccountIdStr = ''
for(let i=0;i<this.typeList.length;i++){
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment