You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
besure_web/src/views/mes/esopFile/index.vue

256 lines
8.2 KiB
Vue

<template>
<ContentWrap>
<!-- 搜索工作栏 -->
<el-form
class="-mb-15px"
:model="queryParams"
ref="queryFormRef"
:inline="true"
min-label-width="68px"
>
<el-form-item :label="t('FactoryModeling.EsopFile.searchFileNameLabel')" prop="name">
<el-input
v-model="queryParams.name"
:placeholder="t('FactoryModeling.EsopFile.searchFileNamePlaceholder')"
clearable
@keyup.enter="handleQuery"
class="!w-240px"
/>
</el-form-item>
<el-form-item :label="t('FactoryModeling.EsopFile.searchClassificationLabel')" prop="classification">
<el-select
v-model="queryParams.classification"
:placeholder="t('FactoryModeling.EsopFile.searchClassificationPlaceholder')"
clearable
@keyup.enter="handleQuery"
class="!w-240px">
<el-option
v-for="dict in getIntDictOptions(DICT_TYPE.Classification)"
:key="dict.value"
:label="dict.label"
:value="dict.value" />
</el-select>
</el-form-item>
<el-form-item :label="t('FactoryModeling.EsopFile.searchStatusLabel')" prop="status">
<el-select
v-model="queryParams.status"
:placeholder="t('FactoryModeling.EsopFile.searchStatusPlaceholder')"
clearable
class="!w-240px"
>
<el-option
v-for="dict in getIntDictOptions(DICT_TYPE.FILE_STATUS)"
:key="dict.value"
:label="dict.label"
:value="dict.value"
/>
</el-select>
</el-form-item>
<el-form-item>
<el-button @click="handleQuery"><Icon icon="ep:search" class="mr-5px" /> {{t('FactoryModeling.EsopFile.searchButtonText')}}</el-button>
<el-button @click="resetQuery"><Icon icon="ep:refresh" class="mr-5px" /> {{t('FactoryModeling.EsopFile.resetButtonText')}}</el-button>
<el-button
type="primary"
plain
@click="openForm('create')"
v-hasPermi="['esop:file:create']"
> <Icon icon="ep:plus" class="mr-5px" />
{{t('FactoryModeling.EsopFile.uploadButtonText')}}
</el-button>
</el-form-item>
</el-form>
</ContentWrap>
<!-- 列表 -->
<ContentWrap>
<el-table v-loading="loading" :data="list" :stripe="true" :show-overflow-tooltip="true" ref="tableRef" :max-height="planTableMaxHeight">
<!-- <el-table-column label="id" align="center" prop="id" />
<el-table-column label="配置编号" align="center" prop="configId" />-->
<el-table-column :label="t('FactoryModeling.EsopFile.tableCodeColumn')" align="center" prop="code" />
<el-table-column :label="t('FactoryModeling.EsopFile.tableNameColumn')" align="center" prop="name" width="500px"/>
<el-table-column :label="t('FactoryModeling.EsopFile.tableClassificationColumn')" align="center" prop="classification" width="200px">
<template #default="scope">
<dict-tag type="classification" :value="scope.row.classification" />
</template>
</el-table-column>
<el-table-column :label="t('FactoryModeling.EsopFile.tableTypeColumn')" align="center" prop="type" width="200px"/>
<el-table-column :label="t('FactoryModeling.EsopFile.tableStatusColumn')" align="center" prop="status">
<template #default="scope">
<dict-tag :type="DICT_TYPE.FILE_STATUS" :value="scope.row.status" />
</template>
</el-table-column>
<el-table-column :label="t('FactoryModeling.EsopFile.tableCreatorNameColumn')" align="center" prop="creatorName" />
<el-table-column
:label="t('FactoryModeling.EsopFile.tableCreateTimeColumn')"
align="center"
prop="createTime"
:formatter="dateFormatter"
width="180px"
/>
<el-table-column :label="t('FactoryModeling.EsopFile.tableOperateColumn')" align="center" min-width="120px">
<template #default="scope">
<el-button
link
type="primary"
@click="openForm('update', scope.row.id)"
v-hasPermi="['esop:file:update']"
>
{{t('FactoryModeling.EsopFile.tableEditAction') }}
</el-button>
<el-button
link
type="primary"
@click="downloadFile(scope.row.url)"
v-hasPermi="['esop:file:update']"
>
{{t('FactoryModeling.EsopFile.tableDownloadAction') }}
</el-button>
<!-- <el-link v-show="scope.row.path" type="primary" download :href="row.url" :underline="false" target="_blank"
>下载</el-link
>-->
<el-button
link
type="danger"
@click="handleDelete(scope.row.id)"
v-hasPermi="['esop:file:delete']"
>
{{t('FactoryModeling.EsopFile.tableDeleteAction') }}
</el-button>
</template>
</el-table-column>
</el-table>
<!-- 分页 -->
<Pagination
:total="total"
v-model:page="queryParams.pageNo"
v-model:limit="queryParams.pageSize"
@pagination="getList"
/>
</ContentWrap>
<!-- 表单弹窗:添加/修改 -->
<FileForm ref="formRef" @success="getList" />
</template>
<script setup lang="ts">
import { getIntDictOptions, DICT_TYPE } from '@/utils/dict'
import { dateFormatter } from '@/utils/formatTime'
import download from '@/utils/download'
import { FileApi, FileVO } from '@/api/mes/esopFile'
import FileForm from './FileForm.vue'
import { getDictOptions } from '@/utils/dict'
/** esop */
defineOptions({ name: 'EsopFile' })
const message = useMessage() //
const { t } = useI18n() //
const loading = ref(true) //
const list = ref<FileVO[]>([]) // 列表的数据
const tableRef = ref()
const planTableMaxHeight = ref(520)
const planPaginationRef = ref<HTMLElement>()
const updatePlanTableMaxHeight = async () => {
await nextTick()
const tableTop = tableRef.value?.$el?.getBoundingClientRect().top ?? 0
const paginationHeight = planPaginationRef.value?.getBoundingClientRect().height ?? 72
const pageBottomGap = 56
const availableHeight = window.innerHeight - tableTop - paginationHeight - pageBottomGap
planTableMaxHeight.value = Math.min(window.innerHeight, Math.max(240, Math.floor(availableHeight)))
}
const total = ref(0) // 列表的总页数
const queryParams = reactive({
pageNo: 1,
pageSize: 10,
configId: undefined,
code: undefined,
name: undefined,
path: undefined,
url: undefined,
type: undefined,
class: undefined,
status: undefined,
size: undefined,
createTime: [],
})
const queryFormRef = ref() // 搜索的表单
const exportLoading = ref(false) // 导出的加载中
/** 查询列表 */
const getList = async () => {
loading.value = true
try {
const data = await FileApi.getFilePage(queryParams)
list.value = data.list
total.value = data.total
} finally {
loading.value = false
updatePlanTableMaxHeight()
}
}
/** 搜索按钮操作 */
const handleQuery = () => {
queryParams.pageNo = 1
getList()
}
/** 重置按钮操作 */
const resetQuery = () => {
queryFormRef.value.resetFields()
handleQuery()
}
/** 添加/修改操作 */
const formRef = ref()
const openForm = (type: string, id?: number) => {
formRef.value.open(type, id)
}
/** 删除按钮操作 */
const handleDelete = async (id: number) => {
try {
// 删除的二次确认
await message.delConfirm()
// 发起删除
await FileApi.deleteFile(id)
message.success(t('common.delSuccess'))
// 刷新列表
await getList()
} catch {}
}
const downloadFile = (url) => {
window.open(url, '_blank')
}
/** 导出按钮操作 */
const handleExport = async () => {
try {
// 导出的二次确认
await message.exportConfirm()
// 发起导出
exportLoading.value = true
const data = await FileApi.exportFile(queryParams)
download.excel(data, 'esop文件表库.xls')
} catch {
} finally {
exportLoading.value = false
}
}
/** 初始化 **/
onMounted(() => {
getList()
updatePlanTableMaxHeight()
window.addEventListener('resize', updatePlanTableMaxHeight)
})
onBeforeUnmount(() => {
window.removeEventListener('resize', updatePlanTableMaxHeight)
})
</script>