This commit is contained in:
zpc 2025-04-12 23:22:24 +08:00
parent 10b908d740
commit ca83914747
4 changed files with 14 additions and 4 deletions

View File

@ -188,6 +188,11 @@ class RequestManager {
uni.setStorageSync('lgurldata', JSON.stringify(pages[a].options))
}
}
console.log(requestUrl);
if (requestUrl.indexOf('login_record') > -1) {
reject(res.data)
return;
}
setTimeout(() => {
uni.showToast({
title: '请先登录',

View File

@ -225,7 +225,7 @@ export default {
//
this.currencyName = this.$config.getAppSetting('currency1_name') || 'UU币';
this.currencyName2 = this.$config.getAppSetting('currency2_name') || '达达券';
this.balanceName = this.$config.getAppSetting('balance_name') || '余额';
this.balanceName = this.$config.getAppSetting('balance_name') || '钻石';
let goodType = this.$config.getGoodTypeFind(this.pageData.goods.type);
this.setPayType(goodType);

View File

@ -3,10 +3,15 @@
<view class="order-info" v-if="orderInfo">
<view class="info-section">
<view class="section-title">订单信息</view>
<view class="info-item">
<text class="label">订单名称</text>
<text class="value">{{orderInfo.goods_title}}</text>
</view>
<view class="info-item">
<text class="label">订单编号</text>
<text class="value">{{orderInfo.order_num}}</text>
</view>
<view class="info-item">
<text class="label">购买数量</text>
<text class="value">{{orderInfo.prize_num}}</text>

View File

@ -118,11 +118,11 @@ export default {
right: 0;
background-color: #67c23a;
color: #fff;
font-size: 22rpx;
padding: 4rpx 16rpx;
font-size: 20rpx;
padding: 2rpx 8rpx;
// transform: rotate(45deg) translate(20%, -50%);
transform-origin: center;
width: 220rpx;
width: 160rpx;
text-align: center;
box-shadow: 0 2rpx 4rpx rgba(0, 0, 0, 0.2);
}