glj-代码提交
This commit is contained in:
parent
a2f8e81735
commit
ba65cb9501
|
@ -79,6 +79,16 @@ export function submit(data) {
|
|||
});
|
||||
}
|
||||
|
||||
export function deleteDisasterInfoManage(id) {
|
||||
return request({
|
||||
url: '/api/' + moduleName + '/ui/disasterInfo/deleteDisasterInfoManage',
|
||||
method: 'get',
|
||||
params: {
|
||||
id
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
export function responseEndedDisasterInfo(id) {
|
||||
return request({
|
||||
url: '/api/' + moduleName + '/ui/disasterInfo/responseEndedDisasterInfo',
|
||||
|
@ -88,6 +98,7 @@ export function responseEndedDisasterInfo(id) {
|
|||
}
|
||||
});
|
||||
}
|
||||
|
||||
export function deleteByIds(ids) {
|
||||
return request({
|
||||
url: '/api/' + moduleName + '/ui/disasterInfo/deleteByIds',
|
||||
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -35,6 +35,12 @@ const viteConfig = defineConfig((mode) => {
|
|||
changeOrigin: true,
|
||||
rewrite: (path) => path.replace(/^\/api/, ''),
|
||||
},
|
||||
'/vordmdoc': {
|
||||
target: 'http://192.168.31.14:9000',
|
||||
ws: false,
|
||||
changeOrigin: true,
|
||||
rewrite: (path) => path.replace(/^\/vordmdoc/, ''),
|
||||
},
|
||||
},
|
||||
},
|
||||
build: {
|
||||
|
|
Loading…
Reference in New Issue