123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395 |
- <template>
- <view class="liu-list">
- <scroll-view
- class="liu-scroll-left"
- scroll-y="true"
- :scroll-with-animation="true"
- :scroll-into-view="scrollIntoView"
- >
- <!-- <view class="liu-search" id="TOP">
- <image class="liu-search-img" src="../../static/search.png"></image>
- <input class="liu-input" @input="search" v-model="searchStr" placeholder="请输入搜索信息" maxlength="50"
- placeholder-class="liu-placeholder" />
- </view> -->
- <view
- class="left-list"
- v-for="(item, index) of scrollLeftObj"
- :key="index"
- :id="index != '#' ? index : 'BOTTOM'"
- >
- <view class="left-item-title" v-if="item && item.length">{{ index }}</view>
- <view
- class="left-item-card"
- v-for="(mess, inx) in item"
- @click.stop="chooseItem(mess)"
- :key="inx"
- >
- <image
- :style="'border-radius:50%'"
- class="left-item-card-img img-info"
- :src="
- mess.avatar
- ? mess.avatar
- : 'https://web.sdk.qcloud.com/component/TUIKit/assets/avatar_21.png'
- "
- v-if="mess.avatar"
- @click.stop="preview(mess.avatar)"
- ></image>
- <view :style="'border-radius:' + radius" class="left-item-card-img" v-else>
- <!-- {{ (mess.nick && mess.nick.slice(0, 1)) || "" }} -->
- <image
- :style="'border-radius:50%'"
- class="left-item-card-img img-info"
- src="https://bucket.sxdirectpurchase.com/wx/static/img/ImAvatar.png"
- @click.stop="preview(mess.avatar)"
- ></image>
- </view>
- <view
- class="left-item-card-info"
- :style="inx < item.length - 1 ? 'border-bottom: solid #F4F4F4 1rpx;' : ''"
- >
- <view class="left-item-card-name">{{ mess.nick || mess.userID }}</view>
- <view class="left-item-card-phone" v-if="mess[phoneKey]">{{
- mess[phoneKey]
- }}</view>
- </view>
- </view>
- </view>
- <view class="no-data" v-if="!hasData">
- <image class="no-data-img" src="../../static/noData.png"></image>
- <view class="no-data-name">暂无数据</view>
- </view>
- </scroll-view>
- <view class="liu-scroll-right" v-if="hasData">
- <image
- class="liu-scroll-right-top"
- src="../../static/top.png"
- @click.stop="scrollIntoView = 'TOP'"
- ></image>
- <view
- :class="{
- 'liu-scroll-right-name': true,
- 'liu-scroll-right-select': item == scrollIntoView,
- }"
- v-for="(item, index) in scrollRightList"
- :key="index"
- @click.stop="chooseType(item)"
- >{{ item }}
- </view>
- </view>
- </view>
- </template>
- <script>
- import { pinyinUtil } from "./pinyinUtil.js";
- export default {
- props: {
- //数据源
- dataList: {
- type: Array,
- required: true,
- default: () => {
- return [];
- },
- },
- //显示的主键key值
- idKey: {
- type: String,
- default: "id",
- },
- //显示的名字key值
- nameKey: {
- type: String,
- default: "name",
- },
- //显示的电话key值
- phoneKey: {
- type: String,
- default: "phone",
- },
- //显示的头像key值
- imgKey: {
- type: String,
- default: "img",
- },
- //头像圆角(rpx、px、%)
- radius: {
- type: String,
- default: "6rpx",
- },
- },
- data() {
- return {
- searchStr: "",
- scrollIntoView: "",
- scrollLeftObj: {},
- oldObj: {},
- scrollRightList: [],
- hasData: true,
- };
- },
- watch: {
- dataList: {
- immediate: true,
- deep: true,
- handler(newList) {
- if (newList && newList.length) this.cleanData(newList);
- },
- },
- },
- methods: {
- search() {
- if (this.searchStr) {
- let has = false;
- this.scrollLeftObj = JSON.parse(JSON.stringify(this.oldObj));
- for (let i in this.scrollLeftObj) {
- this.scrollLeftObj[i] = this.scrollLeftObj[i].filter((item) => {
- return (
- item[this.nameKey].indexOf(this.searchStr) != -1 ||
- item[this.phoneKey].indexOf(this.searchStr) != -1
- );
- });
- if (this.scrollLeftObj[i].length) has = true;
- }
- if (has) this.hasData = true;
- else this.hasData = false;
- } else {
- this.hasData = true;
- this.scrollLeftObj = JSON.parse(JSON.stringify(this.oldObj));
- }
- },
- cleanData(list) {
- this.scrollRightList = this.getLetter();
- let newList = [];
- list.forEach((res) => {
- let initial = pinyinUtil.getFirstLetter(res.nick.trim());
- let firsfirs = initial ? initial.substring(0, 1) : "";
- if (!newList[firsfirs]) newList[firsfirs] = [];
- newList[firsfirs].push(res);
- console.log(newList[firsfirs]);
- });
- this.scrollRightList.forEach((t) => {
- if (newList[t]) {
- this.$set(this.scrollLeftObj, t, newList[t]);
- } else {
- this.$set(this.scrollLeftObj, t, []);
- }
- });
- let surplusList = [];
- for (var i in newList) {
- let han = this.scrollRightList.find((v) => {
- return v == i;
- });
- if (!han) surplusList.push(newList[i]);
- }
- surplusList.forEach((item) => {
- this.scrollLeftObj["#"] = this.scrollLeftObj["#"].concat(item);
- });
- this.oldObj = JSON.parse(JSON.stringify(this.scrollLeftObj));
- },
- getLetter() {
- let list = [];
- for (var i = 0; i < 26; i++) {
- list.push(String.fromCharCode(65 + i));
- }
- list.push("#");
- return list;
- },
- chooseType(item) {
- if (item == "#") item = "BOTTOM";
- this.scrollIntoView = item;
- },
- preview(img) {
- uni.previewImage({
- current: 0,
- urls: [img],
- });
- },
- chooseItem(item) {
- this.$emit("click", item);
- },
- },
- };
- </script>
- <style>
- /deep/ ::-webkit-scrollbar {
- width: 0;
- height: 0;
- color: transparent;
- display: none;
- }
- </style>
- <style lang="scss" scoped>
- .liu-list {
- width: 100%;
- max-height: 100vh;
- background-color: #f4f4f4;
- box-sizing: border-box;
- padding-top: 1px;
- .liu-scroll-left {
- height: 100%;
- .liu-search {
- width: 100%;
- height: 106rpx;
- background-color: #ffffff;
- display: flex;
- align-items: center;
- justify-content: center;
- position: relative;
- .liu-search-img {
- width: 32rpx;
- height: 32rpx;
- position: absolute;
- left: 64rpx;
- }
- .liu-input {
- width: calc(100% - 64rpx);
- height: 72rpx;
- background: #eeeeee;
- border-radius: 36rpx;
- padding: 0 32rpx 0 80rpx;
- box-sizing: border-box;
- color: #333333;
- }
- .liu-placeholder {
- color: #777777;
- }
- }
- .left-list {
- height: auto;
- .left-item-title {
- width: calc(100% - 24rpx);
- height: 60rpx;
- padding-left: 24rpx;
- text-align: left;
- line-height: 60rpx;
- font-size: 30rpx;
- color: #666666;
- }
- .left-item-card {
- width: 100%;
- height: 112rpx;
- background-color: #ffffff;
- box-sizing: border-box;
- padding-left: 24rpx;
- display: flex;
- align-items: center;
- justify-content: flex-start;
- .left-item-card-img {
- width: 80rpx;
- min-width: 80rpx;
- height: 80rpx;
- // background-color: #cfcfcf;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 36rpx;
- font-weight: bold;
- color: #ffffff;
- }
- .img-info {
- background: none;
- border: solid #f0f0f0 1rpx;
- }
- .left-item-card-info {
- width: 100%;
- margin-left: 32rpx;
- height: 100%;
- display: flex;
- align-items: flex-start;
- justify-content: center;
- flex-direction: column;
- .left-item-card-name {
- font-size: 30rpx;
- line-height: 30rpx;
- color: #333333;
- }
- .left-item-card-phone {
- margin-top: 14rpx;
- font-size: 28rpx;
- line-height: 28rpx;
- color: #999999;
- }
- }
- }
- }
- .no-data {
- width: 100%;
- display: flex;
- align-items: center;
- justify-items: center;
- flex-direction: column;
- margin-top: 25%;
- .no-data-img {
- width: 200rpx;
- height: 200rpx;
- }
- .no-data-name {
- margin-top: 20rpx;
- font-size: 28rpx;
- color: #666666;
- }
- }
- }
- .liu-scroll-right {
- position: fixed;
- right: 0rpx;
- top: 50%;
- transform: translateY(-47%);
- z-index: 999 !important;
- display: flex;
- align-items: center;
- justify-content: center;
- flex-direction: column;
- .liu-scroll-right-top {
- width: 32rpx;
- height: 32rpx;
- margin-right: 14rpx;
- z-index: 999 !important;
- }
- .liu-scroll-right-name {
- width: 32rpx;
- padding-right: 14rpx;
- height: 28rpx;
- font-size: 22rpx;
- color: #333333;
- line-height: 22rpx;
- margin-top: 8rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .liu-scroll-right-select {
- padding: 0;
- margin-right: 14rpx;
- width: 28rpx;
- height: 28rpx;
- border-radius: 50%;
- background: #2991ff;
- color: #ffffff;
- }
- }
- }
- </style>
|