|
|
@ -62,7 +62,7 @@ |
|
|
<el-form ref="alipayForm" :model="alipayInfo" :rules="alipayRules"> |
|
|
<el-form ref="alipayForm" :model="alipayInfo" :rules="alipayRules"> |
|
|
<GuipFormItem column="column" class="mb24" label="1. 公司简称"> |
|
|
<GuipFormItem column="column" class="mb24" label="1. 公司简称"> |
|
|
<span class="desc" slot="formRight">请输入公司简称,便于您区分账号所属公司</span> |
|
|
<span class="desc" slot="formRight">请输入公司简称,便于您区分账号所属公司</span> |
|
|
<GuipInput slot="formDom" ref="GuipInput" column="column" :maxlength="6" v-model="alipayInfo.company_short_name" prop="company_short_name" placeholder="6字以内"></GuipInput> |
|
|
<GuipInput slot="formDom" ref="GuipInput" column="column" :maxlength="60" v-model="alipayInfo.company_short_name" prop="company_short_name" placeholder="6字以内"></GuipInput> |
|
|
</GuipFormItem> |
|
|
</GuipFormItem> |
|
|
<GuipFormItem column="column" class="mb24" label="2. 公司支付宝账号"> |
|
|
<GuipFormItem column="column" class="mb24" label="2. 公司支付宝账号"> |
|
|
<span class="desc flex gap12" slot="formRight">仅支持已签约 “当面付” 功能的公司支付宝 <a href='https://pay.weixin.qq.com/' class="guide" |
|
|
<span class="desc flex gap12" slot="formRight">仅支持已签约 “当面付” 功能的公司支付宝 <a href='https://pay.weixin.qq.com/' class="guide" |
|
|
@ -193,7 +193,7 @@ export default { |
|
|
}, |
|
|
}, |
|
|
|
|
|
|
|
|
// 添加收款方式类型 |
|
|
// 添加收款方式类型 |
|
|
addPayType: -1, |
|
|
addPayType: 3, |
|
|
|
|
|
|
|
|
// 添加收款方式弹框 |
|
|
// 添加收款方式弹框 |
|
|
addPayDialogVisible: false, |
|
|
addPayDialogVisible: false, |
|
|
@ -222,7 +222,7 @@ export default { |
|
|
// 代收款 收款人姓名 |
|
|
// 代收款 收款人姓名 |
|
|
receive_payment_name: '', |
|
|
receive_payment_name: '', |
|
|
// 是否是平台支付 0平台支付 1自营支付 |
|
|
// 是否是平台支付 0平台支付 1自营支付 |
|
|
isPayPublic: '0', |
|
|
isPayPublic: '1', |
|
|
// 拼多多店铺名称 |
|
|
// 拼多多店铺名称 |
|
|
pdd_shop_name: '', |
|
|
pdd_shop_name: '', |
|
|
alipayInfo:{ |
|
|
alipayInfo:{ |
|
|
@ -276,7 +276,7 @@ export default { |
|
|
this.receive_payment_account = ''; |
|
|
this.receive_payment_account = ''; |
|
|
this.receive_payment_name = ''; |
|
|
this.receive_payment_name = ''; |
|
|
this.pdd_shop_name = ''; |
|
|
this.pdd_shop_name = ''; |
|
|
this.isPayPublic = '0'; // 重置支付宝标签页 |
|
|
this.isPayPublic = '1'; // 重置支付宝标签页 |
|
|
}, |
|
|
}, |
|
|
// 弹框相关方法---start |
|
|
// 弹框相关方法---start |
|
|
showAddPaymentMethodDialog(type, type_desc) { |
|
|
showAddPaymentMethodDialog(type, type_desc) { |
|
|
|