CRM接口增加 crm 前缀

This commit is contained in:
xuli3099
2025-08-26 15:55:46 +08:00
parent 48e74be9be
commit 3fc38b9dcb
14 changed files with 74 additions and 79 deletions

View File

@@ -2,7 +2,7 @@ import request from "@/utils/request"
export function updateWeekPlanList(data){
return request.post({
url: '/app/appWeeklyPlan/updateWeekly',
url: '/crm/app/appWeeklyPlan/updateWeekly',
data: data,
header: {
'Content-Type': 'application/json;charset=UTF-8'
@@ -12,7 +12,7 @@ export function updateWeekPlanList(data){
// 判断本周是否写过计划
export function judgeThisWeek (data){
return request.post({
url: '/app/appWeeklyPlan/Judgethisweek',
url: '/crm/app/appWeeklyPlan/Judgethisweek',
data,
header: {'Content-Type': 'application/json;charset=UTF-8'}
})
@@ -21,7 +21,7 @@ export function judgeThisWeek (data){
// 新增周计划
export function addPlan(data){
return request.post({
url: '/app/appWeeklyPlan/addComment',
url: '/crm/app/appWeeklyPlan/addComment',
data,
header:{'Content-Type': 'application/json;charset=UTF-8'}
})