From 8739cb4a34c25a9997bdebe2b498c1a2e8ad078b Mon Sep 17 00:00:00 2001 From: "PC-202311141343\\Administrator" <505354293@qq.com> Date: Fri, 29 Aug 2025 14:43:12 +0800 Subject: [PATCH 1/7] =?UTF-8?q?=E6=95=B4=E4=BD=93=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/crm/api_ys.js | 2 +- src/api/crm/customer/getCustomer.js | 2 +- src/pages/business/CRM/chooseCus.vue | 332 ++++++++++------- .../CRM/customer/customerUserBelong.vue | 2 +- .../business/CRM/marketActivity/chooseCus.vue | 334 +++++++++++------- src/pages/business/CRM/plan/myPlan.vue | 38 +- src/pages/business/CRM/plan/planEdit.vue | 4 +- 7 files changed, 446 insertions(+), 268 deletions(-) diff --git a/src/api/crm/api_ys.js b/src/api/crm/api_ys.js index a4964b6..a80171b 100644 --- a/src/api/crm/api_ys.js +++ b/src/api/crm/api_ys.js @@ -93,7 +93,7 @@ export function viewingMarketInfgetDetail(data) { //市场信审核列表接口 export function approvalMarketInfget(data) { return request.get({ - url: 'app/informationMarketInformation/Approval', + url: '/crm/app/informationMarketInformation/Approval', data },{ isTransformResponse:false diff --git a/src/api/crm/customer/getCustomer.js b/src/api/crm/customer/getCustomer.js index 333e9fc..318db98 100644 --- a/src/api/crm/customer/getCustomer.js +++ b/src/api/crm/customer/getCustomer.js @@ -25,7 +25,7 @@ export function saveappCrmCusUserNew(params){ // 查询业务员名下所有的客户 export function SearchForAllCustomersSalesperson(params){ return request.get({ - url: 'app/appCrmCusUserNewController/SearchForAllCustomersSalesperson', + url: '/crm/app/appCrmCusUserNewController/SearchForAllCustomersSalesperson', data: params },{isTransformResponse: false}) } diff --git a/src/pages/business/CRM/chooseCus.vue b/src/pages/business/CRM/chooseCus.vue index eac0e61..6372957 100644 --- a/src/pages/business/CRM/chooseCus.vue +++ b/src/pages/business/CRM/chooseCus.vue @@ -1,170 +1,256 @@ - \ No newline at end of file diff --git a/src/pages/business/CRM/customer/customerUserBelong.vue b/src/pages/business/CRM/customer/customerUserBelong.vue index 50ef41f..1c9496b 100644 --- a/src/pages/business/CRM/customer/customerUserBelong.vue +++ b/src/pages/business/CRM/customer/customerUserBelong.vue @@ -17,7 +17,7 @@ - - - - - - - - - - + + + + + + + + - - - - - - {{item.cusName+"("+item.shortName+")"}} - - - - - + + + + + + + + + + + + + + + + {{ item.cusName }} + + + + + + + + + - + +.border-bottom { + margin-top: 6rpx; +} + \ No newline at end of file diff --git a/src/pages/business/CRM/plan/myPlan.vue b/src/pages/business/CRM/plan/myPlan.vue index e7a49e6..9217f13 100644 --- a/src/pages/business/CRM/plan/myPlan.vue +++ b/src/pages/business/CRM/plan/myPlan.vue @@ -17,7 +17,7 @@ - 姓名:{{ userInfo.nickName || userInfo.userName }} + 姓名:{{ userInfo.nickName || userInfo.userName }} {{ yearMonth }} @@ -54,10 +54,11 @@ + - + @@ -106,12 +107,12 @@ let getWorkEvent = (index) => { const refreshPlanList = () => { message.showLoading(); // 获取用户信息 - 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, "用户信息获取失败") + // }); // 获取周计划列表 getWeeklyPlanList(queryParams.value).then(res => { const {rows} = res; @@ -180,11 +181,11 @@ function handleCreate() { handlePlanEdit({itemList, selectIndex: result.tapIndex}, true); }).catch((err) => { console.warn(err, "已存在周计划") - uni.showToast({ - icon: 'error', - title: '已有本周或下周计划', - duration: 2000 - }) + // uni.showToast({ + // icon: 'error', + // title: '已有本周或下周计划', + // duration: 2000 + // }) }) // }else{ // 创建下周计划 // } @@ -234,7 +235,7 @@ function handleEdit(index) { // console.log(JSON.stringify(formData)) console.log(route.path, formData, "前往修改页面"); const editFields = [OrdinalDate[index], WorkType[index], WorkEvent[index]]; - let userName = userInfo.value.nickName || userInfo.value.userName; + let userName = null; // userInfo.value.userName || userInfo.value.nickName; handlePlanEdit({userName, formData, editFields}, false); } @@ -268,9 +269,14 @@ function handleEdit(index) { } .white-bg.white-bg-2 { - margin-bottom: 20rpx; +/* margin-bottom: 20rpx; */ +} +.bottom-spliter{ + height: 20rpx; +} +.bg-gray{ + background-color: #f0f0f0; } - .report-list .w-b-title .btn-edit { background-color: #5C96F7; } diff --git a/src/pages/business/CRM/plan/planEdit.vue b/src/pages/business/CRM/plan/planEdit.vue index c36e3e2..cf37728 100644 --- a/src/pages/business/CRM/plan/planEdit.vue +++ b/src/pages/business/CRM/plan/planEdit.vue @@ -4,7 +4,7 @@ - \ No newline at end of file From 2bda2bb389bcfd469d97005cd6e70b5d60ea482d Mon Sep 17 00:00:00 2001 From: xuli3099 Date: Fri, 29 Aug 2025 18:13:15 +0800 Subject: [PATCH 4/7] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=B2=A1=E8=AE=B0?= =?UTF-8?q?=E5=BD=95=E6=97=B6=E5=9B=BE=E7=89=87=E6=98=BE=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/business/CRM/marketActivity/chooseCus.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/business/CRM/marketActivity/chooseCus.vue b/src/pages/business/CRM/marketActivity/chooseCus.vue index 56bb92a..6302c31 100644 --- a/src/pages/business/CRM/marketActivity/chooseCus.vue +++ b/src/pages/business/CRM/marketActivity/chooseCus.vue @@ -82,7 +82,7 @@ const upOption = ref({ noMoreSize: 5, empty: { tip: '~ 空空如也 ~', - icon: "../../static/images/mescroll-empty.png" + icon: "../../../../static/images/mescroll-empty.png" }, textLoading: '加载中...', textNoMore: '已经到底了' From e94ce94c4274f0110b2be5127918ce0fcd6671d4 Mon Sep 17 00:00:00 2001 From: xuli3099 Date: Fri, 29 Aug 2025 18:23:57 +0800 Subject: [PATCH 5/7] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E8=B7=AF=E7=94=B1?= =?UTF-8?q?=E8=B7=B3=E8=BD=AC=20=E5=B0=86=20/pages/business/CRM/chooseCus?= =?UTF-8?q?=20=20=E4=BF=AE=E6=94=B9=E4=B8=BA=20/pages/business/CRM/marketA?= =?UTF-8?q?ctivity/chooseCus?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages.json | 7 - src/pages/business/CRM/chooseCus.vue | 211 ------------------ .../CRM/marketInformation/beCurrent.vue | 2 +- .../CRM/marketInformation/beCurrentDetail.vue | 2 +- .../CRM/marketInformation/competitor.vue | 2 +- .../marketInformation/competitorDetail.vue | 2 +- .../CRM/marketInformation/keyModelTasks.vue | 2 +- .../marketInformation/keyModelTasksDetail.vue | 2 +- .../CRM/marketInformation/majorMatter.vue | 2 +- .../marketInformation/majorMatterDetail.vue | 2 +- .../marketInformation/marketOpportunities.vue | 3 +- .../marketOpportunitiesDetail.vue | 2 +- .../marketInformation/personnelChanges.vue | 2 +- .../personnelChangesDetail.vue | 2 +- .../addPaymentCollection.vue | 2 +- .../CRM/paymentCollection/paymentDetail.vue | 2 +- 16 files changed, 15 insertions(+), 232 deletions(-) delete mode 100644 src/pages/business/CRM/chooseCus.vue diff --git a/src/pages.json b/src/pages.json index 5266e2b..1ccf3ce 100644 --- a/src/pages.json +++ b/src/pages.json @@ -217,13 +217,6 @@ "navigationBarTitleText": "通用信息更新" } }, - //选择客户(已更新) - { - "path": "pages/business/CRM/chooseCus", - "style": { - "navigationBarTitleText": "客户选择" - } - }, //选择客户人员(已更新) { "path": "pages/business/CRM/customerUserList", diff --git a/src/pages/business/CRM/chooseCus.vue b/src/pages/business/CRM/chooseCus.vue deleted file mode 100644 index ddf213b..0000000 --- a/src/pages/business/CRM/chooseCus.vue +++ /dev/null @@ -1,211 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/pages/business/CRM/marketInformation/beCurrent.vue b/src/pages/business/CRM/marketInformation/beCurrent.vue index 313a875..4ee6b5f 100644 --- a/src/pages/business/CRM/marketInformation/beCurrent.vue +++ b/src/pages/business/CRM/marketInformation/beCurrent.vue @@ -143,7 +143,7 @@ // 选择客户页面跳转 function chooseCustomer() { uni.navigateTo({ - url: '/pages/business/CRM/chooseCus' + url: '/pages/business/CRM/marketActivity/chooseCus' }) } //定义数据接收的值 diff --git a/src/pages/business/CRM/marketInformation/beCurrentDetail.vue b/src/pages/business/CRM/marketInformation/beCurrentDetail.vue index 31b78e6..5e78dce 100644 --- a/src/pages/business/CRM/marketInformation/beCurrentDetail.vue +++ b/src/pages/business/CRM/marketInformation/beCurrentDetail.vue @@ -148,7 +148,7 @@ // 选择客户页面跳转 function chooseCustomer() { uni.navigateTo({ - url: '/pages/business/CRM/chooseCus' + url: '/pages/business/CRM/marketActivity/chooseCus' }) } //定义数据接收的值 diff --git a/src/pages/business/CRM/marketInformation/competitor.vue b/src/pages/business/CRM/marketInformation/competitor.vue index e83c481..b32accc 100644 --- a/src/pages/business/CRM/marketInformation/competitor.vue +++ b/src/pages/business/CRM/marketInformation/competitor.vue @@ -340,7 +340,7 @@ const dynamicPlaceholder = computed(() => { // 选择客户页面跳转 function chooseCustomer() { uni.navigateTo({ - url: '/pages/business/CRM/chooseCus' + url: '/pages/business/CRM/marketActivity/chooseCus' }) } //定义数据接收的值 diff --git a/src/pages/business/CRM/marketInformation/competitorDetail.vue b/src/pages/business/CRM/marketInformation/competitorDetail.vue index 42bf8ce..43ddd76 100644 --- a/src/pages/business/CRM/marketInformation/competitorDetail.vue +++ b/src/pages/business/CRM/marketInformation/competitorDetail.vue @@ -348,7 +348,7 @@ const dynamicPlaceholder = computed(() => { // 选择客户页面跳转 function chooseCustomer() { uni.navigateTo({ - url: '/pages/business/CRM/chooseCus' + url: '/pages/business/CRM/marketActivity/chooseCus' }) } //定义数据接收的值 diff --git a/src/pages/business/CRM/marketInformation/keyModelTasks.vue b/src/pages/business/CRM/marketInformation/keyModelTasks.vue index 3756522..1f9712f 100644 --- a/src/pages/business/CRM/marketInformation/keyModelTasks.vue +++ b/src/pages/business/CRM/marketInformation/keyModelTasks.vue @@ -147,7 +147,7 @@ // 选择客户页面跳转 function chooseCustomer() { uni.navigateTo({ - url: '/pages/business/CRM/chooseCus' + url: '/pages/business/CRM/marketActivity/chooseCus' }) } //定义数据接收的值 diff --git a/src/pages/business/CRM/marketInformation/keyModelTasksDetail.vue b/src/pages/business/CRM/marketInformation/keyModelTasksDetail.vue index 221ac5d..db6f94c 100644 --- a/src/pages/business/CRM/marketInformation/keyModelTasksDetail.vue +++ b/src/pages/business/CRM/marketInformation/keyModelTasksDetail.vue @@ -152,7 +152,7 @@ // 选择客户页面跳转 function chooseCustomer() { uni.navigateTo({ - url: '/pages/business/CRM/chooseCus' + url: '/pages/business/CRM/marketActivity/chooseCus' }) } //定义数据接收的值 diff --git a/src/pages/business/CRM/marketInformation/majorMatter.vue b/src/pages/business/CRM/marketInformation/majorMatter.vue index 0d4e999..8b67af4 100644 --- a/src/pages/business/CRM/marketInformation/majorMatter.vue +++ b/src/pages/business/CRM/marketInformation/majorMatter.vue @@ -172,7 +172,7 @@ // 选择客户页面跳转 function chooseCustomer() { uni.navigateTo({ - url: '/pages/business/CRM/chooseCus' + url: '/pages/business/CRM/marketActivity/chooseCus' }) } //定义数据接收的值 diff --git a/src/pages/business/CRM/marketInformation/majorMatterDetail.vue b/src/pages/business/CRM/marketInformation/majorMatterDetail.vue index 3c99a93..8df76ee 100644 --- a/src/pages/business/CRM/marketInformation/majorMatterDetail.vue +++ b/src/pages/business/CRM/marketInformation/majorMatterDetail.vue @@ -179,7 +179,7 @@ // 选择客户页面跳转 function chooseCustomer() { uni.navigateTo({ - url: '/pages/business/CRM/chooseCus' + url: '/pages/business/CRM/marketActivity/chooseCus' }) } //定义数据接收的值 diff --git a/src/pages/business/CRM/marketInformation/marketOpportunities.vue b/src/pages/business/CRM/marketInformation/marketOpportunities.vue index 952afa8..d858f8b 100644 --- a/src/pages/business/CRM/marketInformation/marketOpportunities.vue +++ b/src/pages/business/CRM/marketInformation/marketOpportunities.vue @@ -232,7 +232,8 @@ // 选择客户页面跳转 function chooseCustomer(){ uni.navigateTo({ - url: '/pages/business/CRM/chooseCus' + url: '/pages/business/CRM/marketActivity/chooseCus' + }) } //定义数据接收的值 diff --git a/src/pages/business/CRM/marketInformation/marketOpportunitiesDetail.vue b/src/pages/business/CRM/marketInformation/marketOpportunitiesDetail.vue index 4ca4e2e..027ba3b 100644 --- a/src/pages/business/CRM/marketInformation/marketOpportunitiesDetail.vue +++ b/src/pages/business/CRM/marketInformation/marketOpportunitiesDetail.vue @@ -244,7 +244,7 @@ // 选择客户页面跳转 function chooseCustomer(){ uni.navigateTo({ - url: '/pages/business/CRM/chooseCus' + url:'/pages/business/CRM/marketActivity/chooseCus' }) } //定义数据接收的值 diff --git a/src/pages/business/CRM/marketInformation/personnelChanges.vue b/src/pages/business/CRM/marketInformation/personnelChanges.vue index 50c46be..985fea0 100644 --- a/src/pages/business/CRM/marketInformation/personnelChanges.vue +++ b/src/pages/business/CRM/marketInformation/personnelChanges.vue @@ -201,7 +201,7 @@ // 选择客户页面跳转 function chooseCustomer() { uni.navigateTo({ - url: '/pages/business/CRM/chooseCus' + url: '/pages/business/CRM/marketActivity/chooseCus' }) } //定义数据接收的值 diff --git a/src/pages/business/CRM/marketInformation/personnelChangesDetail.vue b/src/pages/business/CRM/marketInformation/personnelChangesDetail.vue index 3d084c4..64aad48 100644 --- a/src/pages/business/CRM/marketInformation/personnelChangesDetail.vue +++ b/src/pages/business/CRM/marketInformation/personnelChangesDetail.vue @@ -202,7 +202,7 @@ // 选择客户页面跳转 function chooseCustomer() { uni.navigateTo({ - url: '/pages/business/CRM/chooseCus' + url: '/pages/business/CRM/marketActivity/chooseCus' }) } //定义数据接收的值 diff --git a/src/pages/business/CRM/paymentCollection/addPaymentCollection.vue b/src/pages/business/CRM/paymentCollection/addPaymentCollection.vue index b4ce4df..df639ab 100644 --- a/src/pages/business/CRM/paymentCollection/addPaymentCollection.vue +++ b/src/pages/business/CRM/paymentCollection/addPaymentCollection.vue @@ -101,7 +101,7 @@ // 选择客户页面跳转 function chooseCustomer() { uni.navigateTo({ - url: '/pages/business/CRM/chooseCus' + url: '/pages/business/CRM/marketActivity/chooseCus' }) } //定义数据接收的值 diff --git a/src/pages/business/CRM/paymentCollection/paymentDetail.vue b/src/pages/business/CRM/paymentCollection/paymentDetail.vue index 4b46007..b39b09a 100644 --- a/src/pages/business/CRM/paymentCollection/paymentDetail.vue +++ b/src/pages/business/CRM/paymentCollection/paymentDetail.vue @@ -105,7 +105,7 @@ // 选择客户页面跳转 function chooseCustomer() { uni.navigateTo({ - url: '/pages/business/CRM/chooseCus' + url: '/pages/business/CRM/marketActivity/chooseCus' }) } //定义数据接收的值 From 8e049c4a0cc3f8c5c564d41d1b7463a02d834d46 Mon Sep 17 00:00:00 2001 From: xuli3099 Date: Fri, 29 Aug 2025 18:42:15 +0800 Subject: [PATCH 6/7] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=B2=A1=E6=9C=89?= =?UTF-8?q?=E8=AE=B0=E5=BD=95=E6=97=B6=20=E6=98=BE=E7=A4=BA=E5=9B=BE?= =?UTF-8?q?=E7=89=87=E8=B7=AF=E5=BE=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/business/CRM/customer/changeCustomerOwner.vue | 2 +- src/pages/business/CRM/customer/customerUserBelong.vue | 2 +- src/pages/business/CRM/marketActivity/auditReport.vue | 2 +- src/pages/business/CRM/marketActivity/visitReport.vue | 2 +- src/pages/business/CRM/marketActivity/visitReportView.vue | 2 +- src/pages/business/CRM/marketInformation/infomationView.vue | 2 +- src/pages/business/CRM/marketInformation/marketInformation.vue | 2 +- .../business/CRM/marketInformation/marketInformationReview.vue | 2 +- src/pages/business/CRM/paymentCollection/index.vue | 2 +- src/pages/business/CRM/plan/planView.vue | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/pages/business/CRM/customer/changeCustomerOwner.vue b/src/pages/business/CRM/customer/changeCustomerOwner.vue index af43b36..feb555b 100644 --- a/src/pages/business/CRM/customer/changeCustomerOwner.vue +++ b/src/pages/business/CRM/customer/changeCustomerOwner.vue @@ -128,7 +128,7 @@ const upOption = ref({ noMoreSize: 5, empty: { tip: '~ 空空如也 ~', - icon: "../../static/images/mescroll-empty.png" + icon: "../../../../static/images/mescroll-empty.png" }, textLoading: '加载中...', textNoMore: '已经到底了' diff --git a/src/pages/business/CRM/customer/customerUserBelong.vue b/src/pages/business/CRM/customer/customerUserBelong.vue index 1c9496b..f524fee 100644 --- a/src/pages/business/CRM/customer/customerUserBelong.vue +++ b/src/pages/business/CRM/customer/customerUserBelong.vue @@ -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: '已经到底了' diff --git a/src/pages/business/CRM/marketActivity/auditReport.vue b/src/pages/business/CRM/marketActivity/auditReport.vue index 8e87aa0..181f38e 100644 --- a/src/pages/business/CRM/marketActivity/auditReport.vue +++ b/src/pages/business/CRM/marketActivity/auditReport.vue @@ -82,7 +82,7 @@ const upOption = ref({ noMoreSize: 5, empty: { tip: '~ 空空如也 ~', - icon: "../../static/images/mescroll-empty.png" + icon: "../../../../static/images/mescroll-empty.png" }, textLoading: '加载中...', textNoMore: '已经到底了' diff --git a/src/pages/business/CRM/marketActivity/visitReport.vue b/src/pages/business/CRM/marketActivity/visitReport.vue index b523248..09ffdb9 100644 --- a/src/pages/business/CRM/marketActivity/visitReport.vue +++ b/src/pages/business/CRM/marketActivity/visitReport.vue @@ -142,7 +142,7 @@ const upOption = ref({ noMoreSize: 5, empty: { tip: '~ 空空如也 ~', - icon: "../../static/images/mescroll-empty.png" + icon: "../../../../static/images/mescroll-empty.png" }, textLoading: '加载中...', textNoMore: '已经到底了' diff --git a/src/pages/business/CRM/marketActivity/visitReportView.vue b/src/pages/business/CRM/marketActivity/visitReportView.vue index f2d9774..4291e72 100644 --- a/src/pages/business/CRM/marketActivity/visitReportView.vue +++ b/src/pages/business/CRM/marketActivity/visitReportView.vue @@ -142,7 +142,7 @@ const upOption = ref({ noMoreSize: 5, empty: { tip: '~ 空空如也 ~', - icon: "../../static/images/mescroll-empty.png" + icon: "../../../../static/images/mescroll-empty.png" }, textLoading: '加载中...', textNoMore: '已经到底了' diff --git a/src/pages/business/CRM/marketInformation/infomationView.vue b/src/pages/business/CRM/marketInformation/infomationView.vue index 775f7d7..7dad9f8 100644 --- a/src/pages/business/CRM/marketInformation/infomationView.vue +++ b/src/pages/business/CRM/marketInformation/infomationView.vue @@ -244,7 +244,7 @@ const inputval = ref(''); // 搜索内容 noMoreSize: 5, empty: { tip: '~ 空空如也 ~', - icon: "../../static/images/mescroll-empty.png" + icon: "../../../../static/images/mescroll-empty.png" }, textLoading: '加载中...', textNoMore: '已经到底了' diff --git a/src/pages/business/CRM/marketInformation/marketInformation.vue b/src/pages/business/CRM/marketInformation/marketInformation.vue index 0913465..21f347e 100644 --- a/src/pages/business/CRM/marketInformation/marketInformation.vue +++ b/src/pages/business/CRM/marketInformation/marketInformation.vue @@ -237,7 +237,7 @@ noMoreSize: 5, empty: { tip: '~ 空空如也 ~', - icon: "../../static/images/mescroll-empty.png" + icon: "../../../../static/images/mescroll-empty.png" }, textLoading: '加载中...', textNoMore: '已经到底了' diff --git a/src/pages/business/CRM/marketInformation/marketInformationReview.vue b/src/pages/business/CRM/marketInformation/marketInformationReview.vue index 03fa6b3..0f52342 100644 --- a/src/pages/business/CRM/marketInformation/marketInformationReview.vue +++ b/src/pages/business/CRM/marketInformation/marketInformationReview.vue @@ -105,7 +105,7 @@ const upOption = ref({ noMoreSize: 5, empty: { tip: '~ 空空如也 ~', - icon: "../../static/images/mescroll-empty.png" + icon: "../../../../static/images/mescroll-empty.png" }, textLoading: '加载中...', textNoMore: '已经到底了' diff --git a/src/pages/business/CRM/paymentCollection/index.vue b/src/pages/business/CRM/paymentCollection/index.vue index 55ea079..1e1c576 100644 --- a/src/pages/business/CRM/paymentCollection/index.vue +++ b/src/pages/business/CRM/paymentCollection/index.vue @@ -110,7 +110,7 @@ const upOption = ref({ noMoreSize: 5, empty: { tip: '~ 空空如也 ~', - icon: "../../static/images/mescroll-empty.png" + icon: "../../../../static/images/mescroll-empty.png" }, textLoading: '加载中...', textNoMore: '已经到底了' diff --git a/src/pages/business/CRM/plan/planView.vue b/src/pages/business/CRM/plan/planView.vue index d0d796e..e6993e7 100644 --- a/src/pages/business/CRM/plan/planView.vue +++ b/src/pages/business/CRM/plan/planView.vue @@ -146,7 +146,7 @@ const upOption = ref({ noMoreSize: 5, empty: { tip: '~ 空空如也 ~', - icon: "../../static/images/mescroll-empty.png" + icon: "../../../../static/images/mescroll-empty.png" }, textLoading: '加载中...', textNoMore: '已经到底了' From ed26947cce7f7c034bb68a04ff6c2c8b76da1bf1 Mon Sep 17 00:00:00 2001 From: "PC-202311141343\\Administrator" <505354293@qq.com> Date: Mon, 1 Sep 2025 09:07:49 +0800 Subject: [PATCH 7/7] =?UTF-8?q?=E9=A2=9C=E8=89=B2=E6=8E=A7=E5=88=B6?= =?UTF-8?q?=EF=BC=8C=E6=9B=B4=E6=96=B0=E9=AB=98=E5=BA=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../CRM/mainOwner/view/viewMainOwnerDetail.vue | 2 +- .../CRM/marketInformation/keyModelTasks.vue | 2 +- .../CRM/marketInformation/marketInformation.vue | 16 ++++++++++------ .../marketInformation/marketOpportunities.vue | 2 +- 4 files changed, 13 insertions(+), 9 deletions(-) diff --git a/src/pages/business/CRM/mainOwner/view/viewMainOwnerDetail.vue b/src/pages/business/CRM/mainOwner/view/viewMainOwnerDetail.vue index 9574355..0d52803 100644 --- a/src/pages/business/CRM/mainOwner/view/viewMainOwnerDetail.vue +++ b/src/pages/business/CRM/mainOwner/view/viewMainOwnerDetail.vue @@ -135,7 +135,7 @@ function getCrmCusUserNewChangeOwnerList() { \ No newline at end of file diff --git a/src/pages/business/CRM/marketInformation/marketOpportunities.vue b/src/pages/business/CRM/marketInformation/marketOpportunities.vue index d858f8b..be61582 100644 --- a/src/pages/business/CRM/marketInformation/marketOpportunities.vue +++ b/src/pages/business/CRM/marketInformation/marketOpportunities.vue @@ -312,7 +312,7 @@ height: calc(120vh - 100px) /* #endif */ /* #ifndef APP-PLUS */ - height:calc(120vh - 80px) + height:calc(140vh - 80px) /* #endif */ }