fix(profile): 修正用户信息中关注与被关注数据的显示位置
style(myOrders): 将测试倒计时注释标记为TODO
Showing
2 changed files
with
4 additions
and
4 deletions
| 1 | <!-- | 1 | <!-- |
| 2 | * @Date: 2022-09-19 14:11:06 | 2 | * @Date: 2022-09-19 14:11:06 |
| 3 | * @LastEditors: hookehuyr hookehuyr@gmail.com | 3 | * @LastEditors: hookehuyr hookehuyr@gmail.com |
| 4 | - * @LastEditTime: 2025-07-16 18:22:16 | 4 | + * @LastEditTime: 2025-07-16 18:23:31 |
| 5 | * @FilePath: /jgdl/src/pages/myOrders/index.vue | 5 | * @FilePath: /jgdl/src/pages/myOrders/index.vue |
| 6 | * @Description: 订单管理页面 | 6 | * @Description: 订单管理页面 |
| 7 | --> | 7 | --> |
| ... | @@ -438,7 +438,7 @@ const loadOrderData = async (isLoadMore = false) => { | ... | @@ -438,7 +438,7 @@ const loadOrderData = async (isLoadMore = false) => { |
| 438 | details: orderData.details && orderData.details.length > 0 ? orderData.details[0] : null | 438 | details: orderData.details && orderData.details.length > 0 ? orderData.details[0] : null |
| 439 | } | 439 | } |
| 440 | 440 | ||
| 441 | - // 为待支付订单添加mock的倒计时时间(1800秒用于测试) | 441 | + // TODO: 为待支付订单添加mock的倒计时时间(1800秒用于测试) |
| 442 | if (processedOrder.status === 3) { | 442 | if (processedOrder.status === 3) { |
| 443 | processedOrder.remain_time = processedOrder.pay_time || 1800 | 443 | processedOrder.remain_time = processedOrder.pay_time || 1800 |
| 444 | } | 444 | } | ... | ... |
| ... | @@ -12,7 +12,7 @@ | ... | @@ -12,7 +12,7 @@ |
| 12 | <!-- Stats Row --> | 12 | <!-- Stats Row --> |
| 13 | <view class="stats-row"> | 13 | <view class="stats-row"> |
| 14 | <view class="stat-item"> | 14 | <view class="stat-item"> |
| 15 | - <text class="stat-number">{{ userInfo.follower_count }}</text> | 15 | + <text class="stat-number">{{ userInfo.favorite_count }}</text> |
| 16 | <text class="stat-label">关注</text> | 16 | <text class="stat-label">关注</text> |
| 17 | </view> | 17 | </view> |
| 18 | <view class="stat-item" @click="onOrderManagement"> | 18 | <view class="stat-item" @click="onOrderManagement"> |
| ... | @@ -20,7 +20,7 @@ | ... | @@ -20,7 +20,7 @@ |
| 20 | <text class="stat-label">订单</text> | 20 | <text class="stat-label">订单</text> |
| 21 | </view> | 21 | </view> |
| 22 | <view class="stat-item"> | 22 | <view class="stat-item"> |
| 23 | - <text class="stat-number">{{ userInfo.favorite_count }}</text> | 23 | + <text class="stat-number">{{ userInfo.follower_count }}</text> |
| 24 | <text class="stat-label">被关注</text> | 24 | <text class="stat-label">被关注</text> |
| 25 | </view> | 25 | </view> |
| 26 | </view> | 26 | </view> | ... | ... |
-
Please register or login to post a comment