|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341 |
- <template>
- <view class="box">
- <view class="search-box">
- <u-search class="search-boxs" placeholder="请输入" v-model="keyword" action-text="搜索" :show-action="true"
- @search="searchinfo" @custom="searchinfo"></u-search>
- </view>
- <!-- 搜索结果 -->
- <view class="search-result" v-if="recordList.length > 0">
- 筛选结果:<text class="result-num">{{ recordList.length + 1 }}</text>条
- </view>
- <view class="content">
- <view class="content-tips" v-for="(item,index) in recordList" :key='index' @click="gotoDetail(item.id)">
-
- <view class="content-first">
- <view class="left">
- <template v-if="item.level > 0">
- <view class="img">{{ item.level | levelText }}</view>
- </template>
- <view class="test">{{item.name}}</view>
- </view>
- <view class="right">
- {{item.fraction || '0'}}%
- <image class="right-img" src="../../../static/images/arrow-right.png" mode=""></image>
- </view>
- </view>
-
- <view class="content-sec">
- <view class="content-sec-lab">
- 客户手机:<view class="content-sec-lab1">{{item.phone | phoneText}}</view>
- </view>
-
- <view class="content-sec-lab">
- 负责顾问:<view class="content-sec-lab1">{{item.agentName}}</view>
- </view>
-
- <view class="content-sec-lab" style="line-height: 46rpx;">
- 客户意向:
- <text v-if="item.demand.cusSemanticWordsList==null">暂无</text>
- <template v-else>
- <block v-for="(che,ind) in item.demand.cusSemanticWordsList" :key='ind'>
- <view class="content-sec-tips">{{che.name}}</view>
- </block>
- </template>
- </view>
-
- <view class="content-sec-lab">
- 添加时间:<view class="content-sec-lab1">{{item.createTime | formatTime}}</view>
- </view>
- <view class="content-sec-num">
- <view class="">{{item.visitRecord || '--'}}次到访 | {{item.mm || '0'}}<text style="font-size: 24rpx;">min</text></view>
- </view>
- </view>
- </view>
-
- <template v-if="recordList.length==0" >
- <view style="width: 100%;height: 100%;display: flex;align-items: center;">
- <view style="width: 100%;height: 100%;padding-top: 200rpx;">
- <view style="width: 100%;text-align: center;">
- <image style="width: 220rpx;height: 200rpx;"
- src="https://static.quhouse.com/zhikong_xcx_img/nodatalist.png" mode=""></image>
- </view>
- <view style="text-align: center;width: 100%;margin-top: 20rpx;color: #999999;">暂无数据</view>
- </view>
- </view>
- </template>
- </view>
- </view>
- </template>
-
- <script>
- export default {
- data() {
- return {
- keyword: '',
- recordList: [],
- nextPage: 1,
- totalRecord: '',
- buildingID: '',
- permissions: {
- commonly1: false
- }
- }
- },
- onShow() {
- let newmenulist = uni.getStorageSync('weapp_session_Menu_data');
- this.permissions.commonly1 = newmenulist.khgl_ck;
- this.buildingID = uni.getStorageSync('buildingID').id;
- this.nextPage = 1;
- this.recordList = [];
- },
- onReachBottom() {
- if (this.totalRecord == this.nextPage) {
- uni.showToast({
- icon: 'none',
- title: '到底了',
- duration: 2000
- });
- return
- } else {
- this.nextPage += 1;
- this.getMyCustom();
- }
- },
- methods: {
- // 客户详情
- gotoDetail(id) {
- if (this.permissions.commonly1 == true) {
- uni.navigateTo({
- url: `/pages/center/consumer/consumerDetail?id=${id}`
- })
- }
- },
- searchinfo() {
- this.nextPage = 1;
- this.recordList = [];
- this.getMyCustom();
- },
- getMyCustom() {
- var parames = {
- pageNum: this.nextPage,
- pageSize: 10,
- query: {
- projectId: this.buildingID,
- nameOrPhone: this.keyword
- }
- };
- this.$u.post("/customer/customerManagement", parames).then(data => {
- var list = data.results || [];
-
- list.forEach(item => {
- if (item.demand.cusSemanticWordsList != null) {
- item.demand.cusSemanticWordsList.forEach(che => {
- if (che.isInterval == 0) {
- che.name = che.name + che.unit + '-' + che.endName + che.unit;
- }
- })
- }
- })
- this.recordList = [...this.recordList, ...list];
- this.totalRecord = data.totalPage;
- })
- },
- },
-
- filters: {
- // 筛选等级展示文字
- levelText(level) {
- let str = '';
- switch (Number(level)) {
- case 1:
- str = "A"
- break;
- case 2:
- str = "A"
- break;
- case 3:
- str = "A"
- break;
- case 4:
- str = "A"
- break;
- default:
- str = ''
- break;
- }
- return str
- },
-
- // 加密手机
- phoneText(mobile) {
- if (!mobile) return '--'
- return mobile.replace(/(\d{3})\d{4}(\d{4})/, '$1****$2')
- },
-
- // 格式化时间
- formatTime(time) {
- if (!time) return
- return time.substring(5, time.length)
- }
- }
- }
- </script>
-
- <style lang="scss" scoped>
- .box {
- width: 100%;
- min-height: calc(100vh - var(--window-top));
- background: #F8F8F8;
-
- .search-box {
- width: 100%;
- height: 102rpx;
- background: #fff;
- display: flex;
- align-items: center;
- justify-content: center;
-
- .search-boxs {
- width: 686rpx;
-
- }
- }
-
- .search-result {
- width: 100%;
- height: 78rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- background: #F4F8FD;
-
- .result-num {
- font-size: 30rpx;
- color: #2671E2;
- }
- }
- }
-
- .content {
- padding: 0 0 20rpx 0;
-
- .content-tips {
- margin-top: 20rpx;
- background: #fff;
-
- .content-first {
- padding: 19rpx 30rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- box-sizing: border-box;
- color: #292929;
- height: 90rpx;
- font-size: 30rpx;
-
- .left {
- display: flex;
- align-items: center;
-
- .img {
- width: 52rpx;
- height: 52rpx;
- border: 1px solid #E0E0E0;
- border-radius: 50%;
- text-align: center;
- line-height: 50rpx;
- margin-right: 20rpx;
- }
-
- .test {
- font-weight: 500;
- color: #333333;
- }
- }
-
-
- .right {
- display: flex;
- align-items: center;
- color: #2671E2;
- font-size: 30rpx;
-
- .right-img {
- margin: 5rpx 0 0 10rpx;
- width: 14rpx;
- height: 30rpx;
- }
- }
- }
-
-
- .content-sec {
- border-top: 1px solid #E0E0E0;
- padding: 0 30rpx;
- padding-bottom: 30rpx;
- position: relative;
-
- .content-sec-lab {
- margin-top: 30rpx;
- display: flex;
- font-size: 30rpx;
- font-weight: 400;
- color: #666666;
- line-height: 46rpx;
-
- .content-sec-lab1 {
- color: #333333;
- }
-
- .content-sec-tips {
- max-width: 160rpx;
- height: 46rpx;
- background: #F2F2F2;
- border-radius: 6rpx;
- text-align: center;
- line-height: 26rpx;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- font-size: 26rpx;
- font-weight: 400;
- color: #333333;
- margin-right: 20rpx;
- box-sizing: border-box;
- padding: 10rpx 24rpx;
- }
- }
-
- .content-sec-num {
- position: absolute;
- bottom: 25rpx;
- right: 30rpx;
- padding: 3rpx 12rpx;
- background: #F4F8FD;
- border-radius: 6rpx;
- color: #2671E2;
- line-height: 45rpx;
- text-align: center;
- }
- }
-
- .content-last {
- display: flex;
- border-top: 1px solid #E0E0E0;
- // padding: 0 30rpx;
- height: 78rpx;
-
- .content-last-tab {
- width: 33.4%;
- text-align: center;
- font-size: 30rpx;
- font-weight: 400;
- color: #333333;
- line-height: 78rpx;
- border-right: 1px solid #E0E0E0;
- }
- }
-
- }
- }
- </style>
|