¶Ô±ÈÐÂÎļþ |
| | |
| | | <template> |
| | | <div class="p-2"> |
| | | <transition :enter-active-class="proxy?.animate.searchAnimate.enter" :leave-active-class="proxy?.animate.searchAnimate.leave"> |
| | | <div v-show="showSearch" class="search"> |
| | | <el-form ref="queryFormRef" :model="queryParams" :inline="true"> |
| | | <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="categoryCode"> |
| | | <el-input v-model="queryParams.categoryCode" 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> |
| | | </div> |
| | | </transition> |
| | | |
| | | <el-card shadow="never"> |
| | | <template #header> |
| | | <el-row :gutter="10" class="mb8"> |
| | | <el-col :span="1.5"> |
| | | <el-button v-hasPermi="['workflow:category:add']" type="primary" plain icon="Plus" @click="handleAdd()">æ°å¢</el-button> |
| | | </el-col> |
| | | <el-col :span="1.5"> |
| | | <el-button type="info" plain icon="Sort" @click="handleToggleExpandAll">å±å¼/æå </el-button> |
| | | </el-col> |
| | | <right-toolbar v-model:showSearch="showSearch" @query-table="getList"></right-toolbar> |
| | | </el-row> |
| | | </template> |
| | | <el-table |
| | | ref="categoryTableRef" |
| | | v-loading="loading" |
| | | :data="categoryList" |
| | | row-key="id" |
| | | :default-expand-all="isExpandAll" |
| | | :tree-props="{ children: 'children', hasChildren: 'hasChildren' }" |
| | | > |
| | | <el-table-column label="åç±»åç§°" prop="categoryName" /> |
| | | <el-table-column label="åç±»ç¼ç " align="center" prop="categoryCode" /> |
| | | <el-table-column label="æåº" align="center" prop="sortNum" /> |
| | | <el-table-column label="æä½" align="center" class-name="small-padding fixed-width"> |
| | | <template #default="scope"> |
| | | <el-tooltip content="ä¿®æ¹" placement="top"> |
| | | <el-button v-hasPermi="['workflow:category:edit']" link type="primary" icon="Edit" @click="handleUpdate(scope.row)" /> |
| | | </el-tooltip> |
| | | <el-tooltip content="æ°å¢" placement="top"> |
| | | <el-button v-hasPermi="['workflow:category:add']" link type="primary" icon="Plus" @click="handleAdd(scope.row)" /> |
| | | </el-tooltip> |
| | | <el-tooltip content="å é¤" placement="top"> |
| | | <el-button v-hasPermi="['workflow:category:remove']" link type="primary" icon="Delete" @click="handleDelete(scope.row)" /> |
| | | </el-tooltip> |
| | | </template> |
| | | </el-table-column> |
| | | </el-table> |
| | | </el-card> |
| | | <!-- æ·»å æä¿®æ¹æµç¨åç±»å¯¹è¯æ¡ --> |
| | | <el-dialog v-model="dialog.visible" :title="dialog.title" width="500px" append-to-body> |
| | | <el-form ref="categoryFormRef" v-loading="loading" :model="form" :rules="rules" label-width="80px"> |
| | | <el-form-item label="ç¶çº§åç±»" prop="parentId"> |
| | | <el-tree-select |
| | | v-model="form.parentId" |
| | | :data="categoryOptions" |
| | | :props="{ value: 'id', label: 'categoryName', children: 'children' }" |
| | | value-key="id" |
| | | placeholder="è¯·éæ©ç¶çº§id" |
| | | check-strictly |
| | | /> |
| | | </el-form-item> |
| | | <el-form-item label="åç±»åç§°" prop="categoryName"> |
| | | <el-input v-model="form.categoryName" 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="sortNum"> |
| | | <el-input-number v-model="form.sortNum" placeholder="请è¾å
¥æåº" controls-position="right" :min="0" /> |
| | | </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> |
| | | </div> |
| | | </template> |
| | | |
| | | <script setup name="Category" lang="ts"> |
| | | import { listCategory, getCategory, delCategory, addCategory, updateCategory } from '@/api/workflow/category'; |
| | | import { CategoryVO, CategoryQuery, CategoryForm } from '@/api/workflow/category/types'; |
| | | |
| | | type CategoryOption = { |
| | | id: number; |
| | | categoryName: string; |
| | | children?: CategoryOption[]; |
| | | }; |
| | | |
| | | const { proxy } = getCurrentInstance() as ComponentInternalInstance; |
| | | |
| | | const categoryList = ref<CategoryVO[]>([]); |
| | | const categoryOptions = ref<CategoryOption[]>([]); |
| | | const buttonLoading = ref(false); |
| | | const showSearch = ref(true); |
| | | const isExpandAll = ref(true); |
| | | const loading = ref(false); |
| | | |
| | | const queryFormRef = ref<ElFormInstance>(); |
| | | const categoryFormRef = ref<ElFormInstance>(); |
| | | const categoryTableRef = ref<ElTableInstance>(); |
| | | |
| | | const dialog = reactive<DialogOption>({ |
| | | visible: false, |
| | | title: '' |
| | | }); |
| | | |
| | | const initFormData: CategoryForm = { |
| | | id: undefined, |
| | | categoryName: undefined, |
| | | categoryCode: undefined, |
| | | parentId: undefined, |
| | | sortNum: 0 |
| | | }; |
| | | |
| | | const data = reactive<PageData<CategoryForm, CategoryQuery>>({ |
| | | form: { ...initFormData }, |
| | | queryParams: { |
| | | pageNum: 1, |
| | | pageSize: 10, |
| | | categoryName: undefined, |
| | | categoryCode: undefined |
| | | }, |
| | | rules: { |
| | | id: [{ required: true, message: '主é®ä¸è½ä¸ºç©º', trigger: 'blur' }], |
| | | categoryName: [{ required: true, message: 'åç±»åç§°ä¸è½ä¸ºç©º', trigger: 'blur' }], |
| | | categoryCode: [{ required: true, message: 'åç±»ç¼ç ä¸è½ä¸ºç©º', trigger: 'blur' }], |
| | | parentId: [{ required: true, message: 'ç¶çº§idä¸è½ä¸ºç©º', trigger: 'blur' }] |
| | | } |
| | | }); |
| | | |
| | | const { queryParams, form, rules } = toRefs(data); |
| | | |
| | | /** æ¥è¯¢æµç¨åç±»å表 */ |
| | | const getList = async () => { |
| | | loading.value = true; |
| | | const res = await listCategory(queryParams.value); |
| | | const data = proxy?.handleTree<CategoryVO>(res.data, 'id', 'parentId'); |
| | | if (data) { |
| | | categoryList.value = data; |
| | | loading.value = false; |
| | | } |
| | | }; |
| | | |
| | | /** æ¥è¯¢æµç¨åç±»ä¸ææ ç»æ */ |
| | | const getTreeselect = async () => { |
| | | const res = await listCategory(); |
| | | categoryOptions.value = []; |
| | | const data: CategoryOption = { id: 0, categoryName: '顶级èç¹', children: [] }; |
| | | data.children = proxy?.handleTree<CategoryOption>(res.data, 'id', 'parentId'); |
| | | categoryOptions.value.push(data); |
| | | }; |
| | | |
| | | // åæ¶æé® |
| | | const cancel = () => { |
| | | reset(); |
| | | dialog.visible = false; |
| | | }; |
| | | |
| | | // 表åéç½® |
| | | const reset = () => { |
| | | form.value = { ...initFormData }; |
| | | categoryFormRef.value?.resetFields(); |
| | | }; |
| | | |
| | | /** æç´¢æé®æä½ */ |
| | | const handleQuery = () => { |
| | | getList(); |
| | | }; |
| | | |
| | | /** éç½®æé®æä½ */ |
| | | const resetQuery = () => { |
| | | queryFormRef.value?.resetFields(); |
| | | handleQuery(); |
| | | }; |
| | | |
| | | /** æ°å¢æé®æä½ */ |
| | | const handleAdd = (row?: CategoryVO) => { |
| | | dialog.visible = true; |
| | | dialog.title = 'æ·»å æµç¨åç±»'; |
| | | nextTick(() => { |
| | | reset(); |
| | | getTreeselect(); |
| | | if (row != null && row.id) { |
| | | form.value.parentId = row.id; |
| | | } else { |
| | | form.value.parentId = 0; |
| | | } |
| | | }); |
| | | }; |
| | | |
| | | /** å±å¼/æå æä½ */ |
| | | const handleToggleExpandAll = () => { |
| | | isExpandAll.value = !isExpandAll.value; |
| | | toggleExpandAll(categoryList.value, isExpandAll.value); |
| | | }; |
| | | |
| | | /** å±å¼/æå æä½ */ |
| | | const toggleExpandAll = (data: CategoryVO[], status: boolean) => { |
| | | data.forEach((item) => { |
| | | categoryTableRef.value?.toggleRowExpansion(item, status); |
| | | if (item.children && item.children.length > 0) toggleExpandAll(item.children, status); |
| | | }); |
| | | }; |
| | | |
| | | /** ä¿®æ¹æé®æä½ */ |
| | | const handleUpdate = (row: CategoryVO) => { |
| | | loading.value = true; |
| | | dialog.visible = true; |
| | | dialog.title = 'ä¿®æ¹æµç¨åç±»'; |
| | | nextTick(async () => { |
| | | reset(); |
| | | await getTreeselect(); |
| | | if (row != null) { |
| | | form.value.parentId = row.id; |
| | | } |
| | | const res = await getCategory(row.id); |
| | | loading.value = false; |
| | | Object.assign(form.value, res.data); |
| | | }); |
| | | }; |
| | | |
| | | /** æäº¤æé® */ |
| | | const submitForm = () => { |
| | | categoryFormRef.value.validate(async (valid: boolean) => { |
| | | if (valid) { |
| | | buttonLoading.value = true; |
| | | if (form.value.id) { |
| | | await updateCategory(form.value).finally(() => (buttonLoading.value = false)); |
| | | } else { |
| | | await addCategory(form.value).finally(() => (buttonLoading.value = false)); |
| | | } |
| | | proxy?.$modal.msgSuccess('æä½æå'); |
| | | dialog.visible = false; |
| | | await getList(); |
| | | } |
| | | }); |
| | | }; |
| | | |
| | | /** å é¤æé®æä½ */ |
| | | const handleDelete = async (row: CategoryVO) => { |
| | | await proxy?.$modal.confirm('æ¯å¦ç¡®è®¤å 餿µç¨åç±»ç¼å·ä¸º"' + row.id + '"çæ°æ®é¡¹ï¼'); |
| | | loading.value = true; |
| | | await delCategory(row.id).finally(() => (loading.value = false)); |
| | | await getList(); |
| | | proxy?.$modal.msgSuccess('å 餿å'); |
| | | }; |
| | | |
| | | onMounted(() => { |
| | | getList(); |
| | | }); |
| | | </script> |