合并CRM

This commit is contained in:
xuli3099
2025-08-25 16:41:33 +08:00
parent fd5c5739e4
commit 0a1d4de168
78 changed files with 19363 additions and 159 deletions

View File

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