鞍钢鲅鱼圈能源管控系统前端代码
houzhongjian
2024-12-26 cb6cd26221d8bb2c4b1dca44a87332e9fe6f56ab
提交 | 用户 | 时间
cb6cd2 1 <template>
H 2   <!-- 搜索 -->
3   <ContentWrap>
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="appCode">
12         <el-input
13           v-model="queryParams.appCode"
14           placeholder="请输入应用编号"
15           clearable
16           @keyup.enter="handleQuery"
17           class="!w-240px"
18         />
19       </el-form-item>
20       <el-form-item label="应用名称" prop="appName">
21         <el-input
22           v-model="queryParams.appName"
23           placeholder="请输入应用名称"
24           clearable
25           @keyup.enter="handleQuery"
26           class="!w-240px"
27         />
28       </el-form-item>
29       <el-form-item label="应用状态" prop="status">
30         <el-select
31           v-model="queryParams.status"
32           placeholder="请选择应用状态"
33           clearable
34           class="!w-240px"
35         >
36           <el-option
37             v-for="dict in getIntDictOptions(DICT_TYPE.COMMON_STATUS)"
38             :key="dict.value"
39             :label="dict.label"
40             :value="dict.value"
41           />
42         </el-select>
43       </el-form-item>
44       <el-form-item>
45         <el-button @click="handleQuery">
46           <Icon icon="ep:search" class="mr-5px" />
47           搜索
48         </el-button>
49         <el-button @click="resetQuery">
50           <Icon icon="ep:refresh" class="mr-5px" />
51           重置
52         </el-button>
53         <el-button
54           type="primary"
55           plain
56           @click="openForm('create')"
57           v-hasPermi="['system:tenant:create']"
58         >
59           <Icon icon="ep:plus" class="mr-5px" />
60           新增
61         </el-button>
62         <el-button
63           type="success"
64           plain
65           @click="handleExport"
66           :loading="exportLoading"
67           v-hasPermi="['system:tenant:export']"
68         >
69           <Icon icon="ep:download" class="mr-5px" />
70           导出
71         </el-button>
72       </el-form-item>
73     </el-form>
74   </ContentWrap>
75
76   <!-- 列表 -->
77   <ContentWrap>
78     <el-table v-loading="loading" :data="list">
79       <el-table-column label="应用编号" align="center" prop="appCode" />
80       <el-table-column label="应用名称" align="center" prop="appName" />
81       <el-table-column label="应用域名" align="center" prop="appDomain" />
82       <el-table-column label="接口域名" align="center" prop="apiDomain" />
83       <el-table-column label="应用账号" align="center" prop="appKey" />
84       <el-table-column label="应用分组" align="center" prop="appGroup" />
85       <el-table-column label="加载类型" align="center" prop="loadType" />
86       <el-table-column label="应用图标" align="center" prop="icon" />
87       <el-table-column label="开发者" align="center" prop="devName" />
88       <el-table-column label="备注" align="center" prop="remark" width="200" />
89       <el-table-column
90         label="创建时间"
91         align="center"
92         prop="createTime"
93         width="180"
94         :formatter="dateFormatter"
95       />
96       <el-table-column label="操作" align="center" min-width="110" fixed="right">
97         <template #default="scope">
98           <el-button
99             link
100             type="primary"
101             @click="openForm('update', scope.row.id)"
102             v-hasPermi="['system:tenant:update']"
103           >
104             编辑
105           </el-button>
106           <el-button
107             link
108             type="danger"
109             @click="handleDelete(scope.row.id)"
110             v-hasPermi="['system:tenant:delete']"
111           >
112             删除
113           </el-button>
114         </template>
115       </el-table-column>
116     </el-table>
117     <!-- 分页 -->
118     <Pagination
119       :total="total"
120       v-model:page="queryParams.pageNo"
121       v-model:limit="queryParams.pageSize"
122       @pagination="getList"
123     />
124   </ContentWrap>
125
126   <!-- 表单弹窗:添加/修改 -->
127   <AppForm ref="formRef" @success="getList" />
128
129 </template>
130 <script lang="ts" setup>
131   import {DICT_TYPE, getIntDictOptions} from '@/utils/dict'
132   import {dateFormatter} from '@/utils/formatTime'
133   import download from '@/utils/download'
134   import * as AppApi from '@/api/system/app'
135   import AppForm from './AppForm.vue'
136
137   defineOptions({name: 'SystemApp'})
138
139   const message = useMessage() // 消息弹窗
140   const {t} = useI18n() // 国际化
141
142   const loading = ref(true) // 列表的加载中
143   const total = ref(0) // 列表的总页数
144   const list = ref([]) // 列表的数据
145   const queryParams = reactive({
146     pageNo: 1,
147     pageSize: 10,
148     appCode: undefined,
149     appName: undefined,
150     status: undefined,
151     createTime: []
152   })
153   const queryFormRef = ref() // 搜索的表单
154   const exportLoading = ref(false) // 导出的加载中
155
156   /** 查询列表 */
157   const getList = async () => {
158     loading.value = true
159     try {
160       const data = await AppApi.getAppPage(queryParams)
161       list.value = data.list
162       total.value = data.total
163     } finally {
164       loading.value = false
165     }
166   }
167
168   /** 搜索按钮操作 */
169   const handleQuery = () => {
170     queryParams.pageNo = 1
171     getList()
172   }
173
174   /** 重置按钮操作 */
175   const resetQuery = () => {
176     queryFormRef.value.resetFields()
177     handleQuery()
178   }
179
180   /** 添加/修改操作 */
181   const formRef = ref()
182   const openForm = (type: string, id?: number) => {
183     formRef.value.open(type, id)
184   }
185
186   /** 删除按钮操作 */
187   const handleDelete = async (id: number) => {
188     try {
189       // 删除的二次确认
190       await message.delConfirm()
191       // 发起删除
192       await AppApi.deleteApp(id)
193       message.success(t('common.delSuccess'))
194       // 刷新列表
195       await getList()
196     } catch {
197     }
198   }
199
200   /** 导出按钮操作 */
201   const handleExport = async () => {
202     try {
203       // 导出的二次确认
204       await message.exportConfirm()
205       // 发起导出
206       exportLoading.value = true
207       const data = await AppApi.exportApp(queryParams)
208       download.excel(data, '租户列表.xls')
209     } catch {
210     } finally {
211       exportLoading.value = false
212     }
213   }
214
215   /** 初始化 **/
216   onMounted(async () => {
217     await getList()
218   })
219 </script>