修改支付请求订单详情时间每请求一次加2秒,调整绑定支付宝页面样式

This commit is contained in:
2025-06-30 14:20:40 +08:00
parent 90ecd6621d
commit dd666f0d82
5 changed files with 73 additions and 36 deletions

View File

@@ -221,7 +221,7 @@
</view>
<view class="pay-list-item" @click="payBtnClick('gold', 1)" v-if="nowDanjiPrice * goldBili > 0">
<image class="hot" src="@/static/images/hot.png" mode=""></image>
<text class="u-font-28 font-bold">{{ nowDanjiPrice * goldBili }}金币解锁单集视频</text>
<text class="u-font-28 font-bold">{{ to2(nowDanjiPrice * goldBili)}}金币解锁单集视频</text>
</view>
<view class="pay-list-item" @click="payBtnClick('money', 1)">
<!-- <image class="hot" src="@/static/images/hot.png" mode=""></image> -->
@@ -335,7 +335,11 @@ import { debounce, throttle } from 'lodash';
import * as Api from '@/api/video/index.js';
import infoBox from '@/utils/infoBox.js';
import { computed, reactive, ref, watch, nextTick, onMounted, getCurrentInstance, onUnmounted } from 'vue';
function to2(n){
if(n){
return n.toFixed(2)
}
}
//绑定微信
function bindWx() {
popupClose('bindWx');