From c5542e9e2b2fd14633b596334b957535459ae30e Mon Sep 17 00:00:00 2001
From: lin <1005713861@163.com>
Date: Fri, 10 Jul 2026 16:17:15 +0800
Subject: [PATCH] UI:澜品优选:1.行权问题修复;2.版本更新提示
---
pages/pays/pays.vue | 23 ++++++++++++++---------
1 files changed, 14 insertions(+), 9 deletions(-)
diff --git a/pages/pays/pays.vue b/pages/pays/pays.vue
index 2b5dfde..ed2acb8 100644
--- a/pages/pays/pays.vue
+++ b/pages/pays/pays.vue
@@ -45,11 +45,11 @@
</view>
</view>
<view class="total">
- <view class="">
+ <!-- <view class="">
<text>加工费:</text>
<text class="red total-price">{{rateTotal}}</text>
<text class="cny">元</text>
- </view>
+ </view> -->
<view class="">
<text>合计:</text>
<text class="red total-price">{{payTotal}}</text>
@@ -60,20 +60,20 @@
<view class="payment">
<view class="p-title">
<text>付款方式</text>
- <view class="" v-if="payment == 1 && userInfo.edu_auth == 1" @tap="getPayTask">查看还款计划</view>
+ <!-- <view class="" v-if="payment == 1 && userInfo.edu_auth == 1" @tap="getPayTask">查看还款计划</view> -->
</view>
<view class="pay-li">
- <view class="pay-item" @tap="choosePayment(1)" v-if="Config && Config.edu_open == 1 && isFenqi == 1">
+ <!-- <view class="pay-item" @tap="choosePayment(1)" v-if="Config && Config.edu_open == 1 && isFenqi == 1">
<image class="pay-icon" src="/static/imgs/edupay.png" mode=""></image>
<text v-if="userInfo">余额支付(可用余额:{{userInfo.const}})</text>
<image class="rgt" :src="payment == 1 ? '/static/imgs/checked.png' : '/static/imgs/check.png'" mode=""></image>
- </view>
+ </view> -->
<view class="pay-item" @tap="choosePayment(2)">
- <image class="pay-icon" src="/static/imgs/wxpay.png" mode=""></image>
- <text>微信支付</text>
+ <image class="pay-icon" src="/static/imgs/alipay.png" mode=""></image>
+ <text>支付宝支付</text>
<image class="rgt" :src="payment == 2 ? '/static/imgs/checked.png' : '/static/imgs/check.png'" mode=""></image>
</view>
- <view class="pay-item">
+ <!-- <view class="pay-item">
<image class="pay-icon" src="/static/imgs/bankpay.png" mode=""></image>
<view @tap="chooseBank">
<text>银行卡支付</text>
@@ -81,7 +81,7 @@
<text v-else>(请选择银行卡 》》)</text>
</view>
<image class="rgt" :src="payment == 3 ? '/static/imgs/checked.png' : '/static/imgs/check.png'" mode="" @tap="choosePayment(3)"></image>
- </view>
+ </view> -->
</view>
</view>
<view class="authBtn-desc" v-if="userInfo && payment == 1 && userInfo.edu_auth == 1">
@@ -318,12 +318,14 @@
})
}
this.getEsignStatus()
+ /*
if(this.esignFlag == 0 && this.Config.esign_open == 1) {
return uni.showToast({
title: '请签署购货协议',
icon: 'error'
})
}
+ */
}
let param = {}
@@ -347,6 +349,7 @@
t.$util.goPages('/pages/order/order')
}, 1500)
} else if(t.payment == 2) {
+ /*
uni.requestPayment({
"provider": "wxpay",
"orderInfo": res.data,
@@ -369,6 +372,8 @@
}, 1000)
}
})
+ */
+ this.$util.goPages('/pages/web/index?title=支付宝在线交易&webUel=' + encodeURI(res.data.url))
} else if(t.payment == 3) {
uni.showToast({
title: res.msg || '操作成功',
--
Gitblit v1.9.3