|
@ -52,7 +52,7 @@ |
|
|
<div class="left-pay-item "> |
|
|
<div class="left-pay-item "> |
|
|
<div class="flex-between"> |
|
|
<div class="flex-between"> |
|
|
<span>功能开关</span> |
|
|
<span>功能开关</span> |
|
|
<GuipSwitch :modelValue="payinfo.is_auto_refund" :active-value="1" :inactive-value="0" activeText="开启" inactiveText="关闭" @change="updatePayAutoRefund(payinfo)"></GuipSwitch> |
|
|
<GuipSwitch v-model="payinfo.is_auto_refund" :active-value="1" :inactive-value="0" activeText="开启" inactiveText="关闭" @change="updatePayAutoRefund(payinfo)"></GuipSwitch> |
|
|
</div> |
|
|
</div> |
|
|
<p>开启后,遇到退单的情况,平台尽量在联系您并同意的情况下操作退款。</p> |
|
|
<p>开启后,遇到退单的情况,平台尽量在联系您并同意的情况下操作退款。</p> |
|
|
</div> |
|
|
</div> |
|
@ -94,7 +94,7 @@ |
|
|
<div class="baidu-wrap bidWrap"> |
|
|
<div class="baidu-wrap bidWrap"> |
|
|
|
|
|
|
|
|
<div class="bidwrap-item"> |
|
|
<div class="bidwrap-item"> |
|
|
<h3 class="flex">分账开关<GuipSwitch :modelValue="payinfo.profit_share_status" |
|
|
<h3 class="flex">分账开关<GuipSwitch v-model="payinfo.profit_share_status" |
|
|
:active-value="1" :inactive-value="0" |
|
|
:active-value="1" :inactive-value="0" |
|
|
@change="updateProfitShareStatus(payinfo)"></GuipSwitch> |
|
|
@change="updateProfitShareStatus(payinfo)"></GuipSwitch> |
|
|
</h3> |
|
|
</h3> |
|
@ -387,7 +387,7 @@ export default { |
|
|
updatePayAutoRefund(row) { |
|
|
updatePayAutoRefund(row) { |
|
|
this.$http('POST', '/agentnew/ajax_setting_auto_refund', { |
|
|
this.$http('POST', '/agentnew/ajax_setting_auto_refund', { |
|
|
payid: this.$route.query.payid, |
|
|
payid: this.$route.query.payid, |
|
|
status: row.is_auto_refund == 1 ? 0 : 1, |
|
|
status: row.is_auto_refund, |
|
|
}, { |
|
|
}, { |
|
|
headers: { |
|
|
headers: { |
|
|
'Auth': this.token |
|
|
'Auth': this.token |
|
|