|
@ -28,7 +28,7 @@ |
|
|
:options="taobaoList" :options_null="!taobaoList.length"> |
|
|
:options="taobaoList" :options_null="!taobaoList.length"> |
|
|
|
|
|
|
|
|
<template #trigger> |
|
|
<template #trigger> |
|
|
<span v-if="selectTaobao">{{ selectTaobao.short_name }} {{ selectTaobao.account }}</span> |
|
|
<span v-if="selectTaobao.short_name || selectTaobao.account">{{ selectTaobao.short_name }} {{ selectTaobao.account }}</span> |
|
|
<span v-else-if="!taobaoList.length">暂无收款账号,稍后配置</span> |
|
|
<span v-else-if="!taobaoList.length">暂无收款账号,稍后配置</span> |
|
|
<span v-else>未绑定店铺</span> |
|
|
<span v-else>未绑定店铺</span> |
|
|
</template> |
|
|
</template> |
|
@ -157,7 +157,7 @@ |
|
|
<el-form ref="formRef" v-if="siteInfo.sale_channel === '3'"> |
|
|
<el-form ref="formRef" v-if="siteInfo.sale_channel === '3'"> |
|
|
<div class="flex-wrap"> |
|
|
<div class="flex-wrap"> |
|
|
<div class="flex-left"> |
|
|
<div class="flex-left"> |
|
|
<div class="shopadd-wrap" v-if="pddList.length"> |
|
|
<div class="shopadd-wrap" v-if="!pddList.length"> |
|
|
<p class="shopadd-title">店铺授权</p> |
|
|
<p class="shopadd-title">店铺授权</p> |
|
|
<div class="flex-between shopadd-area"> |
|
|
<div class="flex-between shopadd-area"> |
|
|
<div> |
|
|
<div> |
|
@ -176,7 +176,7 @@ |
|
|
:options="pddList" :options_null="!pddList.length"> |
|
|
:options="pddList" :options_null="!pddList.length"> |
|
|
|
|
|
|
|
|
<template #trigger> |
|
|
<template #trigger> |
|
|
<span v-if="selectPdd">{{ selectPdd.short_name }} {{ selectPdd.account }}</span> |
|
|
<span v-if="selectPdd.short_name || selectPdd.account">{{ selectPdd.short_name }} {{ selectPdd.account }}</span> |
|
|
<span v-else-if="pddList.length === 0">暂无收款账号,稍后配置</span> |
|
|
<span v-else-if="pddList.length === 0">暂无收款账号,稍后配置</span> |
|
|
<span v-else>未绑定拼多多店铺</span> |
|
|
<span v-else>未绑定拼多多店铺</span> |
|
|
</template> |
|
|
</template> |
|
@ -235,7 +235,7 @@ |
|
|
:options="jdList" :options_null="!jdList.length"> |
|
|
:options="jdList" :options_null="!jdList.length"> |
|
|
|
|
|
|
|
|
<template #trigger> |
|
|
<template #trigger> |
|
|
<span v-if="selectJd">{{ selectJd.short_name }} {{ selectJd.account }}</span> |
|
|
<span v-if="selectJd.short_name || selectJd.account">{{ selectJd.short_name }} {{ selectJd.account }}</span> |
|
|
<span v-else-if="jdList.length === 0">暂无收款账号,稍后配置</span> |
|
|
<span v-else-if="jdList.length === 0">暂无收款账号,稍后配置</span> |
|
|
<span v-else>未绑定京东店铺</span> |
|
|
<span v-else>未绑定京东店铺</span> |
|
|
</template> |
|
|
</template> |
|
@ -548,9 +548,10 @@ export default { |
|
|
this.isShowAddPay = true; |
|
|
this.isShowAddPay = true; |
|
|
this.authToken = this.token; |
|
|
this.authToken = this.token; |
|
|
}, |
|
|
}, |
|
|
handleEvent() { |
|
|
handleEvent(data) { |
|
|
this.getPayList() |
|
|
this.isShowAddPay = data |
|
|
this.getAddablePays() |
|
|
// this.getPayList() |
|
|
|
|
|
// this.getAddablePays() |
|
|
}, |
|
|
}, |
|
|
jumpStep(){ |
|
|
jumpStep(){ |
|
|
this.$router.push('/') |
|
|
this.$router.push('/') |
|
|