Some checks failed
CI / Test (ubuntu-latest) (push) Has been cancelled
CI / Test (windows-latest) (push) Has been cancelled
CI / Lint (ubuntu-latest) (push) Has been cancelled
CI / Lint (windows-latest) (push) Has been cancelled
CI / Check (ubuntu-latest) (push) Has been cancelled
CI / Check (windows-latest) (push) Has been cancelled
CI / CI OK (push) Has been cancelled
CodeQL / Analyze (javascript-typescript) (push) Has been cancelled
Deploy Website on push / Deploy Push Playground Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Docs Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Antd Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Element Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Naive Ftp (push) Has been cancelled
Release Drafter / update_release_draft (push) Has been cancelled
2. 文件管理优化功能(后续需要新增分组、个人收藏) 3. 优化订单页面、诊所管理页面的布局,更加集中,减少表长度 4. 新增诊所的时候业务员支持气泡卡片点击选择,不用再输入业务码 5. 接口日志筛选优化
421 lines
10 KiB
Vue
421 lines
10 KiB
Vue
<script lang="ts" setup>
|
|
import { ref, watch } from 'vue';
|
|
|
|
import { Page, useVbenDrawer } from '@vben/common-ui';
|
|
|
|
import { EditOutlined, FolderOutlined } from '@ant-design/icons-vue';
|
|
import {
|
|
Button,
|
|
Card,
|
|
Empty,
|
|
Input,
|
|
Modal,
|
|
Pagination,
|
|
Spin,
|
|
Tabs,
|
|
message,
|
|
} from 'ant-design-vue';
|
|
|
|
import type { ContextMenuItem } from '#/components/context-menu';
|
|
import { showContextMenu } from '#/components/context-menu';
|
|
import MIcon from '#/components/icon/icon.vue';
|
|
import { useFileGalleryFilter } from '#/composables/use-file-gallery-filter';
|
|
import { resolveTypeIcon } from '#/composables/use-file-type-icon';
|
|
import type { FileGalleryItem } from '#/api/core/file-gallery';
|
|
import {
|
|
batchArchiveFiles,
|
|
deleteFileGalleryItem,
|
|
getFileGalleryList,
|
|
moveFileGalleryType,
|
|
renameFileGalleryItem,
|
|
syncFileGalleryFromOss,
|
|
} from '#/api/core/file-gallery';
|
|
|
|
import FileDetailDrawer from './components/file-detail-drawer.vue';
|
|
|
|
defineOptions({ name: 'FileManagement' });
|
|
|
|
const loading = ref(false);
|
|
const archiving = ref(false);
|
|
const syncing = ref(false);
|
|
const renameOpen = ref(false);
|
|
const renameValue = ref('');
|
|
const renameTarget = ref<FileGalleryItem | null>(null);
|
|
const items = ref<FileGalleryItem[]>([]);
|
|
const total = ref(0);
|
|
const page = ref(1);
|
|
const pageSize = ref(24);
|
|
const pageSizeOptions = ['12', '24', '48', '96'];
|
|
|
|
const {
|
|
activeType,
|
|
keyword,
|
|
tabs,
|
|
setActiveType,
|
|
buildListParams,
|
|
fileTypes,
|
|
typesLoading,
|
|
} = useFileGalleryFilter('file-management-active-type');
|
|
|
|
const [DetailDrawer, detailDrawerApi] = useVbenDrawer({
|
|
connectedComponent: FileDetailDrawer,
|
|
});
|
|
|
|
let searchTimer: ReturnType<typeof setTimeout> | null = null;
|
|
|
|
async function load() {
|
|
loading.value = true;
|
|
try {
|
|
const res = await getFileGalleryList(buildListParams(page.value, pageSize.value));
|
|
const data = (res as any)?.data ?? res;
|
|
items.value = data?.items ?? [];
|
|
total.value = data?.total ?? 0;
|
|
} finally {
|
|
loading.value = false;
|
|
}
|
|
}
|
|
|
|
async function handleSync() {
|
|
syncing.value = true;
|
|
try {
|
|
const res = await syncFileGalleryFromOss();
|
|
const data = (res as any)?.data ?? res;
|
|
message.success(
|
|
`同步完成:扫描 ${data?.scanned ?? 0} 个,新增 ${data?.synced ?? 0} 个,跳过 ${data?.skipped ?? 0} 个`,
|
|
);
|
|
await load();
|
|
} finally {
|
|
syncing.value = false;
|
|
}
|
|
}
|
|
|
|
async function handleArchive() {
|
|
archiving.value = true;
|
|
try {
|
|
const res = await batchArchiveFiles();
|
|
const data = (res as any)?.data ?? res;
|
|
message.success(
|
|
`归档完成:修正分类 ${data?.reclassified ?? 0} 个,补全文件名 ${data?.file_name_filled ?? 0} 个`,
|
|
);
|
|
await load();
|
|
} finally {
|
|
archiving.value = false;
|
|
}
|
|
}
|
|
|
|
function handleDelete(item: FileGalleryItem) {
|
|
Modal.confirm({
|
|
title: '确认删除',
|
|
content: '删除后将同时移除 OSS 中的文件,此操作不可恢复,是否继续?',
|
|
okText: '删除',
|
|
okType: 'danger',
|
|
cancelText: '取消',
|
|
async onOk() {
|
|
await deleteFileGalleryItem(item.id);
|
|
message.success('删除成功');
|
|
await load();
|
|
},
|
|
});
|
|
}
|
|
|
|
function openDetail(item: FileGalleryItem) {
|
|
detailDrawerApi.setData({ id: item.id });
|
|
detailDrawerApi.open();
|
|
}
|
|
|
|
function handleRename(item: FileGalleryItem) {
|
|
renameTarget.value = item;
|
|
renameValue.value = item.file_name || item.original_name || '';
|
|
renameOpen.value = true;
|
|
}
|
|
|
|
async function submitRename() {
|
|
const name = renameValue.value.trim();
|
|
if (!name) {
|
|
message.warning('文件名不能为空');
|
|
return;
|
|
}
|
|
if (!renameTarget.value) {
|
|
return;
|
|
}
|
|
await renameFileGalleryItem(renameTarget.value.id, name);
|
|
message.success('重命名成功');
|
|
renameOpen.value = false;
|
|
renameTarget.value = null;
|
|
await load();
|
|
}
|
|
|
|
async function handleMoveType(item: FileGalleryItem, type: number) {
|
|
await moveFileGalleryType(item.id, type);
|
|
message.success('分类已更新');
|
|
await load();
|
|
}
|
|
|
|
function buildContextMenus(item: FileGalleryItem): ContextMenuItem[] {
|
|
const moveChildren: ContextMenuItem[] = fileTypes.value.map((typeItem) => ({
|
|
key: `move-${typeItem.value}`,
|
|
label: typeItem.name,
|
|
iconName: typeItem.icon,
|
|
disabled: item.type === typeItem.value,
|
|
handler: () => handleMoveType(item, typeItem.value),
|
|
}));
|
|
|
|
return [
|
|
{
|
|
key: 'rename',
|
|
label: '重命名',
|
|
icon: EditOutlined,
|
|
handler: () => handleRename(item),
|
|
},
|
|
{
|
|
key: 'move',
|
|
label: '移动分类',
|
|
icon: FolderOutlined,
|
|
children: moveChildren,
|
|
},
|
|
];
|
|
}
|
|
|
|
function onContextMenu(e: MouseEvent, item: FileGalleryItem) {
|
|
showContextMenu(e, buildContextMenus(item), item);
|
|
}
|
|
|
|
function onTabChange(key: string | number) {
|
|
setActiveType(Number(key));
|
|
page.value = 1;
|
|
void load();
|
|
}
|
|
|
|
function onSearch(value: string) {
|
|
keyword.value = value;
|
|
page.value = 1;
|
|
if (searchTimer) {
|
|
clearTimeout(searchTimer);
|
|
}
|
|
searchTimer = setTimeout(() => {
|
|
void load();
|
|
}, 300);
|
|
}
|
|
|
|
function onPageChange(p: number, size?: number) {
|
|
page.value = p;
|
|
if (size) {
|
|
pageSize.value = size;
|
|
}
|
|
void load();
|
|
}
|
|
|
|
function onShowSizeChange(_current: number, size: number) {
|
|
page.value = 1;
|
|
pageSize.value = size;
|
|
void load();
|
|
}
|
|
|
|
function itemIcon(item: FileGalleryItem) {
|
|
return item.type_icon || resolveTypeIcon(item.type, fileTypes.value);
|
|
}
|
|
|
|
watch(typesLoading, (val) => {
|
|
if (!val) {
|
|
void load();
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<Page auto-content-height title="文件管理">
|
|
<Card>
|
|
<Tabs :active-key="String(activeType)" @change="onTabChange">
|
|
<Tabs.TabPane v-for="tab in tabs" :key="String(tab.value)">
|
|
<template #tab>
|
|
<span class="tab-label">
|
|
<MIcon v-if="tab.icon" :icon="tab.icon" size="14" />
|
|
{{ tab.label }}
|
|
</span>
|
|
</template>
|
|
</Tabs.TabPane>
|
|
</Tabs>
|
|
|
|
<div class="toolbar">
|
|
<Input.Search
|
|
v-model:value="keyword"
|
|
allow-clear
|
|
placeholder="按文件名搜索"
|
|
style="width: 260px"
|
|
@search="onSearch"
|
|
@change="(e) => onSearch(e.target.value ?? '')"
|
|
/>
|
|
<Button :loading="syncing" @click="handleSync">从 OSS 同步</Button>
|
|
<Button type="primary" :loading="archiving" @click="handleArchive">一键归档</Button>
|
|
<Button :loading="loading" @click="load">刷新</Button>
|
|
</div>
|
|
|
|
<Spin :spinning="loading">
|
|
<div v-if="items.length" class="gallery-grid">
|
|
<div
|
|
v-for="item in items"
|
|
:key="item.id"
|
|
class="gallery-card"
|
|
@click="openDetail(item)"
|
|
@contextmenu.prevent="onContextMenu($event, item)"
|
|
>
|
|
<img v-if="item.type === 0" :src="item.url" alt="" class="gallery-thumb" />
|
|
<div v-else class="gallery-file-icon">
|
|
<MIcon :icon="itemIcon(item)" size="36" />
|
|
<span class="file-name">{{ item.file_name || item.original_name || '未命名' }}</span>
|
|
</div>
|
|
<div class="gallery-meta">
|
|
<div class="file-title">
|
|
<MIcon :icon="itemIcon(item)" size="12" class="meta-icon" />
|
|
{{ item.file_name || item.original_name || '-' }}
|
|
</div>
|
|
<div>{{ item.type_text || '-' }} · {{ item.file_size_text || '-' }}</div>
|
|
<div>{{ item.created_at || '-' }}</div>
|
|
</div>
|
|
<Button danger size="small" block @click.stop="handleDelete(item)">删除</Button>
|
|
</div>
|
|
</div>
|
|
<Empty v-else description="暂无文件,可点击「从 OSS 同步」导入" />
|
|
</Spin>
|
|
|
|
<div v-if="total > 0" class="gallery-pagination">
|
|
<Pagination
|
|
:current="page"
|
|
:page-size="pageSize"
|
|
:page-size-options="pageSizeOptions"
|
|
:total="total"
|
|
show-size-changer
|
|
:show-total="(t) => `共 ${t} 条`"
|
|
@change="onPageChange"
|
|
@show-size-change="onShowSizeChange"
|
|
/>
|
|
</div>
|
|
</Card>
|
|
|
|
<DetailDrawer />
|
|
|
|
<Modal
|
|
v-model:open="renameOpen"
|
|
title="重命名"
|
|
ok-text="保存"
|
|
cancel-text="取消"
|
|
@ok="submitRename"
|
|
>
|
|
<Input v-model:value="renameValue" placeholder="请输入文件名" />
|
|
</Modal>
|
|
</Page>
|
|
</template>
|
|
|
|
<style scoped lang="scss">
|
|
@use '#/components/form/components/picker-card-theme.scss' as theme;
|
|
|
|
.tab-label {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
}
|
|
|
|
.toolbar {
|
|
display: flex;
|
|
gap: 12px;
|
|
margin-bottom: 16px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.gallery-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
|
|
gap: 16px;
|
|
}
|
|
|
|
.gallery-card {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
padding: 10px;
|
|
border: 1px solid #e5e6eb;
|
|
border-radius: 8px;
|
|
background: #fff;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.gallery-thumb {
|
|
width: 100%;
|
|
height: 120px;
|
|
object-fit: cover;
|
|
border-radius: 6px;
|
|
background: #f5f5f5;
|
|
}
|
|
|
|
.gallery-file-icon {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 8px;
|
|
height: 120px;
|
|
border-radius: 6px;
|
|
background: #f5f5f5;
|
|
color: #4e5969;
|
|
padding: 8px;
|
|
|
|
.file-name {
|
|
font-size: 12px;
|
|
text-align: center;
|
|
word-break: break-all;
|
|
line-height: 1.3;
|
|
max-height: 32px;
|
|
overflow: hidden;
|
|
}
|
|
}
|
|
|
|
.gallery-meta {
|
|
font-size: 12px;
|
|
color: #86909c;
|
|
text-align: center;
|
|
|
|
.file-title {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 4px;
|
|
color: #1d2129;
|
|
font-weight: 500;
|
|
margin-bottom: 4px;
|
|
max-width: 100%;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.meta-icon {
|
|
flex-shrink: 0;
|
|
}
|
|
}
|
|
|
|
.gallery-pagination {
|
|
margin-top: 20px;
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
.dark {
|
|
.gallery-card {
|
|
@include theme.picker-card-dark-props;
|
|
}
|
|
|
|
.gallery-thumb,
|
|
.gallery-file-icon {
|
|
background: #374151;
|
|
}
|
|
|
|
.gallery-meta {
|
|
@include theme.picker-text-secondary-dark;
|
|
|
|
.file-title {
|
|
color: #e5e7eb;
|
|
}
|
|
}
|
|
}
|
|
</style>
|