订单评价:接入完成

This commit is contained in:
YunaiV
2023-12-14 22:00:36 +08:00
parent 3efb8ecf27
commit 3497261f26
5 changed files with 63 additions and 120 deletions
+3 -4
View File
@@ -232,7 +232,7 @@
<button
class="ss-reset-button cancel-btn"
v-if="state.orderInfo.buttons?.includes('comment')"
@tap="onComment(state.orderInfo.id, state.orderInfo)"
@tap="onComment(state.orderInfo.id)"
>
评价
</button>
@@ -362,10 +362,9 @@
// #endif
// 评价
function onComment(orderSN, orderId) {
function onComment(id) {
sheep.$router.go('/pages/goods/comment/add', {
orderSN,
orderId,
id
});
}