121 lines
4.5 KiB
Vue
121 lines
4.5 KiB
Vue
<script lang="ts" setup>
|
|
import { onMounted, ref } from 'vue';
|
|
import { columns } from '@/views/system/files/utils/columns';
|
|
import PureTableBar from '@/components/TableBar/src/bar';
|
|
import AddFill from '@iconify-icons/ri/add-circle-line';
|
|
import PureTable from '@pureadmin/table';
|
|
import { onAdd, onDelete, onSearch, onUpdate } from '@/views/system/files/utils/hooks';
|
|
import Delete from '@iconify-icons/ep/delete';
|
|
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/system/files.ts';
|
|
import { useRenderIcon } from '@/components/CommonIcon/src/hooks';
|
|
|
|
const tableRef = ref();
|
|
const formRef = ref();
|
|
const filesStore = useFilesStore();
|
|
|
|
/**
|
|
* * 当前页改变时
|
|
*/
|
|
const onCurrentPageChange = async (value: number) => {
|
|
filesStore.pagination.currentPage = value;
|
|
await onSearch();
|
|
};
|
|
|
|
/**
|
|
* * 当分页发生变化
|
|
* @param value
|
|
*/
|
|
const onPageSizeChange = async (value: number) => {
|
|
filesStore.pagination.pageSize = value;
|
|
await onSearch();
|
|
};
|
|
|
|
/**
|
|
* 重置表单
|
|
* @param formEl
|
|
*/
|
|
const resetForm = async formEl => {
|
|
if (!formEl) return;
|
|
formEl.resetFields();
|
|
await onSearch();
|
|
};
|
|
|
|
onMounted(() => {
|
|
onSearch();
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<div class="main">
|
|
<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 />
|
|
</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>
|
|
|
|
<PureTableBar :columns="columns" title="系统文件管理" @fullscreen="tableRef.setAdaptive()" @refresh="onSearch">
|
|
<template #buttons>
|
|
<el-button :icon="useRenderIcon(AddFill)" type="primary" @click="onAdd"> {{ $t('add_new') }}</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"
|
|
@page-current-change="onCurrentPageChange"
|
|
>
|
|
<template #createUser="{ row }">
|
|
<el-button link type="primary" @click="selectUserinfo(row.createUser)">{{ $t('table.createUser') }} </el-button>
|
|
</template>
|
|
|
|
<template #updateUser="{ row }">
|
|
<el-button link type="primary" @click="selectUserinfo(row.updateUser)">{{ $t('table.updateUser') }} </el-button>
|
|
</template>
|
|
|
|
<template #operation="{ row }">
|
|
<el-button :icon="useRenderIcon(EditPen)" :size="size" class="reset-margin" link type="primary" @click="onUpdate(row)"> {{ $t('modify') }} </el-button>
|
|
<el-popconfirm :title="`是否确认删除 ${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>
|