shish 2 месяцев назад
Родитель
Сommit
76cbd5fcfe
3 измененных файлов с 7 добавлено и 23 удалено
  1. 0 9
      hdApp/src/admin/home/member.vue
  2. 5 12
      hdApp/src/admin/home/order.vue
  3. 2 2
      hdApp/src/pages.json

+ 0 - 9
hdApp/src/admin/home/member.vue

@@ -1,15 +1,6 @@
 <template>
   <view class="member-page app-content">
     <view class="top-sticky">
-      <view class="page-header">
-        <view class="status-space" :style="{ height: statusBarHeight + 'px' }"></view>
-        <view class="custom-nav">
-          <view class="nav-side"></view>
-          <view class="nav-title">客户</view>
-          <view class="nav-side"></view>
-        </view>
-      </view>
-
       <view class="hero-panel">
       <view class="toolbar">
         <view class="search-style-btn" @click="changeSearchStyle">

+ 5 - 12
hdApp/src/admin/home/order.vue

@@ -1,14 +1,5 @@
 <template>
   <view class="order-page app-content">
-    <view class="page-header">
-      <view class="status-space" :style="{ height: statusBarHeight + 'px' }"></view>
-      <view class="custom-nav">
-        <view class="nav-side"></view>
-        <view class="nav-title">订单</view>
-        <view class="nav-side"></view>
-      </view>
-    </view>
-
     <view class="control-panel">
         <view class="filter-row">
           <view class="filter-chip date-chip">
@@ -757,12 +748,14 @@ export default {
 }
 
 .control-panel {
-  position: relative;
+  position: sticky;
+  top: 0;
+  z-index: 30;
   width: 100%;
   padding: 10upx 22upx 16upx;
   background: linear-gradient(180deg, #f4fbf7 0%, #f8fcfa 60upx, #ffffff 100upx, #ffffff 100%);
   border-radius: 0;
-  box-shadow: none;
+  box-shadow: 0 8upx 20upx rgba(24, 37, 30, 0.06);
   box-sizing: border-box;
 }
 
@@ -867,7 +860,7 @@ export default {
   left: 0;
   right: 0;
   top: 92upx;
-  z-index: 20;
+  z-index: 40;
   max-height: 420upx;
   padding: 20upx 24upx 0;
   border-radius: 18upx;

+ 2 - 2
hdApp/src/pages.json

@@ -5,8 +5,8 @@
 		{ "path": "admin/home/login","style": {"navigationBarTitleText": "","enablePullDownRefresh": false}},
 		{ "path": "admin/home/loginRemind","style": {"navigationBarTitleText": "登录提示","enablePullDownRefresh": false}},
 		{ "path": "admin/home/appLoginRemind","style": {"navigationBarTitleText": "无法登录怎么办","enablePullDownRefresh": false}},
-		{ "path": "admin/home/order", "style": { "navigationBarTitleText": "订单", "enablePullDownRefresh": true, "navigationStyle": "custom" } },
-		{ "path": "admin/home/member", "style": { "navigationBarTitleText": "客户", "enablePullDownRefresh": true, "navigationStyle": "custom" } },
+		{ "path": "admin/home/order", "style": { "navigationBarTitleText": "订单", "enablePullDownRefresh": true} },
+		{ "path": "admin/home/member", "style": { "navigationBarTitleText": "客户", "enablePullDownRefresh": true} },
 		{ "path": "admin/home/apply", "style": { "navigationBarTitleText": "应用", "enablePullDownRefresh": true } },
 		{ "path": "admin/home/close","style": {"navigationBarTitleText": "申请注销账号"}},
 		{"path": "admin/home/register","style": {"navigationBarTitleText": "服务协议"}},