234 lines
6.0 KiB
Vue
234 lines
6.0 KiB
Vue
<template>
|
||
<view class="con-body">
|
||
<view class="con-bg">
|
||
<!-- 头部 -->
|
||
<customHeader ref="customHeaderRef" :title="'查看主归属人变更'" :leftFlag="true" :rightFlag="false"></customHeader>
|
||
<!-- 高度来避免头部遮挡 -->
|
||
<view class="top-height" :style="{ paddingTop: navBarPaddingTop + 'px' }"></view>
|
||
|
||
<view class="all-body">
|
||
<!-- 搜索 @blur="blur" @focus="focus" @input="input" @cancel="cancel" @clear="clear"-->
|
||
<view class="search">
|
||
<!-- <uni-search-bar class="custom-search" radius="28" placeholder="检索功能待开发,感谢您的耐心等待" clearButton="auto"-->
|
||
<!-- cancelButton="none" bgColor="#6FA2F8" textColor="#ffffff" v-model="searchValue" />-->
|
||
<!-- <button type="default" @click="handleSearch" size="mini" class="btn-search">查询</button>-->
|
||
</view>
|
||
|
||
<!-- 分页部分 -->
|
||
<mescroll-uni ref="mescrollRef" @init="mescrollInit" @down="downCallback" @up="upCallback"
|
||
:up="upOption" :down="downOption" :fixed="false" textColor="#ffffff" bgColor="#ffffff"
|
||
class="scroll-h" :class="{ 'loading-scroll': cssFlag }">
|
||
<view class="white-bg margin-bottom20" v-for="(item, index) in list" :key="index"
|
||
@click="showDetail(item)">
|
||
<view>
|
||
<view class="report-list">
|
||
<view class="title">客户:{{ item.cusName }}</view>
|
||
<view class="r-list">
|
||
<view class="r-name">{{ item.visistCode }}</view>
|
||
<view>
|
||
|
||
<view
|
||
class="r-right btn-blue"
|
||
size="mini">
|
||
查看
|
||
</view>
|
||
</view>
|
||
|
||
</view>
|
||
<view class="border-bottom"></view>
|
||
<view class="r-list">
|
||
<view class="r-left">客户人员名称</view>
|
||
<view class="r-right">{{ item.userName}}</view>
|
||
</view>
|
||
<view class="r-list" >
|
||
<view class="r-left">目前业务员</view>
|
||
<view class="r-right">{{ item.belonger }}</view>
|
||
</view>
|
||
<view class="border-bottom"></view>
|
||
<view class="r-list">
|
||
<view class="r-left">创建时间</view>
|
||
<view class="r-right">{{ item.createTime }}</view>
|
||
</view>
|
||
<view class="border-bottom"></view>
|
||
<view class="r-list">
|
||
<view class="r-left">职能</view>
|
||
<view class="r-right">{{ item.function }}</view>
|
||
</view>
|
||
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</mescroll-uni>
|
||
</view>
|
||
|
||
|
||
</view>
|
||
</view>
|
||
</template>
|
||
|
||
<script setup>
|
||
import customHeader from "../../../../../components/customHeader.vue";
|
||
import { onMounted, ref } from 'vue';
|
||
|
||
import {getNavBarPaddingTop} from "../../../../../utils/system";
|
||
import MescrollUni from "mescroll-uni/mescroll-uni.vue";
|
||
import {getQueryVisistList} from "../../../../../api/crm/activity/activity";
|
||
import {queryViewMainOwnerList} from "../../../../../api/crm/mainOwner/mainOwner";
|
||
import {onShow} from "@dcloudio/uni-app";
|
||
|
||
|
||
// 获取导航栏高度用于内容区域padding
|
||
const navBarPaddingTop = ref(0);
|
||
|
||
let queryParams = ref({
|
||
pageNum: 1,
|
||
pageSize: 10,
|
||
})
|
||
|
||
onMounted(() => {
|
||
navBarPaddingTop.value = getNavBarPaddingTop() * 2;
|
||
})
|
||
onShow(()=>{
|
||
getList(queryParams)
|
||
})
|
||
|
||
|
||
let list = ref([])
|
||
//获取列表信息
|
||
function getList(queryParams){
|
||
queryViewMainOwnerList(queryParams.value).then(res => {
|
||
list.value = res.rows
|
||
})
|
||
}
|
||
|
||
let cssFlag = ref(false);//控制样式
|
||
let mescrollRef = ref(null);
|
||
|
||
const mescrollInit = (mescroll) => {
|
||
cssFlag.value = true;
|
||
mescrollRef.value = mescroll;
|
||
};
|
||
|
||
|
||
// 下拉刷新
|
||
const downCallback = async (mescroll) => {
|
||
try {
|
||
setTimeout(async () => {
|
||
queryParams.pageNum = 1;
|
||
queryParams.pageSize = upOption.value.page.size;
|
||
//获取当前页的信息
|
||
const res = await queryViewMainOwnerList(queryParams)
|
||
cssFlag.value = false;
|
||
list.value = res.rows;
|
||
mescroll.resetUpScroll();
|
||
}, 500);
|
||
} catch (error) {
|
||
mescroll.endErr();
|
||
} finally {
|
||
setTimeout(async () => {
|
||
mescroll.endSuccess();
|
||
}, 500);
|
||
}
|
||
}
|
||
|
||
|
||
// 上拉加载更多
|
||
const upCallback = async (mescroll) => {
|
||
try {
|
||
setTimeout(async () => {
|
||
queryParams.pageNum = 1;
|
||
queryParams.pageSize = upOption.value.page.size;
|
||
const res = await queryViewMainOwnerList(queryParams);
|
||
if (mescroll.num === 1) {
|
||
list.value = res.rows;
|
||
} else {
|
||
list.value.push(...res.rows);
|
||
}
|
||
mescroll.endBySize(res.rows.length, res.total);
|
||
}, 500);
|
||
} catch (error) {
|
||
mescroll.endErr();
|
||
}
|
||
|
||
}
|
||
|
||
const upOption = ref({
|
||
page: { num: 0, size: 10 },
|
||
noMoreSize: 5,
|
||
empty: { tip: '~ 空空如也 ~' },
|
||
textLoading: '加载中...',
|
||
textNoMore: '已经到底了'
|
||
});
|
||
|
||
const downOption = ref({
|
||
auto: true,
|
||
textInOffset: '下拉刷新',
|
||
textOutOffset: '释放更新',
|
||
textLoading: '刷新中...'
|
||
});
|
||
|
||
|
||
// 查看信息详情
|
||
function showDetail(item) {
|
||
uni.navigateTo({
|
||
url: './viewMainOwnerDetail?userId=' + item.userId
|
||
})
|
||
}
|
||
|
||
</script>
|
||
|
||
<style lang="scss" scoped>
|
||
|
||
.all-body {
|
||
/* #ifdef APP-PLUS */
|
||
top: 150rpx;
|
||
height: calc(100vh - 75px);
|
||
/* #endif */
|
||
/* #ifndef APP-PLUS */
|
||
top: 120rpx;
|
||
height: calc(100vh);
|
||
/* #endif */
|
||
}
|
||
|
||
.search {
|
||
display: flex;
|
||
}
|
||
|
||
.search .btn-search {
|
||
border: none;
|
||
background: none;
|
||
line-height: normal;
|
||
color: #fff;
|
||
line-height: 56rpx !important;
|
||
padding: 10rpx 0 0;
|
||
text-align: left;
|
||
cursor: pointer;
|
||
}
|
||
|
||
.search .btn-search::after {
|
||
display: none;
|
||
}
|
||
|
||
.search .custom-search {
|
||
width: 80%;
|
||
|
||
}
|
||
|
||
.search .custom-search.uni-searchbar {
|
||
padding-right: 0 !important;
|
||
}
|
||
|
||
.scroll-h {
|
||
/* #ifdef APP-PLUS */
|
||
height: calc(100vh - 120px);
|
||
/* #endif */
|
||
/* #ifndef APP-PLUS */
|
||
height: calc(100vh - 110px);
|
||
/* #endif */
|
||
}
|
||
|
||
.white-bg {
|
||
padding-bottom: 10rpx;
|
||
}
|
||
</style>
|