hookehuyr

fix(订单页面): 仅对买车订单显示评价按钮

根据业务需求,卖车订单不需要评价功能。添加条件判断,只在viewMode为'buy'时显示评价按钮。
...@@ -135,7 +135,8 @@ ...@@ -135,7 +135,8 @@
135 <nut-button type="default" size="small" @click="viewOrderDetail(order.id)"> 135 <nut-button type="default" size="small" @click="viewOrderDetail(order.id)">
136 查看详情 136 查看详情
137 </nut-button> 137 </nut-button>
138 - <nut-button type="primary" size="small" @click="rateOrder(order.id)" class="ml-2" color="orange" plain> 138 + <!-- 只有买车订单才显示评价按钮,卖车订单不显示 -->
139 + <nut-button v-if="viewMode === 'buy'" type="primary" size="small" @click="rateOrder(order.id)" class="ml-2" color="orange" plain>
139 {{ order.details.review ? '查看评价' : '评价' }} 140 {{ order.details.review ? '查看评价' : '评价' }}
140 </nut-button> 141 </nut-button>
141 </template> 142 </template>
......