|
|
@@ -20,7 +20,7 @@
|
|
|
<button class="button-com default" @click="checkResult()">查询支付结果</button>
|
|
|
</view>
|
|
|
<view style="margin-top:35upx;">
|
|
|
- <button style="width:25vh;" @click="changePayWay(2)" class="admin-button-com big default">记欠款</button>
|
|
|
+ <button style="width:25vh;" @click="changePayWay(2)" class="admin-button-com big default">赊账</button>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view v-else>
|
|
|
@@ -29,7 +29,7 @@
|
|
|
<view style="margin-bottom:20upx;">
|
|
|
<button @click="changePayWay(0)" class="admin-button-com big" :class="payWay == 0 ? 'blue' : 'default'">微信</button>
|
|
|
<button @click="changePayWay(1)" style="margin-left:40upx;" class="admin-button-com big" :class="payWay == 1 ? 'blue' : 'default'">支付宝</button>
|
|
|
- <button @click="changePayWay(2)" style="margin-left:40upx;" class="admin-button-com big" :class="payWay == 2 ? 'blue' : 'default'">记欠款</button>
|
|
|
+ <button @click="changePayWay(2)" style="margin-left:40upx;" class="admin-button-com big" :class="payWay == 2 ? 'blue' : 'default'">赊账</button>
|
|
|
</view>
|
|
|
<image mode="widthFix" style="width:350upx;margin:0 auto;" :src="payQrCodeUrl"></image>
|
|
|
</view>
|
|
|
@@ -112,7 +112,7 @@ export default {
|
|
|
this.payWay = payWay
|
|
|
let that = this
|
|
|
if(payWay == 2){
|
|
|
- that.$util.confirmModal({content:'确认欠款?'},() => {
|
|
|
+ that.$util.confirmModal({content:'确认赊账?'},() => {
|
|
|
clearInterval(this.INT)
|
|
|
debtPay({id:this.orderId}).then(res=>{
|
|
|
if(res.code == 1){
|