|
@ -5,7 +5,7 @@ |
|
|
<div class="siteMessage flex-common"> |
|
|
<div class="siteMessage flex-common"> |
|
|
<h3>支付授权</h3> |
|
|
<h3>支付授权</h3> |
|
|
<el-form> |
|
|
<el-form> |
|
|
<div class="flex-wrap"> |
|
|
<div class="flex-wrap" v-if="payType==payTypeWeixin"> |
|
|
<div class="flex-left"> |
|
|
<div class="flex-left"> |
|
|
<el-form> |
|
|
<el-form> |
|
|
<GuipFormItem column="column" class="mb24" label="1. 公司简称"> |
|
|
<GuipFormItem column="column" class="mb24" label="1. 公司简称"> |
|
@ -46,9 +46,9 @@ |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
<div class="register-btns"> |
|
|
<div class="register-btns"> |
|
|
<GuipButton type="system" :btnstyle="{ width: '144px', height: '46px' }">取消</GuipButton> |
|
|
<GuipButton type="system" :btnstyle="{ width: '144px', height: '46px' }">取消</GuipButton> |
|
|
<GuipButton type="primary" :btnstyle="{ width: '144px', height: '46px' }" @click="addPayment">保存</GuipButton> |
|
|
<GuipButton type="primary" :btnstyle="{ width: '144px', height: '46px' }" @click="addPayment">保存</GuipButton> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|
</template> |
|
|
</template> |
|
@ -73,7 +73,7 @@ const PAY_TYPE_JINGDONG = 4; // 京东 |
|
|
const PAY_TYPE_PDD = 11; // 拼多多 |
|
|
const PAY_TYPE_PDD = 11; // 拼多多 |
|
|
|
|
|
|
|
|
export default { |
|
|
export default { |
|
|
// 站点设置 |
|
|
// 收款方式设置 |
|
|
name: '', |
|
|
name: '', |
|
|
props: [''], |
|
|
props: [''], |
|
|
components: { |
|
|
components: { |
|
@ -92,6 +92,12 @@ export default { |
|
|
token: 'eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3NTAwNTM3MjQsIm5iZiI6MTc1MDA1MzcyNCwiZXhwIjoxNzUyNjQ1NzI0LCJ1c2VyIjoic3VidXNlciIsImxvZ2luX3R5cGUiOjAsImFpZCI6IjEifQ.xyIqBLelB-k6jCifgRevBJTyg_Qrm6m1e4OcHhOpepU', |
|
|
token: 'eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3NTAwNTM3MjQsIm5iZiI6MTc1MDA1MzcyNCwiZXhwIjoxNzUyNjQ1NzI0LCJ1c2VyIjoic3VidXNlciIsImxvZ2luX3R5cGUiOjAsImFpZCI6IjEifQ.xyIqBLelB-k6jCifgRevBJTyg_Qrm6m1e4OcHhOpepU', |
|
|
payinfo: [], |
|
|
payinfo: [], |
|
|
payType: -1, |
|
|
payType: -1, |
|
|
|
|
|
// 收款方式 |
|
|
|
|
|
payTypeTaoBao: PAY_TYPE_TAOBAO, |
|
|
|
|
|
payTypeWeixin: PAY_TYPE_WEIXIN, |
|
|
|
|
|
payTypeAlipay: PAY_TYPE_ALIPAY, |
|
|
|
|
|
payTypeJingdong: PAY_TYPE_JINGDONG, |
|
|
|
|
|
payTypePdd: PAY_TYPE_PDD, |
|
|
} |
|
|
} |
|
|
}, |
|
|
}, |
|
|
computed: { |
|
|
computed: { |
|
|