18 Commits

Author SHA1 Message Date
wangzhuo
3e5a70f147 fix: 优化客户人员所属 2025-09-17 21:59:03 +08:00
wangzhuo
f3e20ce31a fix: 客户人员审核 2025-09-17 21:52:58 +08:00
wangzhuo
409597fa7f fix: 调整滚动视图高度 2025-09-17 21:49:53 +08:00
wangzhuo
1a3c014c83 fix: 主归属人变更审核 2025-09-17 21:47:23 +08:00
wangzhuo
3a1339fc76 feat: 周计划查看支持下拉刷新 2025-09-17 21:44:01 +08:00
wangzhuo
933714be60 Merge remote-tracking branch 'origin/develop' into develop 2025-09-16 18:06:13 +08:00
wangzhuo
24d35be511 fix: 主归属人变更审核 2025-09-16 18:06:00 +08:00
xuli3099
5f39625d20 Merge branch 'develop' of http://123.57.20.168:4000/admin/ys-app into develop 2025-09-16 15:08:33 +08:00
xuli3099
b42a4456bd 修改样式 2025-09-16 15:08:25 +08:00
wangyang
57ed355def Merge remote-tracking branch 'origin/develop' into develop 2025-09-16 14:20:50 +08:00
wangyang
2c2950003c CRM-走访查看-优化新增走访报告报错问题 2025-09-16 14:20:38 +08:00
wangzhuo
b8e8a59da2 Merge remote-tracking branch 'origin/develop' into develop 2025-09-16 08:58:44 +08:00
wangzhuo
20f1c9b857 fix: 客户人员审核 2025-09-16 08:58:29 +08:00
wangyang
842781b8d5 CRM-走访查看-点击查看详情和长按删除事件的优化 2025-09-15 12:55:23 +08:00
wangzhuo
f90bcac11a Merge remote-tracking branch 'origin/develop' into develop 2025-09-12 16:57:18 +08:00
wangzhuo
d36cadd06f fix: 修复网络超时loading提示不隐藏的问题
fix: 修复页面高度适配问题
2025-09-12 16:57:00 +08:00
wangzhuo
19fa062229 fix: 周计划-创建-取消获取当前用户信息 2025-09-12 16:54:04 +08:00
xuli3099
ee228475a9 地址修改提交 2025-09-12 13:14:52 +08:00
18 changed files with 359 additions and 374 deletions

View File

@@ -1,12 +1,16 @@
#调用后台地址
# 公司
VITE_APP_BASE_URL = 'http://118.186.13.120:31302'
# 贝英斯公司
# VITE_APP_BASE_URL = 'http://118.186.13.120:31302'
# VITE_APP_BASE_URL = "http://192.168.236.71:31302"
# VITE_APP_BASE_URL = "http://123.57.20.168:3000"
# 友晟外网
# 友晟test外网
# VITE_APP_BASE_URL = 'https://app-test.718yousheng.com/app'
# 友晟内网
# 友晟test内网
# VITE_APP_BASE_URL = 'https://appi-test.718yousheng.com/app'
# 友晟线上内网
# VITE_APP_BASE_URL = 'https://appi.718yousheng.com/app'
# 友晟线上外网网
VITE_APP_BASE_URL = 'https://app.718yousheng.com/app'

View File

@@ -1,11 +1,16 @@
#调用后台地址
# 公司
# 贝英斯公司
# VITE_APP_BASE_URL = 'http://118.186.13.120:31302'
# VITE_APP_BASE_URL = "http://192.168.236.71:31302"
# VITE_APP_BASE_URL = "http://123.57.20.168:3000"
# 友晟外网
VITE_APP_BASE_URL = 'https://app-test.718yousheng.com/app'
# 友晟内网
# VITE_APP_BASE_URL = 'https://appi-test.718yousheng.com/app'
# 友晟test外网
# VITE_APP_BASE_URL = 'https://app-test.718yousheng.com/app'
# 友晟test内网
# VITE_APP_BASE_URL = 'https://appi-test.718yousheng.com/app'
# 友晟线上内网
# VITE_APP_BASE_URL = 'https://appi.718yousheng.com/app'
# 友晟线上外网网
VITE_APP_BASE_URL = 'https://app.718yousheng.com/app'

View File

@@ -331,7 +331,8 @@
"path": "pages/business/CRM/plan/planView",
//周计划查看
"style": {
"navigationBarTitleText": ""
"navigationBarTitleText": "",
"enablePullDownRefresh": true
}
},
{

View File

@@ -24,7 +24,7 @@
</view>
<!-- 分页部分 top="68rpx" -->
<mescroll-uni ref="mescrollRef" @init="mescrollInit" @down="downCallback" @up="upCallback"
<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}"
>
@@ -126,7 +126,7 @@ let list = ref([]);
const upOption = ref({
page: {num: 0, size: 10},
noMoreSize: 5,
empty: {
empty: {
tip: '~ 空空如也 ~',
icon: "../../../../static/images/mescroll-empty.png"
},
@@ -149,44 +149,31 @@ const mescrollInit = (mescroll) => {
// 下拉刷新
const downCallback = async (mescroll) => {
try {
uni.showLoading();
cssFlag.value = true;
setTimeout(async () => {
// 重置页码为第一页
const res = await getList(1, mescroll.size || upOption.page.size);
list.value = res.list;
cssFlag.value = false;
// 正确传递 total 参数
mescroll.endSuccess(res.list.length, res.total >= mescroll.size);
uni.hideLoading();
}, 500);
} catch (error) {
console.log(error)
mescroll.endErr();
}
uni.showLoading();
cssFlag.value = true;
setTimeout(async () => {
// 重置页码为第一页
const res = await getList(1, mescroll.size || upOption.page.size);
cssFlag.value = false;
list.value = res.list;
// 正确传递 total 参数
mescroll.endSuccess(res.list.length, res.total >= mescroll.size);
}, 500);
}
// 上拉加载更多
const upCallback = async (mescroll) => {
try {
uni.showLoading();
setTimeout(async () => {
// 使用 mescroll 提供的页码和大小参数
const res = await getList(mescroll.num, mescroll.size);
if (mescroll.num === 1) {
list.value = res.list;
} else {
list.value.push(...res.list);
}
// 正确判断是否还有更多数据
mescroll.endSuccess(res.list.length, res.total >= mescroll.size);
uni.hideLoading();
}, 500);
} catch (error) {
console.log(error)
mescroll.endErr();
}
uni.showLoading();
setTimeout(async () => {
// 使用 mescroll 提供的页码和大小参数
const res = await getList(mescroll.num, mescroll.size);
if (mescroll.num === 1) {
list.value = res.list;
} else {
list.value.push(...res.list);
}
// 正确判断是否还有更多数据
mescroll.endSuccess(res.list.length, res.total >= mescroll.size);
}, 500);
}
// 获取数据列表
@@ -197,12 +184,17 @@ const getList = (pageIndex, pageSize) => {
pageSize,
searchContent: searchValue.value
}
let res = await SearchForAllPerson(param);
resolve({
list: res.rows,
total: res.total
});
try {
let res = await SearchForAllPerson(param);
resolve({
list: res.rows,
total: res.total
});
} catch (e) {
console.log(e, '数据获取失败');
} finally {
uni.hideLoading();
}
});
}
@@ -303,41 +295,20 @@ let handleCopyInfo = (item) => {
}
</script>
<style lang="scss" scoped>
<style scoped>
.all-body {
/* #ifdef APP-PLUS */
top: 150rpx;
height: calc(100vh - 75px);
top: 160rpx;
height: calc(100vh - 160rpx);
/* #endif */
/* #ifndef APP-PLUS */
top: 120rpx;
height: calc(100vh);
top: 116rpx;
height: calc(100vh - 116rpx);
/* #endif */
}
.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;
}
.scroll-h {
/* #ifdef APP-PLUS */
height: calc(100vh - 120px);
/* #endif */
/* #ifndef APP-PLUS */
height: calc(100vh - 110px);
/* #endif */
height: 100%;
}
.white-bg {
@@ -348,10 +319,4 @@ let handleCopyInfo = (item) => {
}
}
.white-bg:hover {
//background-color: #f1f1f1;
background-color: #f1f1f1; /* Chrome, Safari, Opera */
box-shadow: 0px 0px 5rpx white;
//filter: rgba(237, 242, 250, 0.5);
}
</style>

View File

@@ -612,12 +612,11 @@ let submitForm = async () => {
uni.showToast({
title: "更新成功"
})
const eventChannel = instance.getOpenerEventChannel();
eventChannel.emit("refreshCusUserList");
setTimeout(()=>{
uni.navigateBack();
const eventChannel = instance.getOpenerEventChannel();
eventChannel.emit("refreshCusUserList");
},1000);
}else{
uni.showToast({
title: "操作失败",

View File

@@ -7,7 +7,13 @@
<view class="con-body">
<view class="con-bg">
<!-- 头部 -->
<customHeader ref="customHeaderRef" :title="'客户人员审核'" :leftFlag="true" :rightFlag="false">
<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>
<!-- 高度来避免头部遮挡 -->
@@ -17,12 +23,12 @@
<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"-->
<!-- />-->
<!-- <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>
</view>
<!-- 分页部分 -->
<mescroll-uni ref="mescrollRef" @init="mescrollInit" @down="downCallback" @up="upCallback"
@@ -101,18 +107,22 @@ let handleSearch = () => {
watch(searchValue, (newValue, oldValue) => {
handleSearch()
})
let clearSearchValue = () => {
searchValue.value = '';
// 排序图标
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: {
empty: {
tip: '~ 空空如也 ~',
icon: "../../static/images/mescroll-empty.png"
icon: "../../../../static/images/mescroll-empty.png"
},
textLoading: '加载中...',
textNoMore: '已经到底了'
@@ -133,10 +143,11 @@ const mescrollInit = (mescroll) => {
// 下拉刷新
const downCallback = async (mescroll) => {
try {
uni.showLoading();
cssFlag.value = true;
setTimeout(async () => {
uni.showLoading();
cssFlag.value = true;
setTimeout(async () => {
try {
// 重置页码为第一页
const res = await getList(1, mescroll.size || upOption.page.size);
@@ -144,17 +155,21 @@ const downCallback = async (mescroll) => {
// 正确传递 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);
} catch (error) {
console.log(error)
mescroll.endErr();
}
}
}, 500);
}
// 上拉加载更多
const upCallback = async (mescroll) => {
try {
setTimeout(async () => {
setTimeout(async () => {
try {
// 使用 mescroll 提供的页码和大小参数
const res = await getList(mescroll.num, mescroll.size);
if (mescroll.num === 1) {
@@ -165,11 +180,11 @@ const upCallback = async (mescroll) => {
mescroll.endBySize(res.list.length, res.total);
// 正确判断是否还有更多数据
mescroll.endSuccess(res.list.length, res.total > mescroll.num * mescroll.size);
}, 500);
} catch (error) {
console.log(error)
mescroll.endErr();
}
} catch (error) {
mescroll.endErr();
}
}, 500);
}
// 获取数据列表
@@ -180,12 +195,17 @@ const getList = (pageIndex, pageSize) => {
pageSize,
searchContent: searchValue.value
}
let res = await getCusUserApprovalList(param);
resolve({
list: res.rows,
total: res.total
});
try {
let res = await getCusUserApprovalList(param);
resolve({
list: res.rows,
total: res.total
});
} catch (e) {
console.log(e, "客户人员审核任务列表获取失败");
} finally {
uni.hideLoading();
}
});
}
@@ -210,22 +230,17 @@ let handleDetail = (item) => {
<style scoped>
.all-body {
/* #ifdef APP-PLUS */
top: 150rpx;
height: calc(100vh - 75px);
top: 160rpx;
height: calc(100vh - 160rpx);
/* #endif */
/* #ifndef APP-PLUS */
top: 120rpx;
height: calc(100vh);
top: 116rpx;
height: calc(100vh - 116rpx);
/* #endif */
}
.scroll-h {
/* #ifdef APP-PLUS */
height: calc(100vh - 120px);
/* #endif */
/* #ifndef APP-PLUS */
height: calc(100vh - 110px);
/* #endif */
height: 100%;
}
.white-bg {

View File

@@ -134,7 +134,7 @@ const upOption = ref({
noMoreSize: 5,
empty: {
tip: '~ 空空如也 ~',
icon: "../../static/images/mescroll-empty.png"
icon: "../../../../static/images/mescroll-empty.png"
},
textLoading: '加载中...',
textNoMore: '已经到底了'
@@ -155,27 +155,27 @@ const mescrollInit = (mescroll) => {
// 下拉刷新
const downCallback = async (mescroll) => {
try {
cssFlag.value = true;
uni.showLoading();
setTimeout(async () => {
cssFlag.value = true;
uni.showLoading();
setTimeout(async () => {
try {
// 重置页码为第一页
const res = await getList(1, mescroll.size || upOption.page.size);
cssFlag.value = false;
list.value = res.list;
// 正确传递 total 参数
mescroll.endSuccess(res.list.length, res.total > (mescroll.size || upOption.page.size));
uni.hideLoading();
}, 500);
} catch (error) {
console.log(error)
mescroll.endErr();
}
mescroll.endSuccess(res.list.length, res.total >= mescroll.size);
} catch (error) {
mescroll.endErr();
} finally {
cssFlag.value = false;
}
}, 500);
}
// 上拉加载更多
const upCallback = async (mescroll) => {
try {
setTimeout(async () => {
setTimeout(async () => {
try {
// 使用 mescroll 提供的页码和大小参数
const res = await getList(mescroll.num, mescroll.size);
if (mescroll.num === 1) {
@@ -184,13 +184,12 @@ const upCallback = async (mescroll) => {
list.value.push(...res.list);
}
// 正确判断是否还有更多数据
mescroll.endBySize(res.list.length, res.total)
mescroll.endSuccess(res.list.length, res.total >= mescroll.size);
// mescroll.endSuccess(res.list.length, res.total > mescroll.num * mescroll.size);
}, 500);
} catch (error) {
console.log(error)
mescroll.endErr();
}
} catch (error) {
mescroll.endErr();
}
}, 500);
}
// 获取数据列表
@@ -201,12 +200,18 @@ const getList = (pageIndex, pageSize) => {
pageSize,
searchContent: searchValue.value
}
try {
let res = await SearchForAllCustomersSalesperson(param);
resolve({
list: res.rows,
total: res.total
});
} catch (e) {
console.log(e, "获取所有客户人员所属失败");
} finally {
uni.hideLoading();
}
let res = await SearchForAllCustomersSalesperson(param);
resolve({
list: res.rows,
total: res.total
});
});
}
@@ -217,6 +222,7 @@ let handleDetail = (item) => {
url: "/pages/business/CRM/customer/components/customerUserEdit",
events: {
refreshCusUserList() {
console.log('refreshCusUserList',"响应刷新")
handleSearch();
}
},
@@ -224,7 +230,7 @@ let handleDetail = (item) => {
res.eventChannel.emit('editCusData', {param: item, isAdd: false})
}
})
}else{
} else {
uni.showToast({
title: '已完成审核,不可修改',
icon: 'none'
@@ -278,16 +284,15 @@ let handleDelete = async (item) => {
<style lang="scss" scoped>
.all-body {
/* #ifdef APP-PLUS */
top: 150rpx;
height: calc(100vh - 75px);
top: 160rpx;
height: calc(100vh - 160rpx);
/* #endif */
/* #ifndef APP-PLUS */
top: 120rpx;
height: calc(100vh);
top: 116rpx;
height: calc(100vh - 116rpx);
/* #endif */
}
.search .btn-search {
border: none;
background: none;

View File

@@ -80,9 +80,9 @@ let cssFlag=ref(false);//控制样式
const upOption = ref({
page: { num: 0, size: 10 },
noMoreSize: 5,
empty: {
tip: '~ 空空如也 ~',
icon: "../../static/images/mescroll-empty.png"
empty: {
tip: '~ 空空如也 ~',
icon: "../../../../static/images/mescroll-empty.png"
},
textLoading: '加载中...',
textNoMore: '已经到底了'
@@ -195,15 +195,14 @@ const radioChange = (e) => {
<style lang="scss" scoped>
.all-body {
/* #ifdef APP-PLUS */
top: 150rpx;
height: calc(100vh - 75px);
top: 160rpx;
height: calc(100vh - 160rpx);
/* #endif */
/* #ifndef APP-PLUS */
top: 120rpx;
height: calc(100vh);
top: 116rpx;
height: calc(100vh - 116rpx);
/* #endif */
}
.search .btn-search {
border: none;
background: none;

View File

@@ -602,11 +602,11 @@ let handleReject = () => {
async success(res){
if(res.confirm){
if(res.content){
let res = await changeOfPrimaryOwnershipNoApproved({
let response = await changeOfPrimaryOwnershipNoApproved({
opinionOwn: res.content,
userId: formData.value.userId
})
if(res.code==200){
if(response.code===200){
uni.showToast({
title: '操作成功',
success(){

View File

@@ -16,13 +16,12 @@
<!-- 正文内容 -->
<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"-->
<!-- />-->
<!-- <button type="default" @click="clearSearchValue" size="mini" class="btn-search">清空</button>-->
<!-- </view>-->
<!-- <view class="search">-->
<!-- <uni-search-bar class="custom-search" radius="28" placeholder="请输入客户人员名称" clearButton="auto"-->
<!-- cancelButton="none" bgColor="#6FA2F8" textColor="#ffffff"-->
<!-- v-model="searchValue"-->
<!-- />-->
<!-- </view>-->
<!-- 分页部分 -->
<mescroll-uni ref="mescrollRef" @init="mescrollInit" @down="downCallback" @up="upCallback"
@@ -31,9 +30,11 @@
>
<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" >
<view class="r-list title">
{{ item.cusName }}
<view class="r-right" :class="item.auditStatus ? '' : 'btn-pink' ">{{item.auditStatus?'':'待您审批'}}</view>
<view class="r-right no-wrap" :class="item.auditStatus ? 'btn-blue' : 'btn-pink' ">
{{ item.auditStatus ? item.auditStatus : '待您审核' }}
</view>
</view>
<view class="r-list">
<view class="r-left">客户人员名称</view>
@@ -98,7 +99,8 @@ const mescrollRef = ref(null);
let timerId = null;
// 查询搜索跳转
let handleSearch = () => {
// 防抖搜索 console.log(searchValue.value)
// 防抖搜索
console.log(searchValue.value)
if (timerId) clearTimeout(timerId);
timerId = setTimeout(async () => {
@@ -113,7 +115,7 @@ let handleSearch = () => {
watch(searchValue, (newValue, oldValue) => {
handleSearch()
})
let clearSearchValue = ()=>{
let clearSearchValue = () => {
searchValue.value = '';
}
// 查询列表
@@ -122,7 +124,10 @@ let list = ref([]);
const upOption = ref({
page: {num: 0, size: 10},
noMoreSize: 5,
empty: {tip: '~ 空空如也 ~'},
empty: {
tip: '~ 空空如也 ~',
icon: "../../../../../static/images/mescroll-empty.png"
},
textLoading: '加载中...',
textNoMore: '已经到底了'
});
@@ -142,28 +147,28 @@ const mescrollInit = (mescroll) => {
// 下拉刷新
const downCallback = async (mescroll) => {
try {
cssFlag.value = true;
uni.showLoading();
setTimeout(async () => {
cssFlag.value = true;
uni.showLoading();
setTimeout(async () => {
try {
// 重置页码为第一页
const res = await getList(1, mescroll.size || upOption.page.size);
list.value = res.list;
cssFlag.value = false;
// 正确传递 total 参数
mescroll.endSuccess(res.list.length, res.total > (mescroll.size || upOption.page.size));
uni.hideLoading();
}, 500);
} catch (error) {
console.log(error)
mescroll.endErr();
}
} catch (error) {
console.log(error)
mescroll.endErr();
} finally {
cssFlag.value = false;
}
}, 500);
}
// 上拉加载更多
const upCallback = async (mescroll) => {
try {
setTimeout(async () => {
setTimeout(async () => {
try {
// 使用 mescroll 提供的页码和大小参数
const res = await getList(mescroll.num, mescroll.size);
if (mescroll.num === 1) {
@@ -173,11 +178,11 @@ const upCallback = async (mescroll) => {
}
// 正确判断是否还有更多数据
mescroll.endSuccess(res.list.length, res.total > mescroll.num * mescroll.size);
}, 500);
} catch (error) {
console.log(error)
mescroll.endErr();
}
} catch (error) {
console.log(error)
mescroll.endErr();
}
}, 500);
}
// 获取数据列表
@@ -188,12 +193,16 @@ const getList = (pageIndex, pageSize) => {
pageSize,
searchContent: searchValue.value
}
let res = await personnelAwaitingReviewForChange(param);
resolve({
list: res.rows,
total: res.total
});
try {
let res = await personnelAwaitingReviewForChange(param);
resolve({
list: res.rows,
total: res.total
});
} catch (e) {
} finally {
uni.hideLoading();
}
});
}
@@ -203,11 +212,11 @@ let handleDetail = (item) => {
uni.navigateTo({
url: "/pages/business/CRM/mainOwner/audit/confirmForm",
events: {
refreshOwnerChangeList(){
refreshOwnerChangeList() {
handleSearch();
}
},
success(res){
success(res) {
res.eventChannel.emit('auditCusOwner', {data: {userId}, editable: false})
}
})
@@ -218,60 +227,39 @@ let handleDetail = (item) => {
<style scoped>
.all-body {
/* #ifdef APP-PLUS */
top: 150rpx;
height: calc(100vh - 75px);
top: 160rpx;
height: calc(100vh - 160rpx);
/* #endif */
/* #ifndef APP-PLUS */
top: 120rpx;
height: calc(100vh);
top: 116rpx;
height: calc(100vh - 116rpx);
/* #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 {
.scroll-h{
/* #ifdef APP-PLUS */
height: calc(100vh - 120px);
top: 160rpx;
height: calc(100vh - 160rpx);
/* #endif */
/* #ifndef APP-PLUS */
height: calc(100vh - 110px);
top: 116rpx;
height: calc(100vh - 116rpx);
/* #endif */
}
.white-bg {
padding-bottom: 10rpx;
.title{
.title {
align-items: flex-start;
}
}
.btn-pink{
.no-wrap {
white-space: nowrap;
}
.btn-blue {
border-radius: 10rpx;
}
</style>

View File

@@ -1,19 +1,17 @@
<!--
* @description 查看主归属人变更
* @update date 2025/9/17 21:45
-->
<template>
<view class="con-body">
<view class="con-bg">
<!-- 头部 -->
<customHeader ref="customHeaderRef" :title="'查看主归属人变更'" :leftFlag="true" :rightFlag="false"></customHeader>
<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"
@@ -22,25 +20,17 @@
@click="showDetail(item)">
<view>
<view class="report-list">
<view class="title">客户{{ item.cusName }}</view>
<view class="r-list">
<view class="r-list title">{{ item.cusName }}
<view class="r-name">{{ item.visistCode }}</view>
<view>
<view
class="r-right btn-blue"
size="mini">
查看
</view>
</view>
<view class="r-right btn-blue no-wrap"> 查看 </view>
</view>
<view class="border-bottom"></view>
<view class="r-list">
<view class="r-left">客户人员名称</view>
<view class="r-right">{{ item.userName}}</view>
<view class="r-right">{{ item.userName }}</view>
</view>
<view class="r-list" >
<view class="r-list">
<view class="r-left">目前业务员</view>
<view class="r-right">{{ item.belonger }}</view>
</view>
@@ -68,7 +58,7 @@
<script setup>
import customHeader from "../../../../../components/customHeader.vue";
import { onMounted, ref } from 'vue';
import {onMounted, ref} from 'vue';
import {getNavBarPaddingTop} from "../../../../../utils/system";
import MescrollUni from "mescroll-uni/mescroll-uni.vue";
@@ -88,16 +78,17 @@ let queryParams = ref({
onMounted(() => {
navBarPaddingTop.value = getNavBarPaddingTop() * 2;
})
onShow(()=>{
onShow(() => {
getList(queryParams)
})
let list = ref([])
//获取列表信息
function getList(queryParams){
function getList(queryParams) {
queryViewMainOwnerList(queryParams.value).then(res => {
list.value = res.rows
list.value = res.rows
})
}
@@ -153,11 +144,11 @@ const upCallback = async (mescroll) => {
}
const upOption = ref({
page: { num: 0, size: 10 },
page: {num: 0, size: 10},
noMoreSize: 5,
empty: {
tip: '~ 空空如也 ~',
icon: "../../static/images/mescroll-empty.png"
empty: {
tip: '~ 空空如也 ~',
icon: "../../../../../static/images/mescroll-empty.png"
},
textLoading: '加载中...',
textNoMore: '已经到底了'
@@ -180,57 +171,43 @@ function showDetail(item) {
</script>
<style lang="scss" scoped>
<style scoped>
.all-body {
/* #ifdef APP-PLUS */
top: 150rpx;
height: calc(100vh - 75px);
top: 160rpx;
height: calc(100vh - 160rpx);
/* #endif */
/* #ifndef APP-PLUS */
top: 120rpx;
height: calc(100vh);
top: 116rpx;
height: calc(100vh - 116rpx);
/* #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 {
.scroll-h{
/* #ifdef APP-PLUS */
height: calc(100vh - 120px);
top: 160rpx;
height: calc(100vh - 160rpx);
/* #endif */
/* #ifndef APP-PLUS */
height: calc(100vh - 110px);
top: 116rpx;
height: calc(100vh - 116rpx);
/* #endif */
}
.white-bg {
padding-bottom: 10rpx;
}
.title {
align-items: baseline
}
.no-wrap {
white-space: nowrap;
}
.btn-blue {
border-radius: 10rpx;
}
</style>

View File

@@ -138,6 +138,18 @@ function getCrmCusUserNewChangeOwnerList() {
/* min-height: 100vh; */
}
.all-body {
/* #ifdef APP-PLUS */
top: 160rpx;
height: calc(100vh - 160rpx);
/* #endif */
/* #ifndef APP-PLUS */
top: 116rpx;
height: calc(100vh - 116rpx);
/* #endif */
overflow-y: auto;
}
.white-bg {
padding-bottom: 10rpx;
}

View File

@@ -27,14 +27,17 @@
: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.prevent="touchstart(item)" @touchend.prevent="touchend">
@longpress="touchstart(item)"
longpress-time="1500"
@tap="touchend(item)"
>
<view>
<view class="report-list">
<view class="title">客户{{ item.cusName }}</view>
<view class="r-list">
<view class="r-name">{{ item.visistCode }}</view>
<view @touchstart.stop="handleStatusTouchStart"
@touchend.stop="handleStatusTouchEnd" @click.stop="chooseStatus(item)">
<view
@click.stop="chooseStatus(item)">
<view v-if="item.status == '驳回'" class="r-right btn-orange" size="mini">
{{ item.status == '驳回' ? '再次提交' : item.status }}
</view>
@@ -211,8 +214,6 @@ const getVisitorReportList = (pageNum, pageSize) => {
}
let Loop = ref(0)
let now
const visistId = ref();
const cusName = ref();
const cusId = ref();
@@ -223,9 +224,6 @@ function touchstart(item) {
cusName.value = item.cusName
cusId.value = item.cusId
status.value = item.status
now = new Date();
clearInterval(Loop.value); //再次清空定时器,防止重复注册定时器
Loop.value = setTimeout(() => {
uni.showModal({
title: '删除',
content: '请问要删除本条消息吗?',
@@ -257,21 +255,29 @@ function touchstart(item) {
}
}
});
}, 750);
}
function touchend() {
let endDate = new Date();
console.log('结束时间', endDate)
let cha = endDate.getTime() - now.getTime();
console.log(cha, 'casd')
if (cha < 750) {
let isLongPressed = ref(false);
function touchend(item) {
visistId.value = item.visistId
cusName.value = item.cusName
cusId.value = item.cusId
status.value = item.status
// 如果未触发长按,则执行点击逻辑
if (!isLongPressed.value) {
uni.navigateTo({
url: "/pages/business/CRM/marketActivity/visitorReportEnter?visistId=" + visistId.value + '&cusName=' + cusName.value + '&cusId=' + cusId.value + '&status=' + status.value
url: "/pages/business/CRM/marketActivity/visitorReportEnter?visistId="
+ visistId.value
+ '&cusName='
+ cusName.value
+ '&cusId='
+ cusId.value
+ '&status='
+ status.value
})
}
clearInterval(Loop.value);
// 重置状态(避免影响下次事件)
isLongPressed.value = false;
}
//点击状态按钮

View File

@@ -56,7 +56,9 @@
</view>
<view class='bottom-spliter bg-gray'></view>
</block>
<view v-else style="text-align: center; margin-top: 50%; color: white">
暂无数据
</view>
<!-- 底部加高度来避免tabbar遮挡 -->
<!-- <view class="bottom-height bg-gray"></view> -->
</view>
@@ -282,7 +284,7 @@ function handleEdit(index) {
}
.con-bg {
height: 445rpx;
/*height: 445rpx;*/
}
.nav-list {

View File

@@ -130,12 +130,12 @@ let instance = null;
let initCreate = (params)=>{
const {itemList, selectIndex} = params;
// 获取用户信息
getUserInfo().then(res => {
userInfo.value = res.user;
console.log(route.path, ":用户信息获取成功");
}).catch(err => {
console.warn(err, "用户信息获取失败")
});
// getUserInfo().then(res => {
// userInfo.value = res.user;
// console.log(route.path, ":用户信息获取成功");
// }).catch(err => {
// console.warn(err, "用户信息获取失败")
// });
console.log(route.path,`:创建${itemList[selectIndex]}计划`);
title.value="创建周计划";
currentEditDate.value.yearMonth = getDate({format: true}).substring(0, 7); // 只要年月

View File

@@ -44,7 +44,7 @@
<view style="text-align: center; margin-bottom: 30rpx; font-size: 30rpx;">
{{ parseInt(searchValue.selectDate.substring(5, 7)) }}
<span class="line"></span>
{{searchValue.selectDate.substring(0, 4) }}
{{ searchValue.selectDate.substring(0, 4) }}
</view>
<uni-row class="demo-uni-row">
<uni-col :span="1">
@@ -58,6 +58,7 @@
<view class="demo-uni-col mar-left">
<text>{{ WeekShortCN[i] }}</text>
<text v-if="list[0][field]">{{ list[0][field].substring(8) }}</text>
<text v-else>{{ getWeek(i) }}</text>
</view>
</uni-col>
</block>
@@ -103,9 +104,10 @@ import MescrollUni from 'mescroll-uni/mescroll-uni.vue';
import {getNavBarPaddingTop} from '@/utils/system.js'
import {getAllWeekPlanList} from "@/api/crm/plan/getPlan";
import {AreaList, COLOR_MAP, OrdinalDate, WeekShortCN, WorkEvent, WorkType} from "./dataMap";
import {getCurrentWeekNum} from "./dateTimeUtils";
import {getCurrentWeekNum, getWeek2} from "./dateTimeUtils";
import {getDate} from "@/utils/datetime";
import {getWeekPlanListByDate} from "@/api/crm/plan/getPlan";
import {onPullDownRefresh} from "@dcloudio/uni-app";
// const currentYear = new Date().getFullYear();
const currentMonth = new Date().getMonth() + 1;
@@ -116,10 +118,13 @@ const navBarPaddingTop = ref(0);
onMounted(() => {
navBarPaddingTop.value = getNavBarPaddingTop() * 2;
uni.showLoading({})
getPlanList().then(res=>{
getPlanList().then(res => {
let {total, rows} = res;
console.log(rows, "周计划数据获取成功")
console.log(total, rows, "周计划数据获取成功")
list.value = rows;
}).catch((err) => {
console.warn(err, "周计划数据获取失败")
}).finally(() => {
uni.hideLoading();
})
})
@@ -140,22 +145,21 @@ let searchValue = ref({
// 查询列表
let list = ref([]);
const mescrollRef = ref(null);
const upOption = ref({
page: {num: 0, size: 10},
noMoreSize: 5,
empty: {tip: '~ 空空如也 ~'},
textLoading: '加载中...',
textNoMore: '已经到底了'
onPullDownRefresh(() => {
getPlanList().then(res => {
const {rows} = res;
list.value = rows;
console.log(rows,'刷新周计划成功');
}).finally(()=>{
uni.stopPullDownRefresh();
})
});
const downOption = ref({
auto: true,
textInOffset: '下拉刷新',
textOutOffset: '释放更新',
textLoading: '刷新中...'
});
let cssFlag = ref(false);//控制样式
// 查询当前周一周日期
const aweek = getWeek2('本周');
const getWeek = (i) => {
return aweek[OrdinalDate[i]].substring(7)
}
// 获取数据列表
const getPlanList = (month, date, pageIndex, pageSize) => {
@@ -187,20 +191,17 @@ let bindDateChange = (e) => {
let handleSearch = () => {
console.log(searchValue.value, '查询参数')
uni.showLoading();
getWeekPlanListByDate(searchValue.value).then(res=>{
const {total, rows } = res;
getWeekPlanListByDate(searchValue.value).then(res => {
const {total, rows} = res;
list.value = rows;
console.log(rows, '查询成功');
}).catch(err=>{
console.warn(err,'数据获取失败');
}).finally(()=>{
}).catch(err => {
console.warn(err, '数据获取失败');
}).finally(() => {
uni.hideLoading();
})
}
const mescrollInit = (mescroll) => {
cssFlag.value = true;
mescrollRef.value = mescroll;
};
// 搜索区域变更
const bindPickerChange = (e) => {
// console.log('picker发送选择改变携带值为', peopleIndex.value)
@@ -216,7 +217,7 @@ let handleDetail = (rowIndex, colIndex) => {
let workDate = detail[OrdinalDate[colIndex]];
let workType = detail[WorkType[colIndex]];
let workEvent = detail[WorkEvent[colIndex]];
if(workType && workEvent){
if (workType && workEvent) {
uni.showModal({
title: `${workDate}\n${workType}`,
content: `${workEvent}`,
@@ -231,8 +232,7 @@ let handleDetail = (rowIndex, colIndex) => {
}
}
})
}
else{
} else {
uni.showToast({
title: "暂无内容",
icon: "none",
@@ -366,10 +366,12 @@ let handleDetail = (rowIndex, colIndex) => {
margin: 20rpx 0 0 0;
border-radius: 8px 8px 0 0;
/* #ifdef APP-PLUS */
min-height: calc(100vh - 160rpx/*.topbar height*/ - 68rpx/*.search height*/ - 40rpx/*.white-bg padding-top*/ - 40rpx/*.white-bg padding-bottom*/);
min-height: calc(100vh - 160rpx/*.topbar height*/ - 68rpx/*.search height*/ - 40rpx/*.white-bg padding-top*/ - 40rpx /*.white-bg padding-bottom*/
);
/* #endif */
/* #ifndef APP-PLUS */
min-height: calc(100vh - 116rpx/*.topbar height*/ - 68rpx/*.search height*/ - 40rpx/*.white-bg padding-top*/ - 40rpx/*.white-bg padding-bottom*/);
min-height: calc(100vh - 116rpx/*.topbar height*/ - 68rpx/*.search height*/ - 40rpx/*.white-bg padding-top*/ - 40rpx /*.white-bg padding-bottom*/
);
/* #endif */
//overflow-y: auto;
}
@@ -394,6 +396,7 @@ let handleDetail = (rowIndex, colIndex) => {
:deep(.form-con .uni-forms-item) {
margin-bottom: 22px !important;
}
/*.con-bg {
height: 420rpx;
}*/

View File

@@ -407,7 +407,9 @@ const handleSubmit=()=>{
.container .bg-h{
background:url('@/static/images/PicLogoTxt2@2x.png') center bottom 10rpx no-repeat;
background-size:487rpx 214rpx;
/* #ifdef APP-PLUS */
width: 100vw;
/* #endif */
height: calc(100vh - 110px) ;
margin:0 auto;
}

View File

@@ -264,9 +264,9 @@ const submitForm = () => {
// #ifdef H5
//h5测试用 内网-sn123456
//公司外网 'f3fca83f-bf56-47f4-a98b-a602ed8bddee'
//公司外网 'f3fca83f-bf56-47f4-a98b-a602ed8bddee' 529a5543-6957-401e-b090-13df6dee5429
//友晟外网 'b97527c8-2ad4-493c-a01c-5f9d0aabaff2'
param.uniqCode = 'f3fca83f-bf56-47f4-a98b-a602ed8bddee';
param.uniqCode = 'b97527c8-2ad4-493c-a01c-5f9d0aabaff2';
let res = await login(param);
userStore.login(res);
uni.switchTab({ url: '/pages/home/home' })
@@ -362,7 +362,9 @@ page{
.login-con .bg-h{
background:url('@/static/images/login-txt.png') center bottom 10rpx no-repeat;
background-size:654rpx 121rpx;
/* #ifdef APP-PLUS */
width: 100vw;
/* #endif */
height: calc(100vh - 10px) ;
margin:0 auto;
}