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-29 16:39:15 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
ffddb99061d5e94e03a0088a24a1bfe46219ad24
ffddb990
1 parent
3a93f009
feat(订单管理): 为买车模式待发货状态添加查看详情按钮
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletions
src/pages/myOrders/index.vue
src/pages/myOrders/index.vue
View file @
ffddb99
<!--
* @Date: 2022-09-19 14:11:06
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2025-07-2
8 16:23:21
* @LastEditTime: 2025-07-2
9 16:38:27
* @FilePath: /jgdl/src/pages/myOrders/index.vue
* @Description: 订单管理页面
-->
...
...
@@ -130,6 +130,13 @@
</nut-button>
</template>
<!-- 买车模式:待发货状态 -->
<template v-if="viewMode === 'buy' && order.status === 5">
<nut-button type="default" size="small" @click="viewOrderDetail(order.id)">
查看详情
</nut-button>
</template>
<!-- 已完成状态 -->
<template v-if="order.status === 11">
<nut-button type="default" size="small" @click="viewOrderDetail(order.id)">
...
...
Please
register
or
login
to post a comment