hookehuyr

feat(订单管理): 为买车模式待发货状态添加查看详情按钮

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-28 16:23:21 4 + * @LastEditTime: 2025-07-29 16:38:27
5 * @FilePath: /jgdl/src/pages/myOrders/index.vue 5 * @FilePath: /jgdl/src/pages/myOrders/index.vue
6 * @Description: 订单管理页面 6 * @Description: 订单管理页面
7 --> 7 -->
...@@ -130,6 +130,13 @@ ...@@ -130,6 +130,13 @@
130 </nut-button> 130 </nut-button>
131 </template> 131 </template>
132 132
133 + <!-- 买车模式:待发货状态 -->
134 + <template v-if="viewMode === 'buy' && order.status === 5">
135 + <nut-button type="default" size="small" @click="viewOrderDetail(order.id)">
136 + 查看详情
137 + </nut-button>
138 + </template>
139 +
133 <!-- 已完成状态 --> 140 <!-- 已完成状态 -->
134 <template v-if="order.status === 11"> 141 <template v-if="order.status === 11">
135 <nut-button type="default" size="small" @click="viewOrderDetail(order.id)"> 142 <nut-button type="default" size="small" @click="viewOrderDetail(order.id)">
......