master
王文杰 7 months ago
parent e37265f469
commit 7144df9b0c

@ -30,6 +30,7 @@ const getMemberProfileData = async () => {
const avatar = serviceDomain + JSON.parse(obj.headIcon)[0].url
info.value = {
avatar: avatar,
staffsName: obj.staffsName,
orderTotal: obj.orderTotal,
recycleMiles: obj.recycleMiles,
}
@ -66,7 +67,7 @@ const handleOrderList = () => {
</navigator>
<view class="meta">
<view class="nickname">
{{ memberStore.profile?.nickName || memberStore.profile?.account }}
{{ info.staffsName }}
</view>
<navigator class="extra" url="/pagesMember/profile/profile" hover-class="none">
<text class="update">更新头像昵称</text>
@ -244,8 +245,9 @@ page {
.num {
color: #999a9f;
font-size: 28rpx;
font-size: 30rpx;
margin-top: 20rpx;
font-weight: 600;
}
border-right: 2rpx solid #f2f2f2;

@ -297,9 +297,9 @@ const handleDetailPopupClose = () => {
</view>
<uni-popup ref="orderDetailPopup" type="bottom" background-color="#fff">
<view class="popup-root">
<view class="title">
<view class="title" @click="handleDetailPopupClose">
<view class="text">{{ order.orderStatus?.desc }}</view>
<view class="close" @click="handleDetailPopupClose">X</view>
<view class="close">X</view>
</view>
<view class="cont">
<view class="info">
@ -475,6 +475,7 @@ page {
.text {
font-size: 30rpx;
width: 400rpx;
font-weight: 600;
}
.close {
@ -501,13 +502,12 @@ page {
.icon {
margin-right: 10rpx;
}
.value {
.val{
color: #999a9f;
}
.iphone {
color: #3775F6;
}
}
.loction {
@ -564,6 +564,10 @@ page {
flex-direction: row;
margin: 20rpx 0;
.label {
// color: #999a9f;
}
.val {
font-size: 28rpx;
color: #999a9f;
}
}

Loading…
Cancel
Save