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-08-14 18:10:45 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
6947ba0d45be7dcd81345ab16d53a67c79f9b511
6947ba0d
1 parent
07b023e8
feat: 添加待发货标签并更新状态文本
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
src/pages/myOrders/index.vue
src/pages/myOrders/index.vue
View file @
6947ba0
<!--
* @Date: 2022-09-19 14:11:06
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2025-08-1
0 11:36:09
* @LastEditTime: 2025-08-1
4 18:08:20
* @FilePath: /jgdl/src/pages/myOrders/index.vue
* @Description: 订单管理页面
-->
...
...
@@ -34,6 +34,9 @@
<view class="tab-item" :class="{ active: activeTab === 3 }" @click="setActiveTab(3)">
待支付
</view>
<view class="tab-item" :class="{ active: activeTab === 5 }" @click="setActiveTab(5)">
待发货
</view>
<view class="tab-item" :class="{ active: activeTab === 9 }" @click="setActiveTab(9)">
待收货
</view>
...
...
@@ -783,7 +786,7 @@ const getStatusText = (status) => {
case 3:
return '待支付'
case 5:
return viewMode.value === 'verification' ? '已付款' :
(viewMode.value === 'sell' ? '待发货' : '待收货')
return viewMode.value === 'verification' ? '已付款' :
'待发货'
case 9:
return '待收货'
case 11:
...
...
Please
register
or
login
to post a comment