zhengyiming
2025-03-12 db365a5eff31c040c42463df4966bf34a5de6a6d
apps/taro/src/subpackages/order/order/InnerPage.vue
@@ -22,9 +22,9 @@
const orderType = ref('1');
function goApplyRefund(orderNo: string) {
function goApplyRefund(id: string) {
  Taro.navigateTo({
    url: `${RouterPath.orderApplyRefund}?orderNo=${orderNo}`,
    url: `${RouterPath.orderApplyRefund}?id=${id}`,
    // events: {
    //   submitApplyRefund: function () {},
    // },
@@ -32,7 +32,7 @@
}
function goRefundDetail(orderNo: string) {
  Taro.navigateTo({
    url: `${RouterPath.orderApplyRefund}?orderNo=${orderNo}`,
    url: `${RouterPath.orderRefundResult}?orderNo=${orderNo}`,
  });
}
</script>