142 lines
5.6 KiB
Vue
142 lines
5.6 KiB
Vue
<script lang="ts" setup>
|
|
import { onMounted, ref } from 'vue';
|
|
import { auth, columns, onAdd, onDelete, onDeleteBatch, onDownload, onDownloadBatch, onSearch, onUpdate, selectRows } from '@/views/system/files/utils';
|
|
import PureTableBar from '@/components/TableBar/src/bar';
|
|
import AddFill from '@iconify-icons/ri/add-circle-line';
|
|
import PureTable from '@pureadmin/table';
|
|
import Delete from '@iconify-icons/ep/delete';
|
|
import Download from '@iconify-icons/ep/download';
|
|
import EditPen from '@iconify-icons/ep/edit-pen';
|
|
import Refresh from '@iconify-icons/ep/refresh';
|
|
import { selectUserinfo } from '@/components/Table/Userinfo/columns';
|
|
import { $t } from '@/plugins/i18n';
|
|
import { useFilesStore } from '@/store/monitor/files';
|
|
import { useRenderIcon } from '@/components/CommonIcon/src/hooks';
|
|
import { FormInstance } from 'element-plus';
|
|
import { hasAuth } from '@/router/utils';
|
|
|
|
const tableRef = ref();
|
|
const formRef = ref();
|
|
const filesStore = useFilesStore();
|
|
|
|
/** 当前页改变时 */
|
|
const onCurrentPageChange = async (value: number) => {
|
|
filesStore.pagination.currentPage = value;
|
|
await onSearch();
|
|
};
|
|
|
|
/** 当分页发生变化 */
|
|
const onPageSizeChange = async (value: number) => {
|
|
filesStore.pagination.pageSize = value;
|
|
await onSearch();
|
|
};
|
|
|
|
/** 重置表单 */
|
|
const resetForm = async (formEl: FormInstance) => {
|
|
if (!formEl) return;
|
|
formEl.resetFields();
|
|
await onSearch();
|
|
};
|
|
|
|
/** 选择多行 */
|
|
const onSelectionChange = (rows: Array<any>) => {
|
|
selectRows.value = rows;
|
|
};
|
|
|
|
onMounted(() => {
|
|
onSearch();
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<div class="main">
|
|
<Auth :value="auth.search">
|
|
<el-form ref="formRef" :inline="true" :model="filesStore.form" class="search-form bg-bg_color w-[99/100] pl-8 pt-[12px] overflow-auto">
|
|
<el-form-item :label="$t('files_filename')" prop="filename">
|
|
<el-input v-model="filesStore.form.filename" :placeholder="`${$t('input')}${$t('files_filename')}`" class="!w-[180px]" clearable />
|
|
</el-form-item>
|
|
<el-form-item :label="$t('files_filepath')" prop="filepath">
|
|
<el-input v-model="filesStore.form.filepath" :placeholder="`${$t('input')}${$t('files_filepath')}`" class="!w-[180px]" clearable />
|
|
</el-form-item>
|
|
<el-form-item :label="$t('files_fileType')" prop="fileType">
|
|
<el-input v-model="filesStore.form.fileType" :placeholder="`${$t('input')}${$t('files_fileType')}`" class="!w-[180px]" clearable />
|
|
</el-form-item>
|
|
<el-form-item :label="$t('files_downloadCount')" prop="downloadCount">
|
|
<el-input v-model="filesStore.form.downloadCount" :placeholder="`${$t('input')}${$t('files_downloadCount')}`" class="!w-[180px]" clearable min="0" type="number" />
|
|
</el-form-item>
|
|
<el-form-item>
|
|
<el-button :icon="useRenderIcon('ri:search-line')" :loading="filesStore.loading" type="primary" @click="onSearch"> {{ $t('search') }} </el-button>
|
|
<el-button :icon="useRenderIcon(Refresh)" @click="resetForm(formRef)"> {{ $t('buttons.reset') }}</el-button>
|
|
</el-form-item>
|
|
</el-form>
|
|
</Auth>
|
|
|
|
<PureTableBar :columns="columns" :title="$t('system_file')" @fullscreen="tableRef.setAdaptive()" @refresh="onSearch">
|
|
<template #buttons>
|
|
<el-button v-if="hasAuth(auth.add)" :icon="useRenderIcon(AddFill)" type="primary" @click="onAdd">
|
|
{{ $t('addNew') }}
|
|
</el-button>
|
|
|
|
<!-- 批量下载 -->
|
|
<el-button v-if="hasAuth(auth.downloadFilesByFileId)" :disabled="!(selectRows.length > 0)" :icon="useRenderIcon(Download)" type="success" @click="onDownloadBatch">
|
|
{{ $t('download_batch') }}
|
|
</el-button>
|
|
|
|
<!-- 批量删除按钮 -->
|
|
<el-button v-if="hasAuth(auth.deleted)" :disabled="!(selectRows.length > 0)" :icon="useRenderIcon(Delete)" type="danger" @click="onDeleteBatch">
|
|
{{ $t('deleteBatches') }}
|
|
</el-button>
|
|
</template>
|
|
|
|
<template v-slot="{ size, dynamicColumns }">
|
|
<pure-table
|
|
ref="tableRef"
|
|
:adaptiveConfig="{ offsetBottom: 96 }"
|
|
:columns="dynamicColumns"
|
|
:data="filesStore.datalist"
|
|
:header-cell-style="{ background: 'var(--el-fill-color-light)', color: 'var(--el-text-color-primary)' }"
|
|
:loading="filesStore.loading"
|
|
:pagination="filesStore.pagination"
|
|
:size="size"
|
|
adaptive
|
|
align-whole="center"
|
|
border
|
|
highlight-current-row
|
|
row-key="id"
|
|
showOverflowTooltip
|
|
table-layout="auto"
|
|
@page-size-change="onPageSizeChange"
|
|
@selection-change="onSelectionChange"
|
|
@page-current-change="onCurrentPageChange"
|
|
>
|
|
<template #createUser="{ row }">
|
|
<el-button v-show="row.createUser" link type="primary" @click="selectUserinfo(row.createUser)">
|
|
{{ row.createUsername }}
|
|
</el-button>
|
|
</template>
|
|
|
|
<template #updateUser="{ row }">
|
|
<el-button v-show="row.updateUser" link type="primary" @click="selectUserinfo(row.updateUser)">
|
|
{{ row.updateUsername }}
|
|
</el-button>
|
|
</template>
|
|
|
|
<template #operation="{ row }">
|
|
<el-button v-if="hasAuth(auth.update)" :icon="useRenderIcon(EditPen)" :size="size" class="reset-margin" link type="primary" @click="onUpdate(row)"> {{ $t('modify') }} </el-button>
|
|
<el-button v-if="hasAuth(auth.downloadFilesByFileId)" :icon="useRenderIcon(EditPen)" :size="size" class="reset-margin" link type="primary" @click="onDownload(row)">
|
|
{{ $t('download') }}
|
|
</el-button>
|
|
<el-popconfirm v-if="hasAuth(auth.deleted)" :title="`${$t('delete')} ${row.filename}?`" @confirm="onDelete(row)">
|
|
<template #reference>
|
|
<el-button :icon="useRenderIcon(Delete)" :size="size" class="reset-margin" link type="primary">
|
|
{{ $t('delete') }}
|
|
</el-button>
|
|
</template>
|
|
</el-popconfirm>
|
|
</template>
|
|
</pure-table>
|
|
</template>
|
|
</PureTableBar>
|
|
</div>
|
|
</template>
|