Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Hooke
/
jgdl
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
hookehuyr
2025-07-16 19:33:34 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
f081bfe561a79e573297ae4fa4ebdee77e456a0a
f081bfe5
1 parent
cda2c264
fix(profile): 修正用户信息中关注与被关注数据的显示位置
style(myOrders): 将测试倒计时注释标记为TODO
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
src/pages/myOrders/index.vue
src/pages/profile/index.vue
src/pages/myOrders/index.vue
View file @
f081bfe
<!--
* @Date: 2022-09-19 14:11:06
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2025-07-16 18:2
2:16
* @LastEditTime: 2025-07-16 18:2
3:31
* @FilePath: /jgdl/src/pages/myOrders/index.vue
* @Description: 订单管理页面
-->
...
...
@@ -438,7 +438,7 @@ const loadOrderData = async (isLoadMore = false) => {
details: orderData.details && orderData.details.length > 0 ? orderData.details[0] : null
}
// 为待支付订单添加mock的倒计时时间(1800秒用于测试)
//
TODO:
为待支付订单添加mock的倒计时时间(1800秒用于测试)
if (processedOrder.status === 3) {
processedOrder.remain_time = processedOrder.pay_time || 1800
}
...
...
src/pages/profile/index.vue
View file @
f081bfe
...
...
@@ -12,7 +12,7 @@
<!-- Stats Row -->
<view class="stats-row">
<view class="stat-item">
<text class="stat-number">{{ userInfo.f
ollower
_count }}</text>
<text class="stat-number">{{ userInfo.f
avorite
_count }}</text>
<text class="stat-label">关注</text>
</view>
<view class="stat-item" @click="onOrderManagement">
...
...
@@ -20,7 +20,7 @@
<text class="stat-label">订单</text>
</view>
<view class="stat-item">
<text class="stat-number">{{ userInfo.f
avorite
_count }}</text>
<text class="stat-number">{{ userInfo.f
ollower
_count }}</text>
<text class="stat-label">被关注</text>
</view>
</view>
...
...
Please
register
or
login
to post a comment