From d2220b016809145d7008b3b5a98ff95704a2dfef Mon Sep 17 00:00:00 2001 From: huliyong <2783385703@qq.com> Date: Sun, 20 Apr 2025 19:37:35 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E8=AE=A2=E5=8D=95?= =?UTF-8?q?=E7=AE=A1=E7=90=86=E5=92=8C=E8=AE=A4=E8=AF=81=E9=A1=B5=E9=9D=A2?= =?UTF-8?q?=E7=9A=84=E5=A4=9A=E4=B8=AA=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 修复了打卡链接中缺少`isRead`参数的问题,更新了按钮文本为“打卡记录”,移除了冗余的`btnTexts`变量。在订单详情页面,添加了`showSecondButton`状态来控制第二个按钮的显示。在认证页面,修复了个人简介字段的绑定问题,并调整了宠物类型的数据处理逻辑。在认证结束页面,添加了姓名和电话的输入字段,并优化了地址输入提示。 --- otherPages/authentication/examination/end.vue | 71 +++++++++++++++------- otherPages/authentication/serve/index.vue | 19 +++--- otherPages/orderTakingManage/detail/index.vue | 9 ++- .../myOrdersManage/components/petServicePopup.vue | 2 +- pages/myOrdersManage/components/systemOrder.vue | 3 +- 5 files changed, 67 insertions(+), 37 deletions(-) diff --git a/otherPages/authentication/examination/end.vue b/otherPages/authentication/examination/end.vue index 38d24a9..bc88d67 100644 --- a/otherPages/authentication/examination/end.vue +++ b/otherPages/authentication/examination/end.vue @@ -3,7 +3,7 @@ - + @@ -77,7 +77,8 @@ 微信二维码 - + @@ -96,22 +97,36 @@ 查看工具包 - + - + + + + 姓名: + + + + + + 电话: + - 详细地址: - + 地址: + @@ -127,13 +142,8 @@ - + @@ -145,10 +155,21 @@ diff --git a/pages/myOrdersManage/components/petServicePopup.vue b/pages/myOrdersManage/components/petServicePopup.vue index cbdd376..cd9f1fd 100644 --- a/pages/myOrdersManage/components/petServicePopup.vue +++ b/pages/myOrdersManage/components/petServicePopup.vue @@ -80,7 +80,7 @@ const getServiceTimeText = (timeCode) => { const handleClock = (service) => { if (!props.orderData || !service) return; - let url = `/otherPages/myOrdersManage/clock/index?id=${props.orderData.orderId}&itemID=${props.orderData.id}&serviceId=${service.id}` + let url = `/otherPages/myOrdersManage/clock/index?id=${props.orderData.orderId}&itemID=${props.orderData.id}&serviceId=${service.id}&isRead=true` if(service){ diff --git a/pages/myOrdersManage/components/systemOrder.vue b/pages/myOrdersManage/components/systemOrder.vue index 9146173..4c1784b 100644 --- a/pages/myOrdersManage/components/systemOrder.vue +++ b/pages/myOrdersManage/components/systemOrder.vue @@ -23,7 +23,7 @@ {{ item.address }} 订单为系统派发,请确认订单信息后再抢单 - @@ -64,7 +64,6 @@ import PetServicePopup from './petServicePopup.vue'; required: true } }); - const btnTexts = ['打卡', '打卡', '打开记录'] const orderStatus = ['待接单','进行中','已完成'] // 弹窗相关状态