houzhongjian
2024-08-08 820397e43a0b64d35c6d31d2a55475061438593b
提交 | 用户 | 时间
820397 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 label="性别" prop="sex">
21         <el-select v-model="queryParams.sex" placeholder="请选择性别" clearable class="!w-240px">
22           <el-option
23             v-for="dict in getIntDictOptions(DICT_TYPE.SYSTEM_USER_SEX)"
24             :key="dict.value"
25             :label="dict.label"
26             :value="dict.value"
27           />
28         </el-select>
29       </el-form-item>
30       <el-form-item label="创建时间" prop="createTime">
31         <el-date-picker
32           v-model="queryParams.createTime"
33           value-format="YYYY-MM-DD HH:mm:ss"
34           type="daterange"
35           start-placeholder="开始日期"
36           end-placeholder="结束日期"
37           :default-time="[new Date('1 00:00:00'), new Date('1 23:59:59')]"
38           class="!w-240px"
39         />
40       </el-form-item>
41       <el-form-item>
42         <el-button @click="handleQuery"><Icon icon="ep:search" class="mr-5px" /> 搜索</el-button>
43         <el-button @click="resetQuery"><Icon icon="ep:refresh" class="mr-5px" /> 重置</el-button>
44         <el-button
45           type="primary"
46           plain
47           @click="openForm('create')"
48           v-hasPermi="['infra:demo03-student:create']"
49         >
50           <Icon icon="ep:plus" class="mr-5px" /> 新增
51         </el-button>
52         <el-button
53           type="success"
54           plain
55           @click="handleExport"
56           :loading="exportLoading"
57           v-hasPermi="['infra:demo03-student:export']"
58         >
59           <Icon icon="ep:download" class="mr-5px" /> 导出
60         </el-button>
61       </el-form-item>
62     </el-form>
63   </ContentWrap>
64
65   <!-- 列表 -->
66   <ContentWrap>
67     <el-table v-loading="loading" :data="list" :stripe="true" :show-overflow-tooltip="true">
68       <el-table-column label="编号" align="center" prop="id" />
69       <el-table-column label="名字" align="center" prop="name" />
70       <el-table-column label="性别" align="center" prop="sex">
71         <template #default="scope">
72           <dict-tag :type="DICT_TYPE.SYSTEM_USER_SEX" :value="scope.row.sex" />
73         </template>
74       </el-table-column>
75       <el-table-column
76         label="出生日期"
77         align="center"
78         prop="birthday"
79         :formatter="dateFormatter"
80         width="180px"
81       />
82       <el-table-column label="简介" align="center" prop="description" />
83       <el-table-column
84         label="创建时间"
85         align="center"
86         prop="createTime"
87         :formatter="dateFormatter"
88         width="180px"
89       />
90       <el-table-column label="操作" align="center">
91         <template #default="scope">
92           <el-button
93             link
94             type="primary"
95             @click="openForm('update', scope.row.id)"
96             v-hasPermi="['infra:demo03-student:update']"
97           >
98             编辑
99           </el-button>
100           <el-button
101             link
102             type="danger"
103             @click="handleDelete(scope.row.id)"
104             v-hasPermi="['infra:demo03-student:delete']"
105           >
106             删除
107           </el-button>
108         </template>
109       </el-table-column>
110     </el-table>
111     <!-- 分页 -->
112     <Pagination
113       :total="total"
114       v-model:page="queryParams.pageNo"
115       v-model:limit="queryParams.pageSize"
116       @pagination="getList"
117     />
118   </ContentWrap>
119
120   <!-- 表单弹窗:添加/修改 -->
121   <Demo03StudentForm ref="formRef" @success="getList" />
122 </template>
123
124 <script setup lang="ts">
125 import { getIntDictOptions, DICT_TYPE } from '@/utils/dict'
126 import { dateFormatter } from '@/utils/formatTime'
127 import download from '@/utils/download'
128 import * as Demo03StudentApi from '@/api/infra/demo/demo03/normal'
129 import Demo03StudentForm from './Demo03StudentForm.vue'
130
131 defineOptions({ name: 'Demo03Student' })
132
133 const message = useMessage() // 消息弹窗
134 const { t } = useI18n() // 国际化
135
136 const loading = ref(true) // 列表的加载中
137 const list = ref([]) // 列表的数据
138 const total = ref(0) // 列表的总页数
139 const queryParams = reactive({
140   pageNo: 1,
141   pageSize: 10,
142   name: null,
143   sex: null,
144   description: null,
145   createTime: []
146 })
147 const queryFormRef = ref() // 搜索的表单
148 const exportLoading = ref(false) // 导出的加载中
149
150 /** 查询列表 */
151 const getList = async () => {
152   loading.value = true
153   try {
154     const data = await Demo03StudentApi.getDemo03StudentPage(queryParams)
155     list.value = data.list
156     total.value = data.total
157   } finally {
158     loading.value = false
159   }
160 }
161
162 /** 搜索按钮操作 */
163 const handleQuery = () => {
164   queryParams.pageNo = 1
165   getList()
166 }
167
168 /** 重置按钮操作 */
169 const resetQuery = () => {
170   queryFormRef.value.resetFields()
171   handleQuery()
172 }
173
174 /** 添加/修改操作 */
175 const formRef = ref()
176 const openForm = (type: string, id?: number) => {
177   formRef.value.open(type, id)
178 }
179
180 /** 删除按钮操作 */
181 const handleDelete = async (id: number) => {
182   try {
183     // 删除的二次确认
184     await message.delConfirm()
185     // 发起删除
186     await Demo03StudentApi.deleteDemo03Student(id)
187     message.success(t('common.delSuccess'))
188     // 刷新列表
189     await getList()
190   } catch {}
191 }
192
193 /** 导出按钮操作 */
194 const handleExport = async () => {
195   try {
196     // 导出的二次确认
197     await message.exportConfirm()
198     // 发起导出
199     exportLoading.value = true
200     const data = await Demo03StudentApi.exportDemo03Student(queryParams)
201     download.excel(data, '学生.xls')
202   } catch {
203   } finally {
204     exportLoading.value = false
205   }
206 }
207
208 /** 初始化 **/
209 onMounted(() => {
210   getList()
211 })
212 </script>