| | |
| | | <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"> |
| | |
| | | <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> |