Commit 66c777ed authored by youjie's avatar youjie

no message

parent be101e66
...@@ -809,7 +809,7 @@ ...@@ -809,7 +809,7 @@
</div> </div>
</template> </template>
</el-dialog> </el-dialog>
<el-dialog custom-class='w800' :modal="false" title="账户类型/交易方式/收款账户" :visible.sync="typeVisible" center @close="determine"> <el-dialog custom-class='w800' :modal="false" title="账户类型/交易方式/收款账户" :visible.sync="typeVisible" center>
<el-form class="_info_box clearfix" label-width="80px"> <el-form class="_info_box clearfix" label-width="80px">
<div v-for="(i,index) in typeList" :key="index"> <div v-for="(i,index) in typeList" :key="index">
<el-row class="fit row wrap" style="padding:15px 20px 0 0;"> <el-row class="fit row wrap" style="padding:15px 20px 0 0;">
...@@ -851,9 +851,7 @@ ...@@ -851,9 +851,7 @@
</el-form> </el-form>
<div slot="footer" class="dialog-footer"> <div slot="footer" class="dialog-footer">
<button class="hollowFixedBtn" @click="typeCancel">{{$t('pub.cancelBtn')}}</button> <button class="hollowFixedBtn" @click="typeCancel">{{$t('pub.cancelBtn')}}</button>
<button class="normalBtn" type="primary" @click="determine,typeVisible=false">{{$t('pub.sureBtn')}}</button> <button class="normalBtn" type="primary" @click="determine">查询</button>
<!-- <q-btn @click="typeCancel">取消</q-btn>
<q-btn color="primary" class="normalBtn q-ml-lg" @click="determine,typeVisible=false">确定</q-btn> -->
</div> </div>
</el-dialog> </el-dialog>
</div> </div>
...@@ -1069,7 +1067,7 @@ ...@@ -1069,7 +1067,7 @@
methods: { methods: {
typeCancel(){ typeCancel(){
for(let i=0;i<this.typeList.length;i++){ for(let i=0;i<this.typeList.length;i++){
this.typeList[i].AccountType = 0 this.typeList[i].AccountType = ''
this.typeList[i].TradeWay = '0' this.typeList[i].TradeWay = '0'
this.typeList[i].BankID = [] this.typeList[i].BankID = []
} }
...@@ -1085,7 +1083,8 @@ ...@@ -1085,7 +1083,8 @@
+(this.typeList[i].BankID?this.typeList[i].BankID.join(','):0) +(this.typeList[i].BankID?this.typeList[i].BankID.join(','):0)
this.msg.AccountIdStr = JSON.parse(JSON.stringify(this.msg.AccountIdStr))+(i==0?'':'|')+data this.msg.AccountIdStr = JSON.parse(JSON.stringify(this.msg.AccountIdStr))+(i==0?'':'|')+data
} }
this.typeVisible=false
this.getPageList()
}, },
addType(item,index,type){ addType(item,index,type){
if(type){ if(type){
......
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