Commit 83a81d3a authored by 邓春圆's avatar 邓春圆

账户类型优化,自编号修改为订单编号

parent 340f8f1e
...@@ -127,8 +127,8 @@ ...@@ -127,8 +127,8 @@
<el-descriptions-item :label="$t('账户类型')" > <el-descriptions-item :label="$t('账户类型')" >
<el-form-item label-width="0"> <el-form-item label-width="0">
<el-select v-model="form.customerAccountType"> <el-select v-model="form.customerAccountType">
<el-option value="0" label="停用"></el-option> <el-option :value="1" label="公账"></el-option>
<el-option value="1" label="正常"></el-option> <el-option :value="2" label="私帐"></el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
</el-descriptions-item> </el-descriptions-item>
...@@ -193,7 +193,7 @@ ...@@ -193,7 +193,7 @@
> >
</el-col> </el-col>
<el-table v-loading="loadings" :data="list" border :show-summary="!!list.length" :summary-method="getSummaries"> <el-table v-loading="loadings" :data="list" border :show-summary="!!list.length" :summary-method="getSummaries">
<el-table-column :label="$t('自编号')" align="center" prop="payableNo"/> <el-table-column :label="$t('订单编号')" align="center" prop="orderNo"/>
<el-table-column :label="$t('佣金类型')" align="center" prop="feeType"> <el-table-column :label="$t('佣金类型')" align="center" prop="feeType">
<template v-slot="{row}"> <template v-slot="{row}">
<dict-tag <dict-tag
...@@ -701,7 +701,7 @@ export default { ...@@ -701,7 +701,7 @@ export default {
console.log(val,'valbank') console.log(val,'valbank')
let {accountName,bankAccount,bankAddress,bankName,bankCode,accountType} = val let {accountName,bankAccount,bankAddress,bankName,bankCode,accountType} = val
// this.form.customerAccountType = baType; //账户类型 // this.form.customerAccountType = baType; //账户类型
this.$set(this.form, 'customerAccountType', accountType) this.$set(this.form, 'customerAccountType', Number(accountType))
// this.form.customerBank = baBankName; //客户银行 // this.form.customerBank = baBankName; //客户银行
this.$set(this.form, 'customerBank', bankName) this.$set(this.form, 'customerBank', bankName)
// this.form.customerBankAccount = baAccountNum; // 客户银行账号 // this.form.customerBankAccount = baAccountNum; // 客户银行账号
......
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