138 lines
3.9 KiB
Vue
138 lines
3.9 KiB
Vue
<template>
|
|
<PageWrapper>
|
|
<el-card :bordered="false" class="pt-3 mb-3 proCard">
|
|
<BasicForm @register="register" @submit="handleSubmit" @reset="handleReset"></BasicForm>
|
|
</el-card>
|
|
<el-card :bordered="false" class="proCard">
|
|
<BasicTable
|
|
:columns="columns"
|
|
:request="loadDataTable"
|
|
:row-key="(row) => row.id"
|
|
ref="tableRef"
|
|
:actionColumn="actionColumn"
|
|
@selection-change="onSelectionChange"
|
|
>
|
|
<template #tableTitle>
|
|
<UploadFile style="margin-right:20px;" @upload="fileUploadFiles" file-type=".pdf.xlsx.xls.doc.docx.jpeg,.png,.jpg,.gif" name="logger" :multiple="true" :showFileList="false" :isBtn="true"/>
|
|
<el-button type="danger" @click="handleDelete()" :disabled="!selectionData.length" v-perm="['sys:fileLog:batchDelete']">
|
|
<template #icon>
|
|
<el-icon class="el-input__icon">
|
|
<Delete />
|
|
</el-icon>
|
|
</template>
|
|
删除
|
|
</el-button>
|
|
</template>
|
|
</BasicTable>
|
|
</el-card>
|
|
|
|
<editDialog
|
|
v-if="editVisible"
|
|
:fileId="fileId"
|
|
v-model:visible="editVisible"
|
|
@success="reloadTable('noRefresh')"
|
|
>
|
|
</editDialog>
|
|
</PageWrapper>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { reactive, ref, h,nextTick,defineAsyncComponent } from 'vue';
|
|
import { ColProps } from 'element-plus';
|
|
import { schemas } from './querySchemas';
|
|
import { useForm } from '@/components/Form/index';
|
|
import { TableAction } from '@/components/Table';
|
|
import { getFileLogList,fileLogDelete,fileLogBatchDelete } from '@/api/logger/fileLog';
|
|
import UploadFile from '@/components/Upload/file.vue';
|
|
import { columns } from './columns';
|
|
import {message,confirm} from "@/utils/auth";
|
|
const editDialog = defineAsyncComponent(() =>
|
|
import('./edit.vue')
|
|
)
|
|
const fileId =ref(0)
|
|
const editVisible=ref(false)
|
|
const selectionData = ref([])
|
|
const tableRef = ref();
|
|
const formParams = reactive({
|
|
fileName:'',
|
|
fileType:''
|
|
});
|
|
const actionColumn = reactive({
|
|
width: 250,
|
|
label: '操作',
|
|
prop: 'action',
|
|
fixed: 'right',
|
|
render(record) {
|
|
return h(TableAction, {
|
|
style: 'button',
|
|
actions: [
|
|
{
|
|
label: '详情',
|
|
type: 'warning',
|
|
onClick: handleDetail.bind(null, record),
|
|
auth: ['sys:fileLog:detail'],
|
|
},
|
|
{
|
|
label: '删除',
|
|
type: 'danger',
|
|
onClick: handleDelete.bind(null, record),
|
|
auth: ['sys:fileLog:delete'],
|
|
},
|
|
],
|
|
});
|
|
},
|
|
});
|
|
|
|
const loadDataTable = async (res: any) => {
|
|
const result = await getFileLogList({ ...formParams, ...res });
|
|
return result;
|
|
};
|
|
|
|
function reloadTable(noRefresh='') {
|
|
tableRef.value.reload(noRefresh?{}:{pageNo:1});
|
|
}
|
|
const [register, {}] = useForm({
|
|
labelWidth: 80,
|
|
layout: 'horizontal',
|
|
colProps: { span: 6 } as ColProps,
|
|
submitOnReset:true,
|
|
schemas
|
|
});
|
|
function handleSubmit(values: Recordable) {
|
|
handleReset()
|
|
for (const key in values) {
|
|
formParams[key] = values[key]
|
|
}
|
|
reloadTable();
|
|
}
|
|
|
|
function handleReset() {
|
|
for (const key in formParams) {
|
|
formParams[key] ='';
|
|
}
|
|
}
|
|
const handleDetail = async (record: Recordable) => {
|
|
fileId.value=record.row.id
|
|
await nextTick();
|
|
editVisible.value=true
|
|
};
|
|
const fileUploadFiles = () => {
|
|
reloadTable()
|
|
};
|
|
async function handleDelete(record: Recordable) {
|
|
let ids = []
|
|
if(!record){
|
|
ids = selectionData.value.map(({id}) => id);
|
|
}
|
|
await confirm('确定要删除?');
|
|
record? await fileLogDelete(record.row.id):await fileLogBatchDelete(ids);
|
|
message("删除成功");
|
|
reloadTable()
|
|
}
|
|
function onSelectionChange(value){
|
|
selectionData.value = value
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped></style>
|