songzhen 2 сар өмнө
parent
commit
00709d5f9f

+ 1 - 1
src/components/NavigationBar/LeftMenu.vue

@@ -172,7 +172,7 @@ const profileMenu = [
   },
 ];
 
-const isProfileMenuExpanded = ref(false);
+const isProfileMenuExpanded = ref(true);
 
 watch(
   token,

+ 1 - 1
src/components/TravelProjectDetail/BookInfo.vue

@@ -51,7 +51,7 @@
             v-model="customerName"
             label="联系人"
             maxlength="50"
-            placeholder="请输入联系人姓名"
+            placeholder="请输入联系人"
           />
           <van-field
             v-model="customerMobile"

+ 5 - 3
src/pages/profile/travel-order/[id].vue

@@ -13,6 +13,7 @@
         }}</span>
       </div>
       <div class="mt-10">订单号:{{ orderDetailInfo.orderNo }}</div>
+      <div class="mt-5">下单时间:{{ orderDetailInfo.createTime }}</div>
     </div>
 
     <div class="mt-15 flex flex-col space-y-10 rounded-xl bg-white p-20">
@@ -27,12 +28,13 @@
           orderDetailInfo?.tourismProjectVo?.projectTitle || ""
         }}</span>
       </div>
-      <div>预定时间:{{ orderDetailInfo.createTime }}</div>
+
       <div>
-        行程日期:{{
+        出发日期:{{
           $dayjs(orderDetailInfo.departureDate).format("YYYY-MM-DD")
         }}
       </div>
+      <div>行程天数:{{ orderDetailInfo.countTimes }}</div>
     </div>
 
     <div class="mt-15 rounded-xl bg-white p-20">
@@ -46,7 +48,7 @@
         <span class="ml-5 text-xl font-semibold text-black-3">顾客信息</span>
       </div>
       <div class="flex flex-col space-y-5 mt-15">
-        <div>顾客姓名:{{ orderDetailInfo.customerName }}</div>
+        <div>联系人:{{ orderDetailInfo.customerName }}</div>
         <div>联系电话:{{ orderDetailInfo.customerMobile }}</div>
         <div>备用电话:{{ orderDetailInfo.customerMobileStandby }}</div>
         <div>微信:{{ orderDetailInfo.customerWechat }}</div>