21 lines
454 B
JavaScript
21 lines
454 B
JavaScript
|
|
import request from "../request.js"
|
||
|
|
export function list(eid,parentId) {
|
||
|
|
return request({
|
||
|
|
url: `/dzzyb/a/zyb/zzzc/list?eid=${eid}&parentId=${parentId}`,
|
||
|
|
method: 'post',
|
||
|
|
})
|
||
|
|
}
|
||
|
|
// 下载
|
||
|
|
export function exportApp() {
|
||
|
|
return request({
|
||
|
|
url: `/dzzyb/a/zyb/zzzc/exportApp?type=4`,
|
||
|
|
method: 'get',
|
||
|
|
})
|
||
|
|
}
|
||
|
|
//删除
|
||
|
|
export function delPgFile(filePath) {
|
||
|
|
return request({
|
||
|
|
url: `/dzzyb/a/zyb/logon/delPgFile?filePath=${filePath}`,
|
||
|
|
method: 'get',
|
||
|
|
})
|
||
|
|
}
|