From a2e1192746fcce241cd52ac45b04cc8dc96f8499 Mon Sep 17 00:00:00 2001 From: huliyong <2783385703@qq.com> Date: Tue, 12 Aug 2025 09:10:49 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E8=AE=A2=E5=8D=95=E7=8A=B6=E6=80=81):=20?= =?UTF-8?q?=E9=87=8D=E6=9E=84=E8=AE=A2=E5=8D=95=E7=8A=B6=E6=80=81=E6=98=BE?= =?UTF-8?q?=E7=A4=BA=E4=B8=BA=E7=BB=84=E4=BB=B6=E5=B9=B6=E4=BC=98=E5=8C=96?= =?UTF-8?q?=E7=9B=B8=E5=85=B3=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 新增订单状态组件统一管理不同订单状态显示逻辑 优化订单详情页、求职详情页和招聘详情页的状态显示 添加求职订单列表页面展示待确认订单 更新结算方式选项为"提前支付"和"试用以后支付" 修复订单状态显示不一致问题并移除重复代码 --- components/order-status/index.vue | 161 ++++++++++++++++++++++++ pages.json | 13 ++ pages_subpack/job-hunt/index.vue | 39 +++--- pages_subpack/job-hunt/order-list.vue | 193 +++++++++++++++++++++++++++++ pages_subpack/job-order-detail/index.vue | 96 ++------------ pages_subpack/order-detail/boss.vue | 105 +++------------- pages_subpack/order-detail/index.vue | 92 ++------------ pages_subpack/release/component/master.vue | 4 +- static/image/{ => order}/46524.png | Bin static/image/{ => order}/46525.png | Bin 10 files changed, 434 insertions(+), 269 deletions(-) create mode 100644 components/order-status/index.vue create mode 100644 pages_subpack/job-hunt/order-list.vue rename static/image/{ => order}/46524.png (100%) rename static/image/{ => order}/46525.png (100%) diff --git a/components/order-status/index.vue b/components/order-status/index.vue new file mode 100644 index 0000000..3cb80cc --- /dev/null +++ b/components/order-status/index.vue @@ -0,0 +1,161 @@ + + + + + \ No newline at end of file diff --git a/pages.json b/pages.json index aea3fc8..644bc07 100644 --- a/pages.json +++ b/pages.json @@ -74,6 +74,7 @@ "navigationBarTitleText": "我的招聘", "navigationStyle":"default", "navigationBarBackgroundColor": "#FF7A31", + "enablePullDownRefresh": true, "navigationBarTextStyle": "white" } }, @@ -83,6 +84,7 @@ "navigationBarTitleText": "订单列表", "navigationStyle":"default", "navigationBarBackgroundColor": "#FF7A31", + "enablePullDownRefresh": true, "navigationBarTextStyle": "white" } }, @@ -92,6 +94,17 @@ "navigationBarTitleText": "我的求职", "navigationStyle":"default", "navigationBarBackgroundColor": "#FF7A31", + "enablePullDownRefresh": true, + "navigationBarTextStyle": "white" + } + }, + { + "path": "job-hunt/order-list", + "style": { + "navigationBarTitleText": "订单列表", + "navigationStyle":"default", + "navigationBarBackgroundColor": "#FF7A31", + "enablePullDownRefresh": true, "navigationBarTextStyle": "white" } }, diff --git a/pages_subpack/job-hunt/index.vue b/pages_subpack/job-hunt/index.vue index d6d2e0a..7fa7851 100644 --- a/pages_subpack/job-hunt/index.vue +++ b/pages_subpack/job-hunt/index.vue @@ -1,7 +1,7 @@