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.

324 lines
13 KiB
Vue

<template>
<div class="p-2">
<el-row :gutter="20">
<!--部门树-->
<el-col :lg="4" :xs="24" style="">
<el-card shadow="hover">
<el-input v-model="inspectionTypeName" placeholder="请输入检测类型名称" clearable prefix-icon="Search" />
<el-tree
ref="inspectionTypeTreeRef"
class="mt-2"
:data="qcInspectionTypeList"
:props="{ label: 'typeName', children: 'children' }"
:expand-on-click-node="false"
:filter-node-method="filterNode"
highlight-current
default-expand-all
@node-click="handleNodeClick"
/>
</el-card>
</el-col>
<el-col :lg="20" :xs="24">
<transition :enter-active-class="proxy?.animate.searchAnimate.enter" :leave-active-class="proxy?.animate.searchAnimate.leave">
<div v-show="showSearch" class="mb-[10px]">
<el-card shadow="hover">
<el-form ref="queryFormRef" :model="queryParams" :inline="true" label-width='120px'>
<!-- <el-form-item label="检测项类别主键" prop="categoryId">
<el-input v-model="queryParams.categoryId" placeholder="请输入检测项类别主键" clearable @keyup.enter="handleQuery" />
</el-form-item> -->
<el-form-item label="检测项类别编码" prop="categoryCode">
<el-input v-model="queryParams.categoryCode" placeholder="请输入检测项类别编码" clearable @keyup.enter="handleQuery" />
</el-form-item>
<el-form-item label="检测项类别名称" prop="categoryName">
<el-input v-model="queryParams.categoryName" placeholder="请输入检测项类别名称" clearable @keyup.enter="handleQuery" />
</el-form-item>
<!-- <el-form-item label="检测单类型" prop="typeId">
<el-input v-model="queryParams.typeId" placeholder="请输入检测单类型" clearable @keyup.enter="handleQuery" />
</el-form-item> -->
<!-- <el-form-item label="描述" prop="description">
<el-input v-model="queryParams.description" placeholder="请输入描述" clearable @keyup.enter="handleQuery" />
</el-form-item> -->
<el-form-item>
<el-button type="primary" icon="Search" @click="handleQuery"></el-button>
<el-button icon="Refresh" @click="resetQuery"></el-button>
</el-form-item>
</el-form>
</el-card>
</div>
</transition>
<el-card shadow="never">
<template #header>
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button type="primary" plain icon="Plus" @click="handleAdd" v-hasPermi="['qms:qcInspectionItemCategory:add']"></el-button>
</el-col>
<el-col :span="1.5">
<el-button type="success" plain icon="Edit" :disabled="single" @click="handleUpdate()" v-hasPermi="['qms:qcInspectionItemCategory:edit']"></el-button>
</el-col>
<el-col :span="1.5">
<el-button type="danger" plain icon="Delete" :disabled="multiple" @click="handleDelete()" v-hasPermi="['qms:qcInspectionItemCategory:remove']"></el-button>
</el-col>
<el-col :span="1.5">
<el-button type="warning" plain icon="Download" @click="handleExport" v-hasPermi="['qms:qcInspectionItemCategory:export']"></el-button>
</el-col>
<right-toolbar v-model:showSearch="showSearch" :columns="columns" :search="true" @queryTable="getList"></right-toolbar>
</el-row>
</template>
<el-table v-loading="loading" :data="qcInspectionItemCategoryList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" />
<!-- 页面自动序号 -->
<el-table-column label="序号" align="center" prop="categoryId" v-if="columns[0].visible">
<template #default="scope">
{{ scope.$index + 1 }}
</template>
</el-table-column>
<!-- <el-table-column label="检测项类别主键" align="center" prop="categoryId" v-if="columns[1].visible"/> -->
<el-table-column label="检测项类别编码" align="center" prop="categoryCode" v-if="columns[1].visible"/>
<el-table-column label="检测项类别名称" align="center" prop="categoryName" v-if="columns[2].visible"/>
<el-table-column label="检测单类型" align="center" prop="typeId" v-if="columns[3].visible"/>
<el-table-column label="描述" align="center" prop="description" v-if="columns[4].visible"/>
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
<template #default="scope">
<el-tooltip content="修改" placement="top">
<el-button link type="primary" icon="Edit" @click="handleUpdate(scope.row)" v-hasPermi="['qms:qcInspectionItemCategory:edit']"></el-button>
</el-tooltip>
<el-tooltip content="删除" placement="top">
<el-button link type="primary" icon="Delete" @click="handleDelete(scope.row)" v-hasPermi="['qms:qcInspectionItemCategory:remove']"></el-button>
</el-tooltip>
</template>
</el-table-column>
</el-table>
<pagination v-show="total > 0" :total="total" v-model:page="queryParams.pageNum" v-model:limit="queryParams.pageSize" @pagination="getList" />
</el-card>
<!-- 添加或修改检测项类别对话框 -->
<el-dialog :title="dialog.title" v-model="dialog.visible" width="500px" append-to-body>
<el-form ref="qcInspectionItemCategoryFormRef" :model="form" :rules="rules" label-width="120px">
<!-- <el-form-item label="检测项类别主键" prop="categoryId">
<el-input v-model="form.categoryId" placeholder="请输入检测项类别主键" />
</el-form-item> -->
<el-form-item label="检测项类别编码" prop="categoryCode">
<el-input v-model="form.categoryCode" placeholder="请输入检测项类别编码" />
</el-form-item>
<el-form-item label="检测项类别名称" prop="categoryName">
<el-input v-model="form.categoryName" placeholder="请输入检测项类别名称" />
</el-form-item>
<el-form-item label="检测单类型" prop="typeId">
<!-- <el-input v-model="form.typeId" placeholder="请输入检测单类型" /> -->
<el-select v-model="form.typeId" placeholder="请选择检测单类型">
<el-option v-for="item in qcInspectionTypeList" :key="item.typeId" :label="item.typeName" :value="item.typeId" />
</el-select>
</el-form-item>
<el-form-item label="描述" prop="description">
<el-input v-model="form.description" placeholder="请输入描述" />
</el-form-item>
</el-form>
<template #footer>
<div class="dialog-footer">
<el-button :loading="buttonLoading" type="primary" @click="submitForm"> </el-button>
<el-button @click="cancel"> </el-button>
</div>
</template>
</el-dialog>
</el-col>
</el-row>
</div>
</template>
<script setup name="QcInspectionItemCategory" lang="ts">
import { listQcInspectionItemCategory, getQcInspectionItemCategory, delQcInspectionItemCategory, addQcInspectionItemCategory, updateQcInspectionItemCategory } from '@/api/qms/qcInspectionItemCategory';
import { QcInspectionItemCategoryVO, QcInspectionItemCategoryQuery, QcInspectionItemCategoryForm } from '@/api/qms/qcInspectionItemCategory/types';
import {getQcInspectionTypeList} from "@/api/qms/qcInspectionType";
import { QcInspectionTypeVO } from '@/api/qms/qcInspectionType/types';
import type { TreeInstance } from 'element-plus';
import { watch } from "vue";
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
const qcInspectionItemCategoryList = ref<QcInspectionItemCategoryVO[]>([]);
const buttonLoading = ref(false);
const loading = ref(true);
const showSearch = ref(true);
const ids = ref<Array<string | number>>([]);
const single = ref(true);
const multiple = ref(true);
const total = ref(0);
const queryFormRef = ref<ElFormInstance>();
const qcInspectionItemCategoryFormRef = ref<ElFormInstance>();
const inspectionTypeTreeRef = ref<TreeInstance>();
const inspectionTypeName = ref('');
const dialog = reactive<DialogOption>({
visible: false,
title: ''
});
// 列显隐信息
const columns = ref<FieldOption[]>([
{ key: 0, label: `序号`, visible: true },
// { key: 1, label: `检测项类别主键`, visible: false },
{ key: 1, label: `检测项类别编码`, visible: true },
{ key: 2, label: `检测项类别名称`, visible: true },
{ key: 3, label: `检测单类型`, visible: true },
{ key: 4, label: `描述`, visible: true },
// { key: 6, label: `创建人`, visible: true },
// { key: 7, label: `创建部门`, visible: true },
// { key: 8, label: `创建时间`, visible: true },
// { key: 9, label: `修改人`, visible: true },
// { key: 10, label: `修改时间`, visible: true },
]);
const initFormData: QcInspectionItemCategoryForm = {
categoryId: undefined,
categoryCode: undefined,
categoryName: undefined,
typeId: undefined,
description: undefined,
}
const data = reactive<PageData<QcInspectionItemCategoryForm, QcInspectionItemCategoryQuery>>({
form: {...initFormData},
queryParams: {
pageNum: 1,
pageSize: 10,
categoryId: undefined,
categoryCode: undefined,
categoryName: undefined,
typeId: undefined,
description: undefined,
params: {
}
},
rules: {
// categoryId: [
// { required: true, message: "检测项类别主键不能为空", trigger: "blur" }
// ],
}
});
const { queryParams, form, rules } = toRefs(data);
/** 查询检测项类别列表 */
const getList = async () => {
loading.value = true;
const res = await listQcInspectionItemCategory(queryParams.value);
qcInspectionItemCategoryList.value = res.rows;
total.value = res.total;
loading.value = false;
}
/** 取消按钮 */
const cancel = () => {
reset();
dialog.visible = false;
}
/** 表单重置 */
const reset = () => {
form.value = {...initFormData};
qcInspectionItemCategoryFormRef.value?.resetFields();
}
/** 搜索按钮操作 */
const handleQuery = () => {
queryParams.value.pageNum = 1;
getList();
}
/** 重置按钮操作 */
const resetQuery = () => {
queryFormRef.value?.resetFields();
queryParams.value.typeId = undefined;
inspectionTypeTreeRef.value?.setCurrentKey(null);
handleQuery();
}
/** 多选框选中数据 */
const handleSelectionChange = (selection: QcInspectionItemCategoryVO[]) => {
ids.value = selection.map(item => item.categoryId);
single.value = selection.length != 1;
multiple.value = !selection.length;
}
/** 新增按钮操作 */
const handleAdd = () => {
reset();
dialog.visible = true;
dialog.title = "添加检测项类别";
}
/** 修改按钮操作 */
const handleUpdate = async (row?: QcInspectionItemCategoryVO) => {
reset();
const _categoryId = row?.categoryId || ids.value[0]
const res = await getQcInspectionItemCategory(_categoryId);
Object.assign(form.value, res.data);
dialog.visible = true;
dialog.title = "修改检测项类别";
}
/** 提交按钮 */
const submitForm = () => {
qcInspectionItemCategoryFormRef.value?.validate(async (valid: boolean) => {
if (valid) {
buttonLoading.value = true;
if (form.value.categoryId) {
await updateQcInspectionItemCategory(form.value).finally(() => buttonLoading.value = false);
} else {
await addQcInspectionItemCategory(form.value).finally(() => buttonLoading.value = false);
}
proxy?.$modal.msgSuccess("操作成功");
dialog.visible = false;
await getList();
}
});
}
/** 删除按钮操作 */
const handleDelete = async (row?: QcInspectionItemCategoryVO) => {
const _categoryIds = row?.categoryId || ids.value;
await proxy?.$modal.confirm('是否确认删除检测项类别编号为"' + _categoryIds + '"的数据项?').finally(() => loading.value = false);
await delQcInspectionItemCategory(_categoryIds);
proxy?.$modal.msgSuccess("删除成功");
await getList();
}
/** 导出按钮操作 */
const handleExport = () => {
proxy?.download('qms/qcInspectionItemCategory/export', {
...queryParams.value
}, `qcInspectionItemCategory_${new Date().getTime()}.xlsx`)
}
//获取检测类型列表(不分页,获取全部)
let qcInspectionTypeList = ref<QcInspectionTypeVO[]>([]);
const getInspectionTypeList = async () => {
const res = await getQcInspectionTypeList(null);
qcInspectionTypeList.value = proxy?.handleTree(res.data, "typeId", "parentId") || [];
}
/** 节点筛选 */
const filterNode = (value: string, data: QcInspectionTypeVO) => {
if (!value) return true;
return data.typeName.includes(value);
};
/** 节点单击事件 */
const handleNodeClick = (data: QcInspectionTypeVO) => {
queryParams.value.typeId = data.typeId;
handleQuery();
};
watch(inspectionTypeName, val => {
inspectionTypeTreeRef.value?.filter(val);
});
onMounted(() => {
getList();
getInspectionTypeList();
});
</script>