mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-03 00:00:58 +08:00
19 lines
374 B
JavaScript
19 lines
374 B
JavaScript
import myaxios from '@/util/myaxios'
|
|
export default {
|
|
GetPanFiles(dirName) {
|
|
return myaxios({
|
|
url: '/Pan/GetPanFiles',
|
|
method: 'post',
|
|
data: { dirName}
|
|
})
|
|
},
|
|
Download(dirName,allName)
|
|
{
|
|
return myaxios({
|
|
url: '/Pan/Download',
|
|
method: 'post',
|
|
data: { dirName,allName}
|
|
})
|
|
|
|
}
|
|
} |