潘志宝
2024-09-09 ed81b7371e376df35448b81531d30dd9024bd44a
提交 | 用户 | 时间
e7c126 1 <template>
H 2   <ContentWrap>
3     <!-- 搜索工作栏 -->
4     <el-form
5       class="-mb-15px"
6       :model="queryParams"
7       ref="queryFormRef"
8       :inline="true"
9       label-width="68px"
10     >
11       <el-form-item label="名字" prop="name">
12         <el-input
13           v-model="queryParams.name"
14           placeholder="请输入名字"
15           clearable
16           @keyup.enter="handleQuery"
17           class="!w-240px"
18         />
19       </el-form-item>
20       <el-form-item>
21         <el-button @click="handleQuery"><Icon icon="ep:search" class="mr-5px" /> 搜索</el-button>
22         <el-button @click="resetQuery"><Icon icon="ep:refresh" class="mr-5px" /> 重置</el-button>
23         <el-button
24           type="primary"
25           plain
26           @click="openForm('create')"
27           v-hasPermi="['infra:category:create']"
28         >
29           <Icon icon="ep:plus" class="mr-5px" /> 新增
30         </el-button>
31         <el-button
32           type="success"
33           plain
34           @click="handleExport"
35           :loading="exportLoading"
36           v-hasPermi="['infra:category:export']"
37         >
38           <Icon icon="ep:download" class="mr-5px" /> 导出
39         </el-button>
40         <el-button type="danger" plain @click="toggleExpandAll">
41           <Icon icon="ep:sort" class="mr-5px" /> 展开/折叠
42         </el-button>
43       </el-form-item>
44     </el-form>
45   </ContentWrap>
46
47   <!-- 列表 -->
48   <ContentWrap>
49     <el-table
50       v-loading="loading"
51       :data="list"
52       :stripe="true"
53       :show-overflow-tooltip="true"
54       row-key="id"
55       :default-expand-all="isExpandAll"
56       v-if="refreshTable"
57     >
58       <el-table-column label="编号" align="center" prop="id" />
59       <el-table-column label="名字" align="center" prop="name" />
60       <el-table-column label="父编号" align="center" prop="parentId" />
61       <el-table-column label="操作" align="center">
62         <template #default="scope">
63           <el-button
64             link
65             type="primary"
66             @click="openForm('update', scope.row.id)"
67             v-hasPermi="['infra:category:update']"
68           >
69             编辑
70           </el-button>
71           <el-button
72             link
73             type="danger"
74             @click="handleDelete(scope.row.id)"
75             v-hasPermi="['infra:category:delete']"
76           >
77             删除
78           </el-button>
79         </template>
80       </el-table-column>
81     </el-table>
82     <!-- 分页 -->
83     <Pagination
84       :total="total"
85       v-model:page="queryParams.pageNo"
86       v-model:limit="queryParams.pageSize"
87       @pagination="getList"
88     />
89   </ContentWrap>
90
91   <!-- 表单弹窗:添加/修改 -->
92   <CategoryForm ref="formRef" @success="getList" />
93 </template>
94
95 <script setup lang="ts">
96 import { handleTree } from '@/utils/tree'
97 import download from '@/utils/download'
98 import * as CategoryApi from '@/api/infra/demo'
99 import CategoryForm from './CategoryForm.vue'
100
101 defineOptions({ name: 'InfraCategory' })
102
103 const message = useMessage() // 消息弹窗
104 const { t } = useI18n() // 国际化
105
106 const loading = ref(true) // 列表的加载中
107 const list = ref([]) // 列表的数据
108 const queryParams = reactive({
109   name: undefined,
110 })
111 const queryFormRef = ref() // 搜索的表单
112 const exportLoading = ref(false) // 导出的加载中
113
114 /** 查询列表 */
115 const getList = async () => {
116   loading.value = true
117   try {
118     const data = await CategoryApi.getCategoryList(queryParams)
119     list.value = handleTree(data, 'id', 'parentId')
120   } finally {
121     loading.value = false
122   }
123 }
124
125 /** 搜索按钮操作 */
126 const handleQuery = () => {
127   queryParams.pageNo = 1
128   getList()
129 }
130
131 /** 重置按钮操作 */
132 const resetQuery = () => {
133   queryFormRef.value.resetFields()
134   handleQuery()
135 }
136
137 /** 添加/修改操作 */
138 const formRef = ref()
139 const openForm = (type: string, id?: number) => {
140   formRef.value.open(type, id)
141 }
142
143 /** 删除按钮操作 */
144 const handleDelete = async (id: number) => {
145   try {
146     // 删除的二次确认
147     await message.delConfirm()
148     // 发起删除
149     await CategoryApi.deleteCategory(id)
150     message.success(t('common.delSuccess'))
151     // 刷新列表
152     await getList()
153   } catch {}
154 }
155
156 /** 导出按钮操作 */
157 const handleExport = async () => {
158   try {
159     // 导出的二次确认
160     await message.exportConfirm()
161     // 发起导出
162     exportLoading.value = true
163     const data = await CategoryApi.exportCategory(queryParams)
164     download.excel(data, '分类.xls')
165   } catch {
166   } finally {
167     exportLoading.value = false
168   }
169 }
170
171 /** 展开/折叠操作 */
172 const isExpandAll = ref(true) // 是否展开,默认全部展开
173 const refreshTable = ref(true) // 重新渲染表格状态
174 const toggleExpandAll = async () => {
175   refreshTable.value = false
176   isExpandAll.value = !isExpandAll.value
177   await nextTick()
178   refreshTable.value = true
179 }
180
181 /** 初始化 **/
182 onMounted(() => {
183   getList()
184 })
185 </script>