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

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

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

Loading…
Cancel
Save