fix: 上拉分页查询判断
This commit is contained in:
@@ -23,55 +23,59 @@
|
||||
/>
|
||||
</view>
|
||||
|
||||
<!-- 分页部分 -->
|
||||
<mescroll-uni ref="mescrollRef" @init="mescrollInit" @down="downCallback" @up="upCallback"
|
||||
<!-- 分页部分 top="68rpx" -->
|
||||
<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"
|
||||
@touchstart="handleTouchStart(item)"
|
||||
@touchend="handleTouchEnd">
|
||||
<view class="report-list">
|
||||
<view class="w-b-title title" @dblclick.stop="handleDetail(item)">
|
||||
{{ item.cusName }}
|
||||
<!--<view v-if="item.nodeCode" class="r-right btn-edit" @click.prevent="handleCopyInfo(item)"> 复制信息 </view>-->
|
||||
</view>
|
||||
<view class="r-list">
|
||||
<view class="r-left">客户人员名称</view>
|
||||
<view class="r-right">{{ item.userName }}</view>
|
||||
</view>
|
||||
<view class="border-bottom"></view>
|
||||
<block v-for="(item, index) in list" :key="index">
|
||||
<view class="white-bg margin-bottom20"
|
||||
@touchstart="handleTouchStart(item)"
|
||||
@touchend="handleTouchEnd"
|
||||
v-if="item && item.auditStatus !== '办事处审核通过'"
|
||||
>
|
||||
<view class="report-list">
|
||||
<view class="w-b-title title" @dblclick.stop="handleDetail(item)">
|
||||
{{ item.cusName }}
|
||||
<!--<view v-if="item.nodeCode" class="r-right btn-edit" @click.prevent="handleCopyInfo(item)"> 复制信息 </view>-->
|
||||
</view>
|
||||
<view class="r-list">
|
||||
<view class="r-left">客户人员名称</view>
|
||||
<view class="r-right">{{ item.userName }}</view>
|
||||
</view>
|
||||
<view class="border-bottom"></view>
|
||||
|
||||
<view class="r-list">
|
||||
<view class="r-left">性别</view>
|
||||
<view class="r-right">{{ item.sex }}</view>
|
||||
</view>
|
||||
<view class="border-bottom"></view>
|
||||
|
||||
<view class="r-list">
|
||||
<view class="r-left">手机号</view>
|
||||
<view class="r-right">{{ item.mobilePhone || item.iphone }}</view>
|
||||
</view>
|
||||
<view class="border-bottom"></view>
|
||||
|
||||
<view class="r-list">
|
||||
<view class="r-left">部门</view>
|
||||
<view class="r-right">{{ item.userDept }}</view>
|
||||
</view>
|
||||
<view class="border-bottom"></view>
|
||||
|
||||
<view class="r-list">
|
||||
<view class="r-left">业务员认定等级</view>
|
||||
<view class="r-right">{{ item.salesmanThinkLevel }}</view>
|
||||
</view>
|
||||
|
||||
<!--<view v-if="item.systemThinkLevel" class="r-list">
|
||||
<view class="r-left">系统认定等级</view>
|
||||
<view class="r-right">{{ item.systemThinkLevel }}</view>
|
||||
</view>-->
|
||||
|
||||
<view class="r-list">
|
||||
<view class="r-left">性别</view>
|
||||
<view class="r-right">{{ item.sex }}</view>
|
||||
</view>
|
||||
<view class="border-bottom"></view>
|
||||
|
||||
<view class="r-list">
|
||||
<view class="r-left">手机号</view>
|
||||
<view class="r-right">{{ item.mobilePhone || item.iphone }}</view>
|
||||
</view>
|
||||
<view class="border-bottom"></view>
|
||||
|
||||
<view class="r-list">
|
||||
<view class="r-left">部门</view>
|
||||
<view class="r-right">{{ item.userDept }}</view>
|
||||
</view>
|
||||
<view class="border-bottom"></view>
|
||||
|
||||
<view class="r-list">
|
||||
<view class="r-left">业务员认定等级</view>
|
||||
<view class="r-right">{{ item.salesmanThinkLevel }}</view>
|
||||
</view>
|
||||
|
||||
<!-- <view v-if="item.systemThinkLevel" class="r-list">
|
||||
<view class="r-left">系统认定等级</view>
|
||||
<view class="r-right">{{ item.systemThinkLevel }}</view>
|
||||
</view>-->
|
||||
|
||||
</view>
|
||||
</view>
|
||||
</block>
|
||||
</mescroll-uni>
|
||||
</view>
|
||||
</view>
|
||||
@@ -113,7 +117,7 @@ let handleSearch = () => {
|
||||
watch(searchValue, (newValue, oldValue) => {
|
||||
handleSearch()
|
||||
})
|
||||
let clearSearchValue = ()=>{
|
||||
let clearSearchValue = () => {
|
||||
searchValue.value = '';
|
||||
}
|
||||
// 查询列表
|
||||
@@ -151,7 +155,7 @@ const downCallback = async (mescroll) => {
|
||||
list.value = res.list;
|
||||
cssFlag.value = false;
|
||||
// 正确传递 total 参数
|
||||
mescroll.endSuccess(res.list.length, res.total > (mescroll.size || upOption.page.size));
|
||||
mescroll.endSuccess(res.list.length, res.total >= mescroll.size);
|
||||
uni.hideLoading();
|
||||
|
||||
}, 500);
|
||||
@@ -173,7 +177,7 @@ const upCallback = async (mescroll) => {
|
||||
list.value.push(...res.list);
|
||||
}
|
||||
// 正确判断是否还有更多数据
|
||||
mescroll.endSuccess(res.list.length, res.total > mescroll.num * mescroll.size);
|
||||
mescroll.endSuccess(res.list.length, res.total >= mescroll.size);
|
||||
uni.hideLoading();
|
||||
}, 500);
|
||||
} catch (error) {
|
||||
@@ -203,10 +207,8 @@ const getList = (pageIndex, pageSize) => {
|
||||
let handleDetail = (item) => {
|
||||
uni.navigateTo({
|
||||
url: "/pages/business/CRM/customer/components/customerUserEdit",
|
||||
events: {
|
||||
|
||||
},
|
||||
success(res){
|
||||
events: {},
|
||||
success(res) {
|
||||
res.eventChannel.emit('editCusData', {param: item, isAdd: false})
|
||||
}
|
||||
})
|
||||
@@ -216,8 +218,8 @@ let handleDetail = (item) => {
|
||||
let touchTimerId = null;
|
||||
|
||||
// 开始触摸
|
||||
let handleTouchStart = (item)=>{
|
||||
touchTimerId = setTimeout(()=>{
|
||||
let handleTouchStart = (item) => {
|
||||
touchTimerId = setTimeout(() => {
|
||||
// console.log(item, "长按客户人员项")
|
||||
handleChange(item)
|
||||
|
||||
@@ -226,39 +228,39 @@ let handleTouchStart = (item)=>{
|
||||
}
|
||||
|
||||
// 结束触摸
|
||||
let handleTouchEnd = ()=>{
|
||||
if(touchTimerId !== null){
|
||||
let handleTouchEnd = () => {
|
||||
if (touchTimerId !== null) {
|
||||
clearTimeout(touchTimerId);
|
||||
}
|
||||
}
|
||||
|
||||
// 变更主归属人
|
||||
let handleChange = (item)=>{
|
||||
let handleChange = (item) => {
|
||||
|
||||
uni.showModal({
|
||||
title: '是否将该客户人员主的归属人变更为自己?',
|
||||
editable: true,
|
||||
placeholderText: '请输入变更理由',
|
||||
success(res){
|
||||
if(res.confirm){
|
||||
if(res.content){
|
||||
success(res) {
|
||||
if (res.confirm) {
|
||||
if (res.content) {
|
||||
submissionOfChangeOfMainOwner({
|
||||
userId: item.userId,
|
||||
userName: item.userName,
|
||||
reasonForChange: res.content
|
||||
}).then(res=>{
|
||||
if(res.code===200){
|
||||
}).then(res => {
|
||||
if (res.code === 200) {
|
||||
uni.showToast({
|
||||
title: '操作成功'
|
||||
})
|
||||
}else{
|
||||
} else {
|
||||
uni.showToast({
|
||||
title: '操作失败',
|
||||
icon: 'error'
|
||||
})
|
||||
}
|
||||
})
|
||||
}else{
|
||||
} else {
|
||||
uni.showToast({
|
||||
title: '操作失败!变更原因不能为空',
|
||||
icon: 'none'
|
||||
@@ -270,21 +272,21 @@ let handleChange = (item)=>{
|
||||
}
|
||||
|
||||
// 复制信息
|
||||
let handleCopyInfo=(item)=>{
|
||||
let handleCopyInfo = (item) => {
|
||||
const {cusName, userName, sex, iphone, mobilePhone, jobTelphone, userDept, salesmanThinkLevel} = item;
|
||||
/* item = JSON.stringify({
|
||||
'客户名称':item.cusName,
|
||||
'客户人员名称': item.userName,
|
||||
'性别': item.sex,
|
||||
'手机号': item.iphone || item.mobilePhone || item.jobTelphone,
|
||||
'部门': item.userDept,
|
||||
'业务员认定等级': item.salesmanThinkLevel}
|
||||
);
|
||||
console.log(item, '复制信息');*/
|
||||
/* item = JSON.stringify({
|
||||
'客户名称':item.cusName,
|
||||
'客户人员名称': item.userName,
|
||||
'性别': item.sex,
|
||||
'手机号': item.iphone || item.mobilePhone || item.jobTelphone,
|
||||
'部门': item.userDept,
|
||||
'业务员认定等级': item.salesmanThinkLevel}
|
||||
);
|
||||
console.log(item, '复制信息');*/
|
||||
uni.setClipboardData({
|
||||
data: `客户名称:${cusName}
|
||||
客户人员名称:${userName}
|
||||
性别:${iphone||mobilePhone||jobTelphone}
|
||||
性别:${iphone || mobilePhone || jobTelphone}
|
||||
部门:${userDept}
|
||||
业务员认定等级:${salesmanThinkLevel}`,
|
||||
success: function () {
|
||||
@@ -311,7 +313,6 @@ let handleCopyInfo=(item)=>{
|
||||
}
|
||||
|
||||
|
||||
|
||||
.search .btn-search {
|
||||
border: none;
|
||||
background: none;
|
||||
@@ -338,12 +339,13 @@ let handleCopyInfo=(item)=>{
|
||||
|
||||
.white-bg {
|
||||
padding-bottom: 10rpx;
|
||||
.w-b-title{
|
||||
|
||||
.w-b-title {
|
||||
align-items: flex-start;
|
||||
}
|
||||
}
|
||||
|
||||
.white-bg:hover{
|
||||
.white-bg:hover {
|
||||
//background-color: #f1f1f1;
|
||||
background-color: #f1f1f1; /* Chrome, Safari, Opera */
|
||||
box-shadow: 0px 0px 5rpx white;
|
||||
|
||||
@@ -181,7 +181,8 @@ const upCallback = async (mescroll) => {
|
||||
list.value.push(...res.list);
|
||||
}
|
||||
// 正确判断是否还有更多数据
|
||||
mescroll.endSuccess(res.list.length, res.total > mescroll.num * mescroll.size);
|
||||
mescroll.endBySize(res.list.length, res.total)
|
||||
// mescroll.endSuccess(res.list.length, res.total > mescroll.num * mescroll.size);
|
||||
}, 500);
|
||||
} catch (error) {
|
||||
console.log(error)
|
||||
|
||||
Reference in New Issue
Block a user