| | |
| | | <div class="left" ref="left"> |
| | | <menu-list></menu-list> |
| | | <btn-list></btn-list> |
| | | <div class="title">文件列表</div> |
| | | <div class="title">{{ $t('FileList') }}</div> |
| | | <div class="file-list" @contextmenu.prevent="openContextMenu($event)"> |
| | | <el-tree |
| | | :class="['station-tree', { empty: !stationData.length }]" |
| | |
| | | import AKeepAlive from "@/components/AKeepAlive"; |
| | | import FileInfo from "@/components/fileInfo"; |
| | | import { getStation, getParamByFileId, updateFileParam } from "./apis"; |
| | | import i18n from '@/assets/js/i18n/app'; |
| | | import { createI18nOption } from '@/assets/js/tools/i18n'; |
| | | |
| | | const i18nMixin = createI18nOption(i18n); |
| | | |
| | | export default { |
| | | name: "App", |
| | | mixins: [i18nMixin], |
| | | components: { |
| | | MenuList, |
| | | ContextMenu, |