Explorar el Código

🐛 fix(payment): 修复支付成功页查看订单列表跳转问题

- 将switchTab改为redirectTo,解决订单列表页面跳转异常问题
yourname hace 1 mes
padre
commit
d9be586e47
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      mini/src/pages/payment-success/index.tsx

+ 1 - 1
mini/src/pages/payment-success/index.tsx

@@ -59,7 +59,7 @@ const PaymentSuccessPage = () => {
 
   // 查看订单列表
   const handleViewOrderList = () => {
-    Taro.switchTab({
+    Taro.redirectTo({
       url: '/pages/order-list/index'
     })
   }