瀏覽代碼

选客户

shish 1 年之前
父節點
當前提交
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>