mirror of
https://github.com/jxxghp/MoviePilot-Frontend.git
synced 2026-06-09 09:40:14 +08:00
45 lines
1.2 KiB
Vue
45 lines
1.2 KiB
Vue
<script lang="ts" setup>
|
||
import api from '@/api'
|
||
import FileBrowser from '@/components/FileBrowser.vue'
|
||
|
||
const endpoints = {
|
||
list: { url: '/filebrowser/list?path={path}&sort={sort}', method: 'get' },
|
||
mkdir: { url: '/filebrowser/mkdir?path={path}', method: 'get' },
|
||
delete: { url: '/filebrowser/delete?path={path}', method: 'get' },
|
||
download: { url: '/filebrowser/download?path={path}', method: 'get' },
|
||
image: { url: '/filebrowser/image?path={path}', method: 'get' },
|
||
rename: { url: '/filebrowser/rename?path={path}&new_name={newname}', method: 'get' },
|
||
}
|
||
|
||
// 读取下载目录
|
||
const path = ref('/')
|
||
|
||
// 调用API,加载当前系统环境设置
|
||
async function loadSystemSettings() {
|
||
try {
|
||
const result: { [key: string]: any } = await api.get('system/env')
|
||
if (result.success)
|
||
path.value = result.data?.DOWNLOAD_PATH || '/'
|
||
if (path.value && !path.value.endsWith('/'))
|
||
path.value += '/'
|
||
}
|
||
catch (error) {
|
||
console.log(error)
|
||
}
|
||
}
|
||
|
||
function pathChanged(_path: string) {
|
||
path.value = _path
|
||
}
|
||
|
||
onBeforeMount(async () => {
|
||
await loadSystemSettings()
|
||
})
|
||
</script>
|
||
|
||
<template>
|
||
<div>
|
||
<FileBrowser storages="local" :tree="false" :path="path" :endpoints="endpoints" :axios="api" @pathchanged="pathChanged" />
|
||
</div>
|
||
</template>
|