136 lines
2.9 KiB
Vue
136 lines
2.9 KiB
Vue
<template>
|
|
<view class="content">
|
|
<!-- 搜索 -->
|
|
<piker-search @handleSearch="handleSearch" :placeholder='"找企业"' :width="'100'"
|
|
:isAddress="true"></piker-search>
|
|
|
|
<!-- -->
|
|
<view class="box">
|
|
<view class="phonelist" v-for="(ite,ind) in list" :key="ind" @click="handledetail(ite)" v-if="list.length">
|
|
<view class="left">
|
|
<image :src="ite.logo" mode="aspectFit"></image>
|
|
</view>
|
|
<view class="right">
|
|
<view class="name">
|
|
<text>{{ite.username}}</text>{{ite.pos}}
|
|
</view>
|
|
<view class="c999">{{ite.name}}</view>
|
|
</view>
|
|
<view class="tell" v-if="token" @click="$tools.getCall(user.authlist,ite.mobile)" @click.stop>
|
|
<image src="../../static/tall.png"></image>
|
|
</view>
|
|
</view>
|
|
<view class="nolist" v-if="!list.length">
|
|
<image src="../../static/none.png"></image>
|
|
<text>暂无数据</text>
|
|
</view>
|
|
</view>
|
|
<!-- 秘书处弹框 -->
|
|
<secratary></secratary>
|
|
<!-- 客服 -->
|
|
<message></message>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import {
|
|
mapState
|
|
} from "vuex";
|
|
import pikerSearch from "../../components/search.vue"
|
|
export default {
|
|
data() {
|
|
return {
|
|
list: [],
|
|
page: 1,
|
|
lastPage: 1,
|
|
token: "",
|
|
name: "",
|
|
province: "",
|
|
city: "",
|
|
industryid: "",
|
|
|
|
}
|
|
},
|
|
computed: {
|
|
...mapState(["user"]),
|
|
},
|
|
components: {
|
|
pikerSearch
|
|
},
|
|
onLoad() {
|
|
let that = this
|
|
this.handleList()
|
|
that.token = uni.getStorageSync('token')
|
|
},
|
|
onShow() {
|
|
this.$store.commit("changeSecratary", false);
|
|
},
|
|
onReachBottom() {
|
|
let that = this
|
|
if (!this.lastPage || this.page >= this.lastPage) {
|
|
uni.showToast({
|
|
title: '没有更多数据!',
|
|
icon: 'none'
|
|
})
|
|
return
|
|
}
|
|
this.page++
|
|
this.handleList()
|
|
},
|
|
methods: {
|
|
handleList() {
|
|
let that = this
|
|
return that.$model.getUserConList({
|
|
name: that.name,
|
|
province: that.province,
|
|
city: that.city,
|
|
industryid: that.industryid,
|
|
pageNo: that.page,
|
|
pageSize: 10,
|
|
}).then((res) => {
|
|
console.log("通讯录", res)
|
|
if (res.code != 0) return
|
|
that.list = this.list.concat(res.data.rows)
|
|
that.lastPage = res.data.totalpage
|
|
})
|
|
},
|
|
handleSearch(name, province, city, industryid) {
|
|
// if (!this.token) {
|
|
// this.$tools.msg("登录后查看更多")
|
|
// return
|
|
// }
|
|
this.name = name
|
|
this.province = province
|
|
this.city = city
|
|
this.industryid = industryid
|
|
this.list = []
|
|
this.page = 1
|
|
console.log("搜索返回", this.name, this.province, this.city, this.industryid)
|
|
this.handleList()
|
|
},
|
|
// 详情
|
|
handledetail(ite) {
|
|
// if (!this.token) {
|
|
// this.$tools.msg("登录后查看更多")
|
|
// return
|
|
// }
|
|
uni.navigateTo({
|
|
url: "/pages/phoneList/detail?id=" + ite.id
|
|
})
|
|
}
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.content {
|
|
background-color: #fff;
|
|
}
|
|
|
|
|
|
.box {
|
|
margin-top: 75px;
|
|
width: 100%;
|
|
}
|
|
</style> |