修改路径

This commit is contained in:
haozq 2024-04-18 14:03:53 +08:00
parent a51c5cdf85
commit 5ab3b8d00a
3 changed files with 5 additions and 4 deletions

View File

@ -11,6 +11,7 @@ export function get3dFileList(data) {
// 新增三维文件列表
export function add3dFileItem(data) {
console.log(data);
return request({
headers: { // 修改请求头
'decrypt': 'decrypt'
@ -27,7 +28,7 @@ export function update3dFileItem(data) {
headers: { // 修改请求头
'decrypt': 'decrypt'
},
url: '/system/sys/pro/editPro',
url: '/background/sys/pro/editPro',
method: 'post',
data
})

View File

@ -83,7 +83,7 @@ export function exportProject(data) {
// 获取建管单位列表
export function getBuildList(data) {
return request({
url: '/background/sys/select/getBuildLists',
url: '/system/sys/select/getBuildLists',
method: 'get',
params: data
})
@ -92,7 +92,7 @@ export function getBuildList(data) {
// 工程完工
export function completeProject(data) {
return request({
url: '/background/sys/pro/editProStatus',
url: '/system/sys/pro/editProStatus',
method: 'post',
data
})

View File

@ -48,7 +48,7 @@ export function assignProject(data) {
// 建管单位下拉选
export function getBuildList(data) {
return request({
url: 'system/sys/select/getBuildLists',
url: '/system/sys/select/getBuildLists',
method: 'get'
})
}