fix: 计划查看-导航栏空白高度

fix: 计划查看-接口地址调整
This commit is contained in:
wangzhuo
2025-09-01 13:02:08 +08:00
parent 63a9a1def5
commit 9223b619f5
6 changed files with 48 additions and 50 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'}
})