gx
queenwuli
2021-01-07 7692df60c0746b9e23a228eb719349c697cfcb06
hive-app/pages/manager/selectEmployee.vue
@@ -1,7 +1,7 @@
<template>
   <view class="container">
      <search-bar @confirm="search" placeholder="输入员工姓名、手机号"></search-bar>
      <view class="member-list flex align-center" v-for="(item, index) in list">
      <view class="member-list flex align-center" v-for="(item, index) in list" @click="checkOnchange(item)">
         <image :src="item.photo?item.photo:'../../static/images/default-avatar.png'" mode="" class="avatar"></image>
         <view class="flex-1 flex align-center justify-between member-list-con">
            <view class="flex flex-v">
@@ -12,8 +12,7 @@
               <text class="font-13 gray mt-10" v-if="item.telphone">{{$utils.encryptAccount(item.telphone)}}</text>
            </view>
            <text class="iconfont" 
               :class="item.isCheck?'iconxuanzhong blue':'iconweixuanzhong gray'"
               @click="checkOnchange(item)"></text>
               :class="item.isCheck?'iconxuanzhong blue':'iconweixuanzhong gray'" ></text>
         </view>
      </view>
      <no-record :isShow="!list.length"></no-record>