Files
ys-app/src/pages/business/CRM/customer/customerAudit.vue
2025-09-17 21:52:58 +08:00

257 lines
6.9 KiB
Vue

<!--
* @author wangzhuo
* @date 2025年8月20日
* @description 客户人员审核
-->
<template>
<view class="con-body">
<view class="con-bg">
<!-- 头部 -->
<customHeader ref="customHeaderRef" :title="'客户人员审核'" :leftFlag="true" :rightFlag="list.length > 0">
<template #right>
<view class="head-right" @click="handleReSort">
<uni-icons type="arrow-down" size="20" color="#B7D2FF"></uni-icons>
{{iconType==='arrow-up'?'最新':'最早'}}
</view>
</template>
</customHeader>
<!-- 高度来避免头部遮挡 -->
<view class="top-height" :style="{ paddingTop: navBarPaddingTop + 'px' }"></view>
<!-- 正文内容 -->
<view class="all-body">
<!-- 搜索-->
<view class="search">
<!-- <uni-search-bar class="custom-search" radius="28" placeholder="请输入客户人员名称" clearButton="auto"-->
<!-- cancelButton="none" bgColor="#6FA2F8" textColor="#ffffff"-->
<!-- v-model="searchValue"-->
<!-- />-->
<view class="custom-search"></view>
</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">
<view class="report-list" @click.stop="handleDetail(item)">
<view class="r-list title">
{{ item.cusName }}
<view class="r-right" :class="item.auditStatus ? '' : 'btn-pink' ">
{{ item.auditStatus ? '' : '待您审批' }}
</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.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>
</mescroll-uni>
</view>
</view>
</view>
</template>
<script setup>
import {ref, onMounted, watch} from 'vue'
import customHeader from '@/components/customHeader.vue'
import MescrollUni from 'mescroll-uni/mescroll-uni.vue';
import {getNavBarPaddingTop} from '@/utils/system'
import {getCusUserApprovalList} from "@/api/crm/customer/getCustomer"
// 获取导航栏高度用于内容区域padding
const navBarPaddingTop = ref(0);
onMounted(() => {
navBarPaddingTop.value = getNavBarPaddingTop() * 2;
})
// 搜索内容
let searchValue = ref(null);
// 分页
const mescrollRef = ref(null);
// 防抖计时
let timerId = null;
// 查询搜索跳转
let handleSearch = () => {
// 防抖搜索 console.log(searchValue.value)
if (timerId) clearTimeout(timerId);
timerId = setTimeout(async () => {
// let res = await getList(1, upOption.value.page.size)
await downCallback(mescrollRef.value.mescroll);
clearTimeout(timerId);
timerId = null;
}, 500)
}
watch(searchValue, (newValue, oldValue) => {
handleSearch()
})
// 排序图标
const iconType = ref('arrow-up');
let handleReSort = () => {
iconType.value = iconType.value === 'arrow-down' ? 'arrow-up' : 'arrow-down';
list.value = list.value.reverse();
}
// 查询列表
let list = ref([]);
const upOption = ref({
page: {num: 0, size: 10},
noMoreSize: 5,
empty: {
tip: '~ 空空如也 ~',
icon: "../../../../static/images/mescroll-empty.png"
},
textLoading: '加载中...',
textNoMore: '已经到底了'
});
const downOption = ref({
auto: true,
textInOffset: '下拉刷新',
textOutOffset: '释放更新',
textLoading: '刷新中...'
});
let cssFlag = ref(false);//控制样式
const mescrollInit = (mescroll) => {
cssFlag.value = true;
mescrollRef.value = mescroll;
};
// 下拉刷新
const downCallback = async (mescroll) => {
uni.showLoading();
cssFlag.value = true;
setTimeout(async () => {
try {
// 重置页码为第一页
const res = await getList(1, mescroll.size || upOption.page.size);
list.value = res.list;
// 正确传递 total 参数
mescroll.endSuccess(res.list.length, res.total > (mescroll.size || upOption.page.size));
uni.hideLoading();
} catch (error) {
console.log(error)
mescroll.endErr();
} finally {
cssFlag.value = false;
}
}, 500);
}
// 上拉加载更多
const upCallback = async (mescroll) => {
setTimeout(async () => {
try {
// 使用 mescroll 提供的页码和大小参数
const res = await getList(mescroll.num, mescroll.size);
if (mescroll.num === 1) {
list.value = res.list;
} else {
list.value.push(...res.list);
}
mescroll.endBySize(res.list.length, res.total);
// 正确判断是否还有更多数据
mescroll.endSuccess(res.list.length, res.total > mescroll.num * mescroll.size);
} catch (error) {
mescroll.endErr();
}
}, 500);
}
// 获取数据列表
const getList = (pageIndex, pageSize) => {
return new Promise(async (resolve) => {
let param = {
pageNum: pageIndex,
pageSize,
searchContent: searchValue.value
}
try {
let res = await getCusUserApprovalList(param);
resolve({
list: res.rows,
total: res.total
});
} catch (e) {
console.log(e, "客户人员审核任务列表获取失败");
} finally {
uni.hideLoading();
}
});
}
// 跳转到详情
let handleDetail = (item) => {
const {userId} = item;
uni.navigateTo({
url: "/pages/business/CRM/customer/components/confirmForm",
events: {
refreshUserAuditList() {
handleSearch();
}
},
success(res) {
res.eventChannel.emit('auditCusUser', {data: {userId}, editable: false})
}
})
}
</script>
<style scoped>
.all-body {
/* #ifdef APP-PLUS */
top: 160rpx;
height: calc(100vh - 160rpx);
/* #endif */
/* #ifndef APP-PLUS */
top: 116rpx;
height: calc(100vh - 116rpx);
/* #endif */
}
.scroll-h {
height: 100%;
}
.white-bg {
padding-bottom: 10rpx;
.title {
align-items: flex-start;
}
}
.btn-pink {
white-space: nowrap;
}
</style>