shish 11 часов назад
Родитель
Сommit
03f1ee0495

+ 2 - 1
mallApp/src/pages/home/components/order-list-view.vue

@@ -378,7 +378,8 @@ export default {
 }
 
 .order-list-view--tab.order-list-view--has-filter .order-body {
-  padding-top: 178upx;
+  /* tabs 88 + 筛选条约 104(增高后),略留余量避免列表顶部被挡住 */
+  padding-top: 200upx;
 }
 
 .pay_list {

+ 9 - 4
mallApp/src/pages/home/order.vue

@@ -16,7 +16,7 @@
       <template #filter>
         <view class="filter-bar">
           <view class="store-filter" @click="openStorePopup">
-            <sprite-icon name="shaixuan" :size="30" custom-class="member-crown-icon" />
+            <sprite-icon name="shaixuan" :size="35" custom-class="member-crown-icon" />
             <text class="filter-text">店铺筛选</text>
             <text v-if="hdName" class="filter-selected">{{ hdName }}</text>
           </view>
@@ -255,7 +255,7 @@ export default {
   right: 0;
   top: 88upx;
   z-index: 98;
-  padding: 20upx 30upx;
+  padding: 10upx 30upx;
   background: #fff;
   border-bottom: 1upx solid $borderColor;
   display: flex;
@@ -268,22 +268,27 @@ export default {
   display: flex;
   align-items: center;
   flex-direction: row;
+  min-height: 64upx;
+  padding: 8upx 4upx 8upx 16upx;
 }
 
 .filter-text {
   margin-left: 12upx;
-  font-size: 28upx;
+  font-size: 32upx;
+  font-weight: 600;
   color: $greenColor;
+  line-height: 1.2;
 }
 
 .filter-selected {
   margin-left: 12upx;
   max-width: 280upx;
-  font-size: 24upx;
+  font-size: 28upx;
   color: $fontColor3;
   overflow: hidden;
   text-overflow: ellipsis;
   white-space: nowrap;
+  line-height: 1.2;
 }
 
 .store-popup {