This commit is contained in:
18631081161 2025-04-10 20:20:15 +08:00
parent 0ca099af4a
commit 0a16b6c107
3 changed files with 21 additions and 22 deletions

View File

@ -105,7 +105,7 @@ export default {
},
checkinData: {
TotalCheckins: 10, //
Requirement: "任意消费100钻石",
Requirement: "当日消费满100钻石",
TotalCheckinList: [],
CheckinList: [
],
@ -140,7 +140,7 @@ export default {
async load() {
let sign_in_spend_limit = this.$config.getAppSetting("sign_in_spend_limit");
if (sign_in_spend_limit && sign_in_spend_limit > 0) {
this.checkinData.Requirement = "签到条件:任意消费" + sign_in_spend_limit + "钻石"
this.checkinData.Requirement = "签到条件:当日消费满" + sign_in_spend_limit + "钻石"
} else {
this.checkinData.Requirement = ""
}

View File

@ -1,12 +1,12 @@
<template>
<view class="content">
<uni-nav-bar color="#000000" backgroundColor="transparent" :fixed="true" :statusBar="true"
:border="false" @clickLeft="$c.back">
<uni-nav-bar color="#000000" backgroundColor="transparent" :fixed="true" :statusBar="true" :border="false"
@clickLeft="$c.back">
<view style="font-size: 34rpx; width: 100%; display: flex; justify-content: center; align-items: center;">
我的盒柜
</view>
</uni-nav-bar>
<view class="tab">
<view class="tab-item center relative" v-for="(item, i) in tabList" :key="i"
:class="tabCur == i?'act':'unact'" @click="tabChange(i)">
@ -157,6 +157,8 @@
</template>
<view v-else class="btn center" @click="open('model')">解锁</view>
</view>
<!-- 兑换弹窗 -->
<uni-popup ref="changePop" type="bottom">
<view class="change-pop relative">
<view class="change-pop-hd">
@ -1433,6 +1435,7 @@
position: absolute;
right: 0;
top: 50%;
padding: 20rpx;
transform: translateY(-50%);
width: 24rpx;
height: 24rpx;
@ -1476,7 +1479,7 @@
width: 100%;
height: 170rpx;
box-sizing: border-box;
background: #000000;
background: #D8D8D8;
border-radius: 20rpx;
position: relative;
overflow: hidden;

View File

@ -45,25 +45,22 @@
<image class="img100" :src="$img1('my/sign.png')"></image>
</view> -->
</view>
<view class="">
</view>
<view class="money-card">
<view class="other-num">
<view class="other-item" @click="$c.to({ url: '/pages/user/yetx' })">
<view class="num">{{ userinfo.money || '0.00' }}</view>
<view class="title">{{$config.getAppSetting('balance_name')}}</view>
<view class="num">{{ userinfo.money || '0.00' }}</view>
</view>
<view class="other-item" @click="$c.to({ url: '/pages/user/bi_jl' })">
<view class="num" style="color: #333333;">{{ userinfo.integral || 0 }}</view>
<view class="title">{{$config.getAppSetting('currency1_name')}}</view>
<view class="num" style="color: #333333;">{{ userinfo.integral || 0 }}</view>
</view>
<view class="other-item" @click="$c.to({ url: '/pages/user/jf_jl' })">
<view class="num" style="color: #333333;">{{ userinfo.money2 || 0 }}</view>
<view class="title">{{$config.getAppSetting('currency2_name')}}</view>
<view class="num" style="color: #333333;">{{ userinfo.money2 || 0 }}</view>
</view>
<!-- <view class="other-item" @click="$c.to({ url: '/pages/user/my_coupon' })">
@ -1504,28 +1501,27 @@
.money-card {
width: 690rpx;
margin: 40rpx auto 0;
margin: 20rpx auto 0;
.other-num {
display: flex;
justify-content: space-around;
padding: 36rpx 0;
padding: 0 36rpx;
flex-direction: column;
background-color: #FFFFFF;
border-radius: 16rpx;
.other-item {
display: flex;
flex-direction: column;
flex-direction: row;
align-items: center;
justify-content: center;
width: 200rpx;
justify-content: space-between;
width: 100%;
height: 110rpx;
.title {
font-size: 20rpx;
font-weight: 400;
color: #4C4C4C;
margin-top: 12rpx;
font-size: 28rpx;
font-weight: 540;
color: #333333;
}
.num {