修改导入接口地址
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
import axios from 'axios';
|
||||
const baseUri = '/api/lakeLibrary/lakeLibraryImport'
|
||||
const baseUri = '/lakeLibrary/lakeLibraryImport'
|
||||
|
||||
|
||||
export const cityOther = `${baseUri}/cityOther`
|
||||
@@ -7,18 +7,18 @@ export const appointCity = `${baseUri}/appointCity`
|
||||
export const special = `${baseUri}/special`
|
||||
|
||||
|
||||
// 城市内湖-其他内湖:/api/lakeLibrary/lakeLibraryImport/
|
||||
// 城市内湖-其他内湖:/lakeLibrary/lakeLibraryImport/
|
||||
export const importCityOther = function (data) {
|
||||
return axios.post(cityOther,data)
|
||||
}
|
||||
|
||||
// 城市内湖-五象湖:/api/lakeLibrary/lakeLibraryImport/appointCity
|
||||
// 城市内湖-五象湖:/lakeLibrary/lakeLibraryImport/appointCity
|
||||
export const importCppointCity = function (data) {
|
||||
console.log('data',data)
|
||||
return axios.post(appointCity,data)
|
||||
}
|
||||
|
||||
// 专项湖库:/api/lakeLibrary/lakeLibraryImport/special
|
||||
// 专项湖库:/lakeLibrary/lakeLibraryImport/special
|
||||
export const importSpecial = function (data) {
|
||||
return axios.post(special,data)
|
||||
}
|
||||
Reference in New Issue
Block a user