123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270 |
- <template>
- <view>
- <!-- #ifdef MP-WEIXIN -->
- <u-navbar title=" " :background="{ background: '#F6F7F8' }">
- <view class="slot-wrap">
-
- <u-search v-if="searchType == '0'"
- :focus="true"
- @custom="toSearch(searchWord)"
- @search="toSearch(searchWord)"
- placeholder="搜索..."
- shape="square"
- :action-style="{ color: '#007aff' }"
- action-text="搜索"
- :bg-color="'#ffffff'"
- :show-action = "true"
- v-model="searchWord"
- ></u-search>
- <u-search v-else
- :focus="true"
- @custom="clickCancel"
- placeholder="搜索..."
- shape="square"
- :action-style="{ color: '#007aff' }"
- action-text="取消"
- :bg-color="'#ffffff'"
- v-model="searchWord"
- ></u-search>
- </view>
- </u-navbar>
- <!-- #endif -->
- <!-- #ifndef MP-WEIXIN -->
- <view class="status_bar"></view>
- <view class="content_search">
- <u-search
- :focus="true"
- @custom="clickCancel"
- @search="toSearch"
- placeholder="h5能否自动获取焦点取决于浏览器的实现"
- shape="square"
- :action-style="{ color: '#007aff' }"
- action-text="取消"
- :bg-color="'#ffffff'"
- v-model="searchWord"
- ></u-search>
- </view>
- <!-- #endif -->
- <view class="content1" v-if="'0' == searchType">
- <view v-for="(item, index) in list" :key="index">
- <chatItem @linkTo="toUserInfo" :value="item" :index="index"></chatItem>
- </view>
- </view>
- <view class="content" v-else-if="'1' == searchType">
- <template v-for="(item,index) in list">
- <chatItem @linkTo="linkTo" :value="item" :index="index"></chatItem>
- </template>
- </view>
- <view class="content1" v-else-if="'2' == searchType">
- <addressBook :list="list" :scrollTop="scrollTop" @linkTo="linkToCard"></addressBook>
- </view>
- <view class="content" v-else-if="'3' == searchType || '4' == searchType">
- <template v-for="(item, index) in list">
- <chatItem :value="item" :index="index"></chatItem>
- </template>
- </view>
- </view>
- </template>
- <script>
- import chatItem from '@/components/chatItem.vue';
- import addressBook from '@/components/addressBook.vue'
- import { pinyin } from '../../public/Pinyin.js';
- export default {
- name:'search',
- components:{chatItem,addressBook},
- data() {
- return {
- chatId: '',
- pageNum: -1,
- searchType: '0',
- searchWord: '',
- list: [],
- scrollTop:0
- };
- },
- watch:{
- searchWord:function(v){
- if(this.searchType != '0'){
- this.toSearch(v)
- }
- }
- },
- onPageScroll(e) {
- this.scrollTop = e.scrollTop;
- },
- methods: {
- toUserInfo(userInfo){
- this.$u.route({
- url: 'pageC/businessCard/businessCard',
- params:{ ...userInfo, source: 2}
- })
- },
- clickCancel() {
- this.$u.route({
- type: 'navigateBack'
- });
- },
- linkToCard({ id }) {
- this.$u.route({
- url: 'pageC/businessCard/businessCard',
- params:{ id: id, source: 0}
- });
- },
- toSearch(v) {
- let that = this;
- const keyword = v
- uni.showLoading({
- title: '正在加载',
- mask:true
- })
- console.log("搜索类型"+ that.searchType)
- switch(that.searchType){
- case '0':
- that.$socket.findFriendRequestList(keyword, res => {
- console.log(res)
- if (res.success) {
- that.list = res.userList;
- }
- uni.hideLoading()
- });
- break;
- case '1':
- that.$socket.queryChats(keyword, that.userData.user.operId, res => {
- if (res.success) {
- that.list = res.chats;
- }
- });
- break;
- case '2':
- that.list = that.firendItem.filter(v => {
- let flag = false
- if(v.members.length>0){
- v.members.forEach(m=>{
- if(m.nickName.includes(keyword)
- ||pinyin.getCamelChars(m.nickName).includes(keyword)
- ||pinyin.getFullChars(m.nickName).includes(keyword)){
- flag = true
- }
- })
- }
- return flag
- });
- break;
- case '3':
- that.$socket.getFriendMessageByCondition(this.chatId, that.userData.user.operId, this.pageNum, keyword, res => {
- if (res.success) {
- that.list = res.response.data;
- }
- });
- case '4':
- that.$socket.getGroupMessageByCondition(this.chatId, that.userData.user.operId, this.pageNum, keyword, res => {
- if (res.success) {
- that.list = res.response.data;
- }
- });
- break;
- default:
- }
- },
- linkTo(chat) {
- this.$u.vuex('chatObj',chat);
- this.$u.route({
- url: 'pages/chat/chat',
- params: {}
- });
- }
- },
- onShow() {},
- onLoad({ searchType, chatId }) {
- this.searchType = searchType;
- this.chatId = chatId;
- }
- };
- </script>
- <style lang="scss" scoped>
- .status_bar {
- height: var(--status-bar-height);
- width: 100%;
- }
- .content_search {
- padding: 16rpx;
- background-color: #F6F7F8;
- }
- .content {
- .item {
- width: 750rpx;
- display: flex;
- align-items: center;
- // padding: 20rpx;
- image {
- width: 76rpx;
- height: 76rpx;
- margin: 20rpx;
- border-radius: 12rpx;
- flex: 0 0 76rpx;
- }
- .right {
- overflow: hidden;
- flex: 1 0;
- padding: 20rpx 20rpx 20rpx 0;
- &_top {
- display: flex;
- justify-content: space-between;
- &_name {
- font-size: 28rpx;
- color: $u-main-color;
- flex: 0 0 450rpx;
- overflow: hidden;
- }
- &_time {
- font-size: 22rpx;
- color: $u-light-color;
- }
- }
- &_btm {
- display: flex;
- justify-content: space-between;
- align-items: center;
- font-size: 22rpx;
- color: $u-tips-color;
- padding-top: 10rpx;
- }
- }
- }
- .bg_view {
- background-color: #fafafa;
- }
- .slot-wrap {
- display: flex;
- align-items: center;
- padding: 0 30rpx;
- }
- }
- .content1 {
- height: 100%;
- .list-cell {
- display: flex;
- box-sizing: border-box;
- width: 100%;
- padding: 10px 24rpx;
- overflow: hidden;
- color: #323233;
- font-size: 28rpx;
- line-height: 48rpx;
- background-color: #fff;
- align-items: center;
- image {
- width: 76rpx;
- height: 76rpx;
- border-radius: 12rpx;
- flex: 0 0 76rpx;
- }
- &-name {
- padding-left: 20rpx;
- }
- }
- }
- </style>
|