shish 2 anni fa
parent
commit
fa6837f8e3

+ 14 - 3
ghsApp/src/admin/custom/selectCustom.vue

@@ -14,7 +14,8 @@
               <div class="tui-msg-name">
               <div class="tui-msg-name">
                 <div class="tui-user-name">
                 <div class="tui-user-name">
                   {{ item.name }}
                   {{ item.name }}
-                  <text v-if="item.level == 2" class="super-man">大客户</text>
+                  <text v-if="item.level == 2" class="super-man">大客</text>
+                  <text v-if="item.level == 0" class="ls-man">散客</text>
                 </div>
                 </div>
               </div>
               </div>
               <div class="tui-msg-content">
               <div class="tui-msg-content">
@@ -258,16 +259,26 @@ export default {
       width: 500upx;
       width: 500upx;
       font-size: 32upx;
       font-size: 32upx;
       .super-man{
       .super-man{
-        margin-left:20upx;
+        margin-left:30upx;
         color:red;
         color:red;
         font-size:24upx;
         font-size:24upx;
         display:inline-block;
         display:inline-block;
         color:white;
         color:white;
         border:1upx solid green;
         border:1upx solid green;
-        padding:8upx 10upx;
+        padding:6upx 10upx;
         background-color: green;
         background-color: green;
         border-radius: 11upx;
         border-radius: 11upx;
       }
       }
+      .ls-man{
+        margin-left:30upx;
+        font-size:24upx;
+        display:inline-block;
+        color:white;
+        border:1upx solid #a5b1a5;
+        padding:6upx 10upx;
+        background-color: #a5b1a5;
+        border-radius: 11upx;
+      }
     }
     }
   }
   }
 
 

+ 1 - 1
ghsApp/src/admin/home/components/OrderItem.vue

@@ -36,7 +36,7 @@
         <view class="order-info_box">
         <view class="order-info_box">
             <view>方式:</view>
             <view>方式:</view>
             <view>
             <view>
-              <text v-if="item.localOrder ==0">{{ item.sendType == 1?'到店自取': item.sendType == 2?'代叫配送':item.sendType == 3 ? item.wlName :item.sendType == 4?'发快递':''}}</text>
+              <text v-if="item.localOrder ==0">{{ item.sendType == 0?'送货上门':item.sendType == 1?'到店自取': item.sendType == 2?'代叫配送':item.sendType == 3 ? item.wlName :item.sendType == 4?'发快递':''}}</text>
               <text v-else>{{ item.transType == 0 ? '德邦物流' : item.transType == 1 ? '顺丰物流' :item.transType == 2 ? '冷链物流':item.transType == 3 ? '航空物流':item.transType == 4 ? '同城配送':item.transType == 5 ? '到店自取':''}}</text>
               <text v-else>{{ item.transType == 0 ? '德邦物流' : item.transType == 1 ? '顺丰物流' :item.transType == 2 ? '冷链物流':item.transType == 3 ? '航空物流':item.transType == 4 ? '同城配送':item.transType == 5 ? '到店自取':''}}</text>
             </view>
             </view>
         </view>
         </view>

+ 12 - 2
ghsApp/src/admin/home/member.vue

@@ -22,7 +22,8 @@
               <div class="tui-msg-name">
               <div class="tui-msg-name">
                 <div class="tui-user-name">
                 <div class="tui-user-name">
                   {{ item.name }}
                   {{ item.name }}
-                  <text v-if="item.level == 2" class="super-man">大客户</text>
+                  <text v-if="item.level == 2" class="super-man">大客</text>
+                  <text v-if="item.level == 0" class="ls-man">散客</text>
                 </div>
                 </div>
               </div>
               </div>
               <div class="tui-msg-content">
               <div class="tui-msg-content">
@@ -317,7 +318,6 @@ export default {
       font-size: 32upx;
       font-size: 32upx;
       .super-man{
       .super-man{
         margin-left:20upx;
         margin-left:20upx;
-        color:red;
         font-size:24upx;
         font-size:24upx;
         display:inline-block;
         display:inline-block;
         color:white;
         color:white;
@@ -326,6 +326,16 @@ export default {
         background-color: green;
         background-color: green;
         border-radius: 11upx;
         border-radius: 11upx;
       }
       }
+      .ls-man{
+        margin-left:20upx;
+        font-size:24upx;
+        display:inline-block;
+        color:white;
+        border:1upx solid #a5b1a5;
+        padding:8upx 10upx;
+        background-color: #a5b1a5;
+        border-radius: 11upx;
+      }
     }
     }
   }
   }