admin-vben5/apps/web-antd/src/views/system/oss/index.vue

244 lines
6.2 KiB
Vue
Raw Normal View History

2024-08-07 08:57:56 +08:00
<script setup lang="ts">
2024-10-05 16:38:47 +08:00
import type { Recordable } from '@vben/types';
2024-09-29 19:43:06 +08:00
import { onMounted, ref } from 'vue';
2024-09-18 15:19:37 +08:00
import { useRouter } from 'vue-router';
2024-10-07 19:53:59 +08:00
import { Page, useVbenModal, type VbenFormProps } from '@vben/common-ui';
2024-10-05 16:38:47 +08:00
import { $t } from '@vben/locales';
2024-10-07 16:56:32 +08:00
import { getPopupContainer } from '@vben/utils';
2024-09-18 15:19:37 +08:00
2024-10-05 16:38:47 +08:00
import {
Image,
message,
Modal,
Popconfirm,
Space,
Switch,
Tooltip,
} from 'ant-design-vue';
import dayjs from 'dayjs';
2024-10-05 18:57:06 +08:00
import { isEmpty } from 'lodash-es';
2024-09-24 11:23:02 +08:00
2024-10-05 16:38:47 +08:00
import { useVbenVxeGrid, type VxeGridProps } from '#/adapter';
2024-09-29 19:43:06 +08:00
import { configInfoByKey } from '#/api/system/config';
2024-10-05 16:38:47 +08:00
import { ossDownload, ossList, ossRemove } from '#/api/system/oss';
import { downloadByData } from '#/utils/file/download';
2024-09-24 11:23:02 +08:00
2024-10-05 16:38:47 +08:00
import { columns, querySchema } from './data';
2024-10-08 13:37:14 +08:00
import fileUploadModal from './file-upload-modal.vue';
2024-10-07 19:53:59 +08:00
import imageUploadModal from './image-upload-modal.vue';
2024-09-24 11:23:02 +08:00
2024-10-05 16:38:47 +08:00
const formOptions: VbenFormProps = {
2024-10-05 21:30:27 +08:00
commonConfig: {
labelWidth: 80,
},
2024-10-05 16:38:47 +08:00
schema: querySchema(),
wrapperClass: 'grid-cols-1 md:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4',
};
2024-09-24 11:23:02 +08:00
2024-10-05 16:38:47 +08:00
const gridOptions: VxeGridProps = {
checkboxConfig: {
// 高亮
highlight: true,
// 翻页时保留选中状态
reserve: true,
// 点击行选中
// trigger: 'row',
},
columns,
height: 'auto',
keepSource: true,
pagerConfig: {},
proxyConfig: {
ajax: {
2024-10-05 18:57:06 +08:00
query: async ({ page, sort }, formValues = {}) => {
2024-10-05 16:38:47 +08:00
// 区间选择器处理
if (formValues?.createTime) {
formValues.params = {
beginTime: dayjs(formValues.createTime[0]).format(
'YYYY-MM-DD 00:00:00',
),
endTime: dayjs(formValues.createTime[1]).format(
'YYYY-MM-DD 23:59:59',
),
};
Reflect.deleteProperty(formValues, 'createTime');
} else {
Reflect.deleteProperty(formValues, 'params');
}
2024-10-05 18:57:06 +08:00
const params: any = {
2024-10-05 16:38:47 +08:00
pageNum: page.currentPage,
pageSize: page.pageSize,
...formValues,
2024-10-05 18:57:06 +08:00
};
if (!isEmpty(sort)) {
params.orderByColumn = sort.field;
params.isAsc = sort.order;
}
return await ossList(params);
2024-10-05 16:38:47 +08:00
},
2024-09-24 11:23:02 +08:00
},
},
2024-10-05 16:38:47 +08:00
rowConfig: {
isHover: true,
keyField: 'ossId',
2024-10-05 21:30:27 +08:00
height: 65,
2024-09-24 11:23:02 +08:00
},
2024-10-05 18:57:06 +08:00
sortConfig: {
remote: true,
},
2024-10-05 16:38:47 +08:00
round: true,
align: 'center',
showOverflow: true,
};
2024-10-05 21:30:27 +08:00
const checked = ref(false);
2024-10-05 18:57:06 +08:00
const [BasicTable, tableApi] = useVbenVxeGrid({
formOptions,
gridOptions,
gridEvents: {
sortChange: () => {
tableApi.query();
},
2024-10-05 21:30:27 +08:00
checkboxChange: (e: any) => {
checked.value = e.records.length > 0;
},
checkboxAll: (e: any) => {
checked.value = e.records.length > 0;
},
2024-10-05 18:57:06 +08:00
},
});
2024-10-05 16:38:47 +08:00
async function handleDownload(row: Recordable<any>) {
const hideLoading = message.loading($t('pages.common.downloadLoading'), 0);
try {
const data = await ossDownload(row.ossId);
downloadByData(data, row.originalName);
} finally {
hideLoading();
}
}
async function handleDelete(row: Recordable<any>) {
await ossRemove(row.ossId);
2024-10-05 18:57:06 +08:00
await tableApi.query();
2024-10-05 16:38:47 +08:00
}
function handleMultiDelete() {
const rows = tableApi.grid.getCheckboxRecords();
const ids = rows.map((row: any) => row.ossId);
Modal.confirm({
title: '提示',
okType: 'danger',
content: `确认删除选中的${ids.length}条记录吗?`,
onOk: async () => {
await ossRemove(ids);
2024-10-05 18:57:06 +08:00
await tableApi.query();
2024-10-05 16:38:47 +08:00
},
});
}
const router = useRouter();
function handleToSettings() {
router.push('/system/oss-config');
}
2024-09-29 19:43:06 +08:00
const preview = ref(false);
onMounted(async () => {
const resp = await configInfoByKey('sys.oss.previewListResource');
preview.value = Boolean(resp);
});
2024-10-05 16:38:47 +08:00
function isImageFile(ext: string) {
const supportList = ['jpg', 'jpeg', 'png', 'gif', 'webp'];
return supportList.some((item) => ext.toLocaleLowerCase().includes(item));
}
2024-10-07 19:53:59 +08:00
const [ImageUploadModal, imageUploadApi] = useVbenModal({
connectedComponent: imageUploadModal,
});
2024-10-08 13:37:14 +08:00
const [FileUploadModal, fileUploadApi] = useVbenModal({
connectedComponent: fileUploadModal,
});
2024-08-07 08:57:56 +08:00
</script>
<template>
2024-10-05 16:38:47 +08:00
<Page :auto-content-height="true">
<BasicTable>
<template #toolbar-actions>
<span class="pl-[7px] text-[16px]">文件列表</span>
</template>
<template #toolbar-tools>
<Space>
<Tooltip title="预览图片">
<Switch v-model:checked="preview" />
</Tooltip>
<a-button
v-access:code="['system:ossConfig:list']"
@click="handleToSettings"
>
配置管理
</a-button>
<a-button
2024-10-05 21:30:27 +08:00
:disabled="!checked"
2024-10-05 16:38:47 +08:00
danger
type="primary"
2024-10-05 21:30:27 +08:00
v-access:code="['system:oss:remove']"
2024-10-05 16:38:47 +08:00
@click="handleMultiDelete"
>
{{ $t('pages.common.delete') }}
</a-button>
2024-10-08 13:37:14 +08:00
<a-button
v-access:code="['system:oss:upload']"
@click="fileUploadApi.open"
>
文件上传
</a-button>
2024-10-07 19:53:59 +08:00
<a-button
v-access:code="['system:oss:upload']"
@click="imageUploadApi.open"
>
图片上传
</a-button>
2024-10-05 16:38:47 +08:00
</Space>
</template>
<template #url="{ row }">
<Image
v-if="preview && isImageFile(row.url)"
:src="row.url"
height="50px"
/>
<span v-else>{{ row.url }}</span>
</template>
<template #action="{ row }">
2024-10-07 16:56:32 +08:00
<Space>
<ghost-button
2024-10-07 19:35:54 +08:00
v-access:code="['system:oss:download']"
2024-10-07 16:56:32 +08:00
@click="handleDownload(row)"
2024-10-05 16:38:47 +08:00
>
2024-10-07 16:56:32 +08:00
{{ $t('pages.common.download') }}
</ghost-button>
<Popconfirm
:get-popup-container="getPopupContainer"
placement="left"
title="确认删除?"
@confirm="handleDelete(row)"
>
<ghost-button
danger
v-access:code="['system:oss:remove']"
@click.stop=""
>
{{ $t('pages.common.delete') }}
</ghost-button>
</Popconfirm>
</Space>
2024-10-05 16:38:47 +08:00
</template>
</BasicTable>
2024-10-07 19:53:59 +08:00
<ImageUploadModal @reload="tableApi.query" />
2024-10-08 13:37:14 +08:00
<FileUploadModal @reload="tableApi.query" />
2024-09-18 15:19:37 +08:00
</Page>
2024-08-07 08:57:56 +08:00
</template>