diff --git a/src/pages/user/components/UserOrder.tsx b/src/pages/user/components/UserOrder.tsx index 0a17847..56da5cd 100644 --- a/src/pages/user/components/UserOrder.tsx +++ b/src/pages/user/components/UserOrder.tsx @@ -26,7 +26,7 @@ function UserOrder() { }} > - 我的订单 + 商城订单 navTo('/user/order/order', true)} diff --git a/src/rider/orders/index.config.ts b/src/rider/orders/index.config.ts index 9606465..4a1a611 100644 --- a/src/rider/orders/index.config.ts +++ b/src/rider/orders/index.config.ts @@ -1,4 +1,4 @@ export default { - navigationBarTitleText: '配送订单', + navigationBarTitleText: '送水订单', navigationBarTextStyle: 'black' } diff --git a/src/rider/orders/index.tsx b/src/rider/orders/index.tsx index 284d6b1..5ad11eb 100644 --- a/src/rider/orders/index.tsx +++ b/src/rider/orders/index.tsx @@ -388,7 +388,7 @@ export default function RiderOrders() { - {o.id ? `送水订单#${o.id}` : '送水订单'} + {o.userTicketId ? `票号#${o.userTicketId}` : '送水订单'} {getOrderStatusText(o)} diff --git a/src/user/order/order.tsx b/src/user/order/order.tsx index d018696..66300ae 100644 --- a/src/user/order/order.tsx +++ b/src/user/order/order.tsx @@ -104,7 +104,7 @@ function Order() { } > - 我的订单 + 商城订单 {/* 搜索和筛选工具栏 */} diff --git a/src/user/ticket/orders/index.config.ts b/src/user/ticket/orders/index.config.ts index 1671edc..20a313a 100644 --- a/src/user/ticket/orders/index.config.ts +++ b/src/user/ticket/orders/index.config.ts @@ -1,5 +1,5 @@ export default definePageConfig({ - navigationBarTitleText: '配送订单', + navigationBarTitleText: '送水订单', navigationBarTextStyle: 'black', navigationBarBackgroundColor: '#ffffff' })