123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223 |
- <template>
- <div class="table-box">
- <ProTable ref="proTable" :columns="columns" row-key="id" :request-api="listSparePartsApi">
- <!-- 表格 header 按钮 -->
- <template #tableHeader="scope">
- <el-button type="primary" v-auth="['als:spareParts:add']" icon="CirclePlus" @click="openDialog(1, '部件新增')"> 新增 </el-button>
- <el-button type="primary" v-auth="['als:spareParts:import']" icon="Upload" plain @click="batchAdd"> 导入 </el-button>
- <el-button type="primary" v-auth="['als:spareParts:export']" icon="Download" plain @click="downloadFile"> 导出 </el-button>
- <el-button
- type="danger"
- v-auth="['als:spareParts:remove']"
- icon="Delete"
- plain
- :disabled="!scope.isSelected"
- @click="batchDelete(scope.selectedListIds)"
- >
- 批量删除
- </el-button>
- </template>
- <!-- 表格操作 -->
- <template #operation="scope">
- <el-button type="primary" link icon="View" v-auth="['als:spareParts:query']" @click="openDialog(3, '部件查看', scope.row)"> 查看 </el-button>
- <el-button type="primary" link icon="EditPen" v-auth="['als:spareParts:edit']" @click="openDialog(2, '部件编辑', scope.row)">
- 编辑
- </el-button>
- <el-button type="primary" link icon="Delete" v-auth="['als:spareParts:remove']" @click="deleteSpareParts(scope.row)"> 删除 </el-button>
- </template>
- </ProTable>
- <FormDialog ref="formDialogRef" :items-options="itemsOptions" :model="model" />
- <ImportExcel ref="dialogRef" />
- <TaskDialog ref="taskDialogRef" />
- </div>
- </template>
- <script setup lang="tsx" name="SpareParts">
- import { useHandleData } from '@/hooks/useHandleData'
- import { ElMessageBox } from 'element-plus'
- import ImportExcel from '@/components/ImportExcel/index.vue'
- import TaskDialog from '@/components/TaskDialog/index.vue'
- import FormDialog from '@/components/FormDialog/index.vue'
- import { ProTableInstance, ColumnProps } from '@/components/ProTable/interface'
- import {
- listSparePartsApi,
- delSparePartsApi,
- addSparePartsApi,
- updateSparePartsApi,
- importTemplateApi,
- importSparePartsDataApi,
- exportSparePartsApi,
- getSparePartsApi
- } from '@/api/modules/als/spareParts'
- // ProTable 实例
- const proTable = ref<ProTableInstance>()
- // 表单model
- const model = ref({})
- // 删除部件信息
- const deleteSpareParts = async (params: any) => {
- await useHandleData(delSparePartsApi, params.id, '删除【' + params.id + '】部件')
- proTable.value?.getTableList()
- }
- // 批量删除部件信息
- const batchDelete = async (ids: string[]) => {
- await useHandleData(delSparePartsApi, ids, '删除所选部件信息')
- proTable.value?.clearSelection()
- proTable.value?.getTableList()
- }
- const taskDialogRef = ref<InstanceType<typeof TaskDialog> | null>(null)
- // 导出部件列表
- const downloadFile = async () => {
- ElMessageBox.confirm('确认导出部件数据?', '温馨提示', { type: 'warning' }).then(async () => {
- exportSparePartsApi(proTable.value?.searchParam)
- taskDialogRef.value?.openExportDialog()
- })
- }
- // 批量添加部件
- const dialogRef = ref<InstanceType<typeof ImportExcel> | null>(null)
- const batchAdd = () => {
- const params = {
- title: '部件',
- tempApi: importTemplateApi,
- importApi: importSparePartsDataApi,
- getTableList: proTable.value?.getTableList
- }
- dialogRef.value?.acceptParams(params)
- }
- const formDialogRef = ref<InstanceType<typeof FormDialog> | null>(null)
- // 打开弹框的功能
- const openDialog = async (type: number, title: string, row?: any) => {
- let res = { data: {} }
- if (row?.id) {
- res = await getSparePartsApi(row?.id || null)
- }
- model.value = type == 1 ? {} : res.data
- // 重置表单
- setItemsOptions()
- const params = {
- title,
- width: 580,
- isEdit: type !== 3,
- api: type == 1 ? addSparePartsApi : updateSparePartsApi,
- getTableList: proTable.value?.getTableList
- }
- formDialogRef.value?.openDialog(params)
- }
- // 表格配置项
- const columns = reactive<ColumnProps<any>[]>([
- { type: 'selection', fixed: 'left', width: 70 },
- { prop: 'id', label: '编号' },
- {
- prop: 'name',
- label: '部件名称',
- search: {
- el: 'input'
- },
- width: 120
- },
- {
- prop: 'model',
- label: '型号',
- search: {
- el: 'input'
- },
- width: 120
- },
- {
- prop: 'systemName',
- label: '所属系统',
- search: {
- el: 'input'
- },
- width: 120
- },
- {
- prop: 'factory',
- label: '制造厂',
- search: {
- el: 'input'
- },
- width: 120
- },
- {
- prop: 'quantity',
- label: '数量',
- search: {
- el: 'input'
- },
- width: 120
- },
- {
- prop: 'createBy',
- label: '创建人',
- width: 120
- },
- {
- prop: 'createTime',
- label: '创建时间',
- width: 120
- },
- {
- prop: 'updateBy',
- label: '更新人',
- width: 120
- },
- {
- prop: 'updateTime',
- label: '更新时间',
- width: 120
- },
- { prop: 'operation', label: '操作', width: 230, fixed: 'right' }
- ])
- // 表单配置项
- let itemsOptions = reactive<ProForm.ItemsOptions[]>([])
- const setItemsOptions = () => {
- itemsOptions = [
- {
- label: '部件名称',
- prop: 'name',
- rules: [{ required: true, message: '部件名称不能为空', trigger: 'blur' }],
- compOptions: {
- placeholder: '请输入部件名称'
- }
- },
- {
- label: '型号',
- prop: 'model',
- rules: [{ required: true, message: '型号不能为空', trigger: 'blur' }],
- compOptions: {
- placeholder: '请输入型号'
- }
- },
- {
- label: '所属系统',
- prop: 'systemName',
- rules: [{ required: true, message: '所属系统不能为空', trigger: 'blur' }],
- compOptions: {
- placeholder: '请输入所属系统'
- }
- },
- {
- label: '制造厂',
- prop: 'factory',
- rules: [{ required: true, message: '制造厂不能为空', trigger: 'blur' }],
- compOptions: {
- placeholder: '请输入制造厂'
- }
- },
- {
- label: '数量',
- prop: 'quantity',
- rules: [{ required: true, message: '数量不能为空', trigger: 'blur' }],
- compOptions: {
- placeholder: '请输入数量'
- }
- }
- ]
- }
- </script>
|