shish 1 год назад
Родитель
Сommit
a11efb4648
1 измененных файлов с 6 добавлено и 8 удалено
  1. 6 8
      ghsPad/src/pages/home/components/customerList.vue

+ 6 - 8
ghsPad/src/pages/home/components/customerList.vue

@@ -2,14 +2,13 @@
   <view class="app-select_user">
     <view class="title">请选客户</view>
     <view class="app-userList_box">
-      
-               
-            <view @click="confirmCustom(item)" class="user-list-item_box" v-for="(item,index) in list" :key="item.id">
+
+            <view class="user-list-item_box" @click.stop="cancelChoose()" 
+            style="background-color:#CDB79E;border:1upx solid #CDB79E;text-align:center;">
               <view class="head-box">
-                <view class="name">{{item.name}}</view>
+                <view class="name" style="color:white;font-size:15upx;font-weight:bold;">取消</view>
               </view>
             </view>
-      
 
             <view class="user-list-item_box" @click.stop="fastKd()"
             style="background-color:#3385FF;border:1upx solid #3385FF;text-align:center;">
@@ -18,10 +17,9 @@
               </view>
             </view>
         
-            <view class="user-list-item_box" @click.stop="cancelChoose()" 
-            style="background-color:#CDB79E;border:1upx solid #CDB79E;text-align:center;">
+            <view @click="confirmCustom(item)" class="user-list-item_box" v-for="(item,index) in list" :key="item.id">
               <view class="head-box">
-                <view class="name" style="color:white;font-size:15upx;font-weight:bold;">取消</view>
+                <view class="name">{{item.name}}</view>
               </view>
             </view>