This commit is contained in:
2025-09-28 19:28:05 +08:00
5 changed files with 639 additions and 513 deletions

View File

@@ -28,3 +28,23 @@ export const userdict = (data) => {
toast: false
})
}
// 获取当前店铺会员开通配置信息
export const getMemberConfig = (data) => {
return request({
url: '/market/user/member/config',
method: 'GET',
data: data,
toast: false
})
}
// 获取充值配置
export const getRechargeConfig = (data) => {
return request({
url: '/market/user/recharge/config',
method: 'GET',
data: data,
toast: false
})
}

View File

@@ -2,11 +2,11 @@
<template>
<up-popup :show="show" bgColor="transparent">
<view class="container">
<view class="content">
<image class="bg" src="https://cashier-oss.oss-cn-beijing.aliyuncs.com/upload/4/6520f3cfae594480aa2e612ff4ad121c.png" mode="widthFix"></image>
<view class="swiper-wrap">
<swiper class="swiper" @change="swiperChange">
<swiper-item class="swiper-item" v-for="(item, index) in couponList" :key="index">
<view class="content" :class="`content${currentNum}`">
<image class="bg" :src="bgUrl" mode="widthFix"></image>
<view class="swiper-wrap" :class="`swiper-wrap${currentNum}`">
<swiper class="swiper" :class="[`swiper${currentNum}`]" @change="swiperChange">
<swiper-item class="swiper-item" :class="[`swiper-item${currentNum}`]" v-for="(item, index) in couponList" :key="index">
<view class="item" v-for="val in item" :key="val.id">
<image
class="item-bg"
@@ -54,7 +54,7 @@
</view>
</swiper-item>
</swiper>
<view class="dot-wrap">
<view class="dot-wrap" v-if="couponList.length > 1">
<view class="page-btn">
<up-icon name="arrow-left" :color="swiperIndex == 0 ? '#fa746a' : '#f6171b'" size="16"></up-icon>
</view>
@@ -66,7 +66,7 @@
</view>
</view>
</view>
<view class="btn-wrap" @click="getHandle">
<view class="btn-wrap" :class="[`btn-wrap${currentNum}`]" @click="getHandle">
<image class="btn-img" src="https://cashier-oss.oss-cn-beijing.aliyuncs.com/upload/4/a7ea3211baf84cc8b77171d4f88c7f9e.png" mode="widthFix"></image>
<text class="t">全部领取{{ couponCount }}</text>
</view>
@@ -84,6 +84,15 @@ import dayjs from 'dayjs';
import { onMounted, ref } from 'vue';
import { getCouponPopup, receivePopUp } from '@/common/api/member.js';
const currentNum = ref(1);
const swiperCheck = ref(3);
const bgUrlList = ref({
1: 'https://cashier-oss.oss-cn-beijing.aliyuncs.com/upload/0/20c159a4cd664d8a843d82eb9b5a5e0e.png',
2: 'https://cashier-oss.oss-cn-beijing.aliyuncs.com/upload/0/d6b11e76f03b495d84f07791b3ce1c3e.png',
3: 'https://cashier-oss.oss-cn-beijing.aliyuncs.com/upload/0/f41a5bffdc1c474eb5bb41ed0035c91b.png'
});
const bgUrl = ref('');
const couponCount = ref(0);
const swiperIndex = ref(0);
const couponList = ref([]);
@@ -114,12 +123,24 @@ async function getCouponPopupAjax() {
.format('YYYY-MM-DD HH:mm:ss');
}
});
console.log('res===', res);
show.value = true;
couponCount.value = res.length;
couponList.value = _.chunk(res, 3);
console.log('couponList.value===', couponList.value);
couponList.value = _.chunk(res, swiperCheck.value);
console.log('couponList.value[0].length===', couponList.value[0].length);
if (couponList.value[0].length >= swiperCheck.value) {
bgUrl.value = bgUrlList.value[3];
currentNum.value = 3;
}
if (couponList.value[0].length == 2) {
bgUrl.value = bgUrlList.value[2];
currentNum.value = 2;
}
if (couponList.value[0].length <= 1) {
bgUrl.value = bgUrlList.value[1];
currentNum.value = 1;
}
}
} catch (error) {
console.log(error);
@@ -163,7 +184,9 @@ onMounted(() => {
.content {
width: 94vw;
position: relative;
&.content3 {
padding-left: 24upx;
}
.close {
position: absolute;
left: 50%;
@@ -179,19 +202,43 @@ onMounted(() => {
height: 70%;
position: absolute;
left: 18%;
&.swiper-wrap1 {
top: 162upx;
}
&.swiper-wrap2 {
top: 140upx;
}
&.swiper-wrap3 {
top: 96upx;
}
.swiper {
width: 100%;
height: 90%;
background-color: #fff;
&.swiper1 {
height: 44%;
}
&.swiper2 {
height: 70%;
}
&.swiper3 {
height: 90%;
}
.swiper-item {
width: 100%;
height: 100%;
display: grid;
grid-template-columns: 1fr;
grid-template-rows: repeat(3, 1fr);
grid-column-gap: 0;
grid-row-gap: 12upx;
&.swiper-item1 {
grid-template-rows: repeat(1, 1fr);
}
&.swiper-item2 {
grid-template-rows: repeat(2, 1fr);
}
&.swiper-item3 {
grid-template-rows: repeat(3, 1fr);
}
.item {
background-color: #e20410;
border-radius: 12upx;
@@ -315,7 +362,15 @@ onMounted(() => {
width: 60%;
position: absolute;
left: 20%;
&.btn-wrap1 {
bottom: 74upx;
}
&.btn-wrap2 {
bottom: 74upx;
}
&.btn-wrap3 {
bottom: 38upx;
}
.btn-img {
width: 100%;
}

View File

@@ -125,7 +125,7 @@
<up-loadmore :status="formhomelist.status" fontSize="14" color="#999" iconSize="14" />
</view> -->
</view>
<indexs v-if="showindex == 'shopIndex'" :shopExtend="orderVIP.shopExtendList"></indexs>
<indexs ref="indexsRef" v-if="showindex == 'shopIndex'" :shopExtend="orderVIP.shopExtendList"></indexs>
<!-- <CouponModal></CouponModal> -->
</view>
</template>
@@ -319,6 +319,9 @@ onPageScroll((res) => {
isSticky.value = res.scrollTop > elementTop.value ? true : false;
uni.$u.debounce((store.scrollTop = res.scrollTop), 500);
});
const indexsRef = ref(null);
onShow(async () => {
try {
uni.getLocation({
@@ -343,6 +346,8 @@ onShow(async () => {
}
}
});
indexsRef.value.getVipConfig();
} catch (error) {
try {
let successres = await APIgeocodelocation({

View File

@@ -1,11 +1,16 @@
<template>
<view class="content">
<view class="contentbox"
:style="'background:url('+(shopExtend?shopExtend[0].value:'https://czg-qr-order.oss-cn-beijing.aliyuncs.com/indexs/shuangbackground.png')+') no-repeat center center / cover' ">
<view
class="contentbox"
:style="
'background:url(' +
(shopExtend ? shopExtend[0].value : 'https://czg-qr-order.oss-cn-beijing.aliyuncs.com/indexs/shuangbackground.png') +
') no-repeat center center / cover'
"
>
<view class="contentboxitem flex-between">
<view class="contentboxitemleft flex-colum" @click="scanCodehandle(0)">
<image src="https://czg-qr-order.oss-cn-beijing.aliyuncs.com/indexs/Xdiancan.png" mode="aspectFill">
</image>
<image src="https://czg-qr-order.oss-cn-beijing.aliyuncs.com/indexs/Xdiancan.png" mode="aspectFill"></image>
<text class="contentboxitemlefttextone">点餐</text>
<text class="contentboxitemlefttexttow">在线点不排队</text>
</view>
@@ -13,8 +18,7 @@
<!-- <view class="contentboxitemright_item flex-between"
@click="memberindex('user/member/memberdetails')"> -->
<view class="contentboxitemright_item flex-between" @click="tomember">
<image src="https://czg-qr-order.oss-cn-beijing.aliyuncs.com/indexs/Xvip.png" mode="aspectFill">
</image>
<image src="https://czg-qr-order.oss-cn-beijing.aliyuncs.com/indexs/Xvip.png" mode="aspectFill"></image>
<view class="contentboxitemright_itembox flex-colum">
<text>会员</text>
<text>入会享权益</text>
@@ -25,8 +29,7 @@
> -->
<view class="contentboxitemright_item flex-between" @click="toCharge">
<image src="https://czg-qr-order.oss-cn-beijing.aliyuncs.com/indexs/Xchong.png"
mode="aspectFill"></image>
<image src="https://czg-qr-order.oss-cn-beijing.aliyuncs.com/indexs/Xchong.png" mode="aspectFill"></image>
<view class="contentboxitemright_itembox flex-colum">
<text>充值</text>
<text>充值享更多优惠</text>
@@ -39,12 +42,8 @@
</template>
<script setup>
import {
ref,
reactive,
defineProps,
defineEmits
} from 'vue';
import { getMemberConfig, getRechargeConfig } from '@/common/api/index/index.js';
import { ref, reactive, defineProps, defineEmits, onMounted } from 'vue';
// 定义接收的属性
const props = defineProps({
@@ -54,56 +53,91 @@
}
});
import {
productStore
} from '@/stores/user.js';
import { productStore } from '@/stores/user.js';
const scanCodehandle = async (i) => {
const store = productStore();
await store.scanCodeactions()
}
await store.scanCodeactions();
};
const memberindex = (url) => {
uni.pro.navigateTo(url, {
shopId: uni.cache.get('shopId'),
type: 'index',
})
}
type: 'index'
});
};
function tomember() {
const shopUserInfo = uni.cache.get('shopUserInfo')||{}
const shopId = uni.cache.get('shopId')
if (isMember.value) {
const shopUserInfo = uni.cache.get('shopUserInfo') || {};
const shopId = uni.cache.get('shopId');
if (!shopUserInfo.isVip) {
uni.navigateTo({
url: '/user/vip/buy-vip?shopId=' + shopId
})
return
});
return;
}
uni.navigateTo({
url: '/user/vip/vip?shopId=' + shopId
})
});
} else {
uni.showToast({
title: '暂未开放',
icon: 'none'
});
}
}
function toCharge() {
const shopId = uni.cache.get('shopId')
if (isCharge.value) {
const shopId = uni.cache.get('shopId');
uni.navigateTo({
url: '/pages/user/member/czzx?shopId=' + shopId
})
});
} else {
uni.showToast({
title: '暂未开放',
icon: 'none'
});
}
const getQueryString = (url, name) => { //解码
var reg = new RegExp('(^|&|/?)' + name + '=([^&|/?]*)(&|/?|$)', 'i')
var r = url.substr(1).match(reg)
}
const getQueryString = (url, name) => {
//解码
var reg = new RegExp('(^|&|/?)' + name + '=([^&|/?]*)(&|/?|$)', 'i');
var r = url.substr(1).match(reg);
if (r != null) {
return r[2]
return r[2];
}
return null;
};
// 获取会员配置
const isMember = ref(0);
const isCharge = ref(0);
async function getVipConfig() {
try {
const res1 = await getMemberConfig({ shopId: uni.cache.get('shopId') });
const res2 = await getRechargeConfig({ shopId: uni.cache.get('shopId') });
isMember.value = +res1.memberConfig.isOpen;
isCharge.value = +res2.isEnable;
} catch (error) {
console.log(error);
}
}
onMounted(() => {
getVipConfig();
});
defineExpose({
getVipConfig
});
</script>
<style scoped lang="scss">
page {
background: #F6F8FA;
background: #f6f8fa;
}
.content {
@@ -182,7 +216,6 @@
color: #999999;
}
}
}
}
}

View File

@@ -1,17 +1,23 @@
<template>
<view class="container">
<image class="topBack"
:src="userInfo.shopExtendList?(userInfo.shopExtendList[1].value?userInfo.shopExtendList[1].value:'https://czg-qr-order.oss-cn-beijing.aliyuncs.com/my/myTopBack.png'):'https://czg-qr-order.oss-cn-beijing.aliyuncs.com/my/myTopBack.png'"
mode="aspectFill"></image>
<image
class="topBack"
:src="
userInfo.shopExtendList
? userInfo.shopExtendList[1].value
? userInfo.shopExtendList[1].value
: 'https://czg-qr-order.oss-cn-beijing.aliyuncs.com/my/myTopBack.png'
: 'https://czg-qr-order.oss-cn-beijing.aliyuncs.com/my/myTopBack.png'
"
mode="aspectFill"
></image>
<view class="myContent">
<view class="my_info flex-between">
<view class="my_info_left">
<image class="my_info_left_head" :src="userInfo.headImg" mode="aspectFill"></image>
<view class="name">{{ userInfo.nickName }}</view>
</view>
<image class="my_info_right_qr" src="/static/icon/code.png" mode="aspectFill">
</image>
<image class="my_info_right_qr" src="/static/icon/code.png" mode="aspectFill"></image>
<!-- <image class="my_info_right_qr" @click="clickEvent" v-if="userInfo.isVip == 1 && ShopId"
:src="'https://czg-qr-order.oss-cn-beijing.aliyuncs.com/my/my_qRcode.png'" mode="aspectFill">
@@ -19,7 +25,6 @@
<view class="my_info_right" @click="clickEvent" v-if="userInfo.isVip == 0 && ShopId">
<text>免费入会</text>
</view> -->
</view>
<up-gap height="26rpx" bg-color="#F9F9F9"></up-gap>
@@ -29,10 +34,7 @@
<view class="amount">
<view class="u-flex u-flex-between u-m-t-20">
<view class="u-flex">
<image style="width: 50rpx;height: 37rpx;"
src="https://czg-qr-order.oss-cn-beijing.aliyuncs.com/my/storedValue.png"
mode="aspectFill">
</image>
<image style="width: 50rpx; height: 37rpx" src="https://czg-qr-order.oss-cn-beijing.aliyuncs.com/my/storedValue.png" mode="aspectFill"></image>
<text class="color-333 font-14 u-m-l-20">储值</text>
</view>
<view class="u-flex color-666" @click="toChargeList">
@@ -42,20 +44,17 @@
</view>
<view class="card-list">
<view class="card-list-item" v-for="(item,index) in rechargeList" :key="index"
@click="toCharge(item)">
<view class="card-list-item" v-for="(item, index) in rechargeList" :key="index" @click="toCharge(item)">
<up-image radius="20rpx" width="182rpx" height="182rpx" :src="item.logo"></up-image>
<view class="info text-center">
<view class="color-333 u-m-t-14">
<text class="font-10">¥</text>
<text class="font-16 font-700 ">{{item.amount}}</text>
<text class="font-16 font-700">{{ item.amount || '0.00' }}</text>
</view>
<view class="font-12 color-666 u-line-1">{{ item.shopName }}</view>
</view>
</view>
<view class="u-flex u-flex-column u-flex-center" style="width: 12px;" v-if="rechargeList.length"
@click="toChargeList">
<view class="u-flex u-flex-column u-flex-center" style="width: 12px" v-if="rechargeList.length" @click="toChargeList">
<view class="text-center color-333 font-12">查看全部</view>
</view>
</view>
@@ -63,8 +62,7 @@
<view class="vip u-m-t-40">
<view class="u-flex u-flex-between u-m-t-20">
<view class="u-flex">
<image style="width: 50rpx;height: 40rpx;" src="/static/icon/vip.png" mode="aspectFill">
</image>
<image style="width: 50rpx; height: 40rpx" src="/static/icon/vip.png" mode="aspectFill"></image>
<text class="color-333 font-14 u-m-l-20">会员</text>
</view>
<view class="u-flex color-666" @click="tomemberList">
@@ -74,27 +72,49 @@
</view>
<view class="card-list">
<view class="card-list-item" v-for="(item,index) in memberList" :key="index"
@click="tomember(item)">
<view class="card-list-item" v-for="(item, index) in memberList" :key="index" @click="tomember(item)">
<up-image radius="20rpx" width="182rpx" height="182rpx" :src="item.logo"></up-image>
<view class="info text-center">
<view class="font-12 color-666 u-m-t-14 u-line-1">{{ item.shopName }}</view>
</view>
</view>
<view class="u-flex u-flex-column u-flex-center" style="width: 12px;" v-if="memberList.length">
<view class="u-flex u-flex-column u-flex-center" style="width: 12px" v-if="memberList.length">
<view class="text-center color-333 font-12" @click="tomemberList">查看全部</view>
</view>
</view>
</view>
<view class="amount">
<view class="u-flex u-flex-between u-m-t-20">
<view class="u-flex">
<image style="width: 50rpx; height: 44rpx" src="https://czg-qr-order.oss-cn-beijing.aliyuncs.com/my/points.png" mode="aspectFill"></image>
<text class="color-333 font-14 u-m-l-20">积分</text>
</view>
<view class="u-flex color-666" @click="toCoin">
<text class="font-12 u-m-r-4">{{ coinTotal }}家店</text>
<up-icon name="arrow-down" color="#666" size="12px"></up-icon>
</view>
</view>
<view class="card-list">
<view class="card-list-item" v-for="(item, index) in coinList" :key="index" @click="toCoin(item)">
<up-image radius="20rpx" width="182rpx" height="182rpx" :src="item.logo"></up-image>
<view class="info text-center">
<view class="color-333 u-m-t-14">
<text class="font-10">¥</text>
<text class="font-16 font-700">{{ item.accountPoints || '0.00' }}</text>
</view>
<view class="font-12 color-666 u-line-1">{{ item.shopName }}</view>
</view>
</view>
<view class="u-flex u-flex-column u-flex-center" style="width: 12px" v-if="coinList.length" @click="toCoin">
<view class="text-center color-333 font-12">查看全部</view>
</view>
</view>
</view>
</view>
<view class="my_item my_fun u-m-t-30">
<view class="my_fun_list">
<view class="my_list_item" v-for="(item,index) in myFunList" :key="index"
@click="clickTo(item,index)">
<view class="my_list_item" v-for="(item, index) in myFunList" :key="index" @click="clickTo(item, index)">
<view class="my_list_item_left">
<image class="my_list_item_icon" :src="item.icon" mode="aspectFill"></image>
<view class="my_list_item_name">{{ item.name }}</view>
@@ -108,43 +128,31 @@
</view>
</view>
</view>
</view>
</view>
</template>
<script setup>
import {
ref,
computed,
onMounted,
reactive
} from "vue";
import {
onLoad,
onReady,
onShow
} from '@dcloudio/uni-app'
import {
productStore
} from '@/stores/user.js';
import * as vipApi from '@/common/api/market/vip.js'
import * as rechargeApi from '@/common/api/market/recharge.js'
import { ref, computed, onMounted, reactive } from 'vue';
import { onLoad, onReady, onShow } from '@dcloudio/uni-app';
import { productStore } from '@/stores/user.js';
import * as vipApi from '@/common/api/market/vip.js';
import * as rechargeApi from '@/common/api/market/recharge.js';
import { pointsShopList } from '@/common/api/account/points.js';
const store = productStore();
const myFunList = ref([{
name: "积分",
type: "score",
icon: "https://czg-qr-order.oss-cn-beijing.aliyuncs.com/my/points.png",
url: '/user/score/list'
},
const myFunList = ref([
// {
// name: "积分",
// type: "score",
// icon: "https://czg-qr-order.oss-cn-beijing.aliyuncs.com/my/points.png",
// url: '/user/score/list'
// },
{
name: "优惠券",
type: "my_coupon",
icon: "https://czg-qr-order.oss-cn-beijing.aliyuncs.com/my/my_coupon.png"
},
name: '优惠券',
type: 'my_coupon',
icon: 'https://czg-qr-order.oss-cn-beijing.aliyuncs.com/my/my_coupon.png'
}
// {
// name: "我的订单",
// type: "my_order",
@@ -162,23 +170,23 @@
// icon: "https://czg-qr-order.oss-cn-beijing.aliyuncs.com/my/my_member.png"
// },
// { name: "关于", type: "", icon: "https://czg-qr-order.oss-cn-beijing.aliyuncs.com/my/inRegard.png"},
])
]);
const userInfo = reactive({})
const userInfo = reactive({});
const ShopId = ref(uni.cache.get('shopId'))
console.log('ShopId', uni.cache.get('shopId'))
const ShopId = ref(uni.cache.get('shopId'));
console.log('ShopId', uni.cache.get('shopId'));
function tomemberList() {
uni.navigateTo({
url: '/pages/user/member/list'
})
});
}
function tomember(item) {
uni.navigateTo({
url: '/user/vip/vip?shopId=' + item.shopId
})
});
}
const clickEvent = () => {
@@ -186,16 +194,15 @@
if (!userInfo.isVip) {
uni.navigateTo({
url: '/user/vip/buy-vip?shopId=' + ShopId.value
})
});
} else {
uni.navigateTo({
url: '/user/vip/vip?shopId=' + ShopId.value
})
});
}
// if (userInfo.isVip == 0) {
// uni.pro.navigateTo('user/member/memberdetails', {
// shopId: uni.cache.get('shopId')
// })
@@ -208,9 +215,9 @@
} else {
uni.pro.navigateTo('member/list', {
type: 'user_payCode'
})
}
});
}
};
// 我的资产
const Myassets = () => {
@@ -218,110 +225,123 @@
uni.pro.navigateTo('user/member/memberdetails', {
shopId: uni.cache.get('shopId'),
type: 'index'
})
});
} else {
uni.pro.navigateTo('user/member/list', {
shopId: uni.cache.get('shopId'),
type: 'index'
})
}
});
}
};
function toCharge(item) {
uni.navigateTo({
url: '/pages/user/member/czzx?shopId=' + item.shopId
})
});
}
function toChargeList() {
uni.navigateTo({
url: '/pages/user/member/amount-list'
})
});
}
const clickTo = (item, index) => {
if (item.url) {
uni.navigateTo({
url: item.url
})
return
});
return;
}
let shopId = null;
switch (item.type) {
case 'my_order':
uni.pro.switchTab('order/index')
break
uni.pro.switchTab('order/index');
break;
case 'my_member':
uni.pro.navigateTo('user/member/list')
break
uni.pro.navigateTo('user/member/list');
break;
case 'recharge':
if (uni.cache.get('shopId') && uni.cache.get('token')) {
uni.pro.navigateTo('member/index', {
shopId: uni.cache.get('shopId'),
type: 'index',
})
type: 'index'
});
} else {
uni.pro.navigateTo('member/list', {
type: 'user_recharge'
})
});
}
break
break;
case 'points': //积分
if (uni.cache.get('shopId') && uni.cache.get('token')) {
uni.pro.navigateTo('/pagesPoints/index/index', {
shopId: uni.cache.get('shopId'),
type: 'user',
})
type: 'user'
});
} else {
uni.pro.navigateTo('member/list', {
type: 'user_points'
})
});
}
break;
case 'my_coupon': //优惠券
uni.pro.navigateTo('user/coupon', {
shopId: uni.cache.get('shopId') || ''
})
});
break;
case 'myself': //内部页面
uni.pro.navigateTo('user/myself')
uni.pro.navigateTo('user/myself');
break;
case 'scan_applet':
uni.navigateToMiniProgram(JSON.parse(item.value))
break
uni.navigateToMiniProgram(JSON.parse(item.value));
break;
case 'absolute': //外链url
uni.navigateTo({
url: `/pages/webview/webview?url=${item.menuUrl}`
});
break;
}
};
const memberList = ref([]);
const rechargeList = ref([]);
const memberTotal = ref(0);
const rechargeTotal = ref(0);
const coinTotal = ref(0);
const coinList = ref([]);
async function getData() {
const res = await vipApi.list();
memberTotal.value = res.length;
memberList.value = res.slice(0, 3);
const res1 = await rechargeApi.list();
rechargeTotal.value = res1.length;
rechargeList.value = res1.slice(0, 3);
const res3 = await pointsShopList();
coinTotal.value = res3.length;
coinList.value = res3;
}
const memberList = ref([])
const rechargeList = ref([])
const memberTotal=ref(0)
const rechargeTotal=ref(0)
async function getData() {
const res = await vipApi.list()
memberTotal.value=res.length
memberList.value = res.slice(0, 3);
const res1 = await rechargeApi.list()
rechargeTotal.value=res1.length
rechargeList.value = res1.slice(0, 3);
function toCoin() {
uni.navigateTo({
url: '/user/score/list'
});
}
onShow(() => {
store.actionsAPIuser()
store.actionsAPIuser();
if (uni.cache.get('shopId')) {
Object.assign(userInfo, uni.cache.get('orderVIP'))
Object.assign(userInfo, uni.cache.get('orderVIP'));
} else {
Object.assign(userInfo, {
...uni.cache.get('userInfo'),
...uni.cache.get('userInfo').assetsSummary
})
});
}
getData()
})
getData();
});
</script>
<style scoped lang="scss">
@@ -363,7 +383,7 @@
.my_info_right {
width: 136rpx;
height: 48rpx;
background-color: #E3AD7F;
background-color: #e3ad7f;
border-radius: 24rpx;
display: flex;
align-items: center;
@@ -372,7 +392,7 @@
text {
font-weight: 500;
font-size: 24rpx;
color: #FFFFFF;
color: #ffffff;
}
}
@@ -380,11 +400,8 @@
width: 40rpx;
height: 40rpx;
}
}
.my_item {
background-color: #fff;
padding: 0 32rpx;
@@ -429,8 +446,7 @@
.my_list_item_num {
font-weight: 400;
font-size: 20rpx;
color: #E3AD7F;
color: #e3ad7f;
}
}
}
@@ -450,7 +466,7 @@
align-items: center;
justify-content: space-between;
padding: 24rpx 0 26rpx 0;
border-bottom: 1rpx solid #E5E5E5;
border-bottom: 1rpx solid #e5e5e5;
.my_list_item_left {
display: flex;
@@ -477,9 +493,6 @@
}
}
.card-list {
display: grid;
grid-template-columns: repeat(4, 1fr);