pre
潘志宝
2024-09-25 6e7f226b03fb059971b76d875671e2b662f29f1f
提交 | 用户 | 时间
db5c54 1 <template>
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">
b1e092 79       <el-table-column label="应用类型" align="center" prop="type">
H 80         <template #default="scope">
81           <dict-tag :type="DICT_TYPE.SYSTEM_APP_TYPE" :value="scope.row.type" />
82         </template>
83       </el-table-column>
84       <el-table-column label="所属租户" align="center" prop="tenantId">
85         <template #default="scope">
86           <template v-for="item in tenantList">
87             <el-tag type="success" :key="item.id" v-if="item.id === scope.row.tenantId">
88               {{ item.name }}
89             </el-tag>
90           </template>
91         </template>
92       </el-table-column>
93       <el-table-column label="应用分组" align="center" prop="groupId">
94         <template #default="scope">
95           <template v-for="item in groupList">
96             <el-tag type="warning" :key="item.id" v-if="item.id === scope.row.groupId">
97               {{ item.name }}
98             </el-tag>
99           </template>
100         </template>
101       </el-table-column>
db5c54 102       <el-table-column label="应用编号" align="center" prop="appCode" />
103       <el-table-column label="应用名称" align="center" prop="appName" />
104       <el-table-column label="应用域名" align="center" prop="appDomain" />
105       <el-table-column label="接口域名" align="center" prop="apiDomain" />
106       <el-table-column label="应用账号" align="center" prop="appKey" />
b1e092 107       <el-table-column label="应用图标" align="center" prop="logo">
H 108         <template #default="scope">
109           <img width="40px" height="40px" :src="scope.row.icon" />
110         </template>
111       </el-table-column>
db5c54 112       <el-table-column label="备注" align="center" prop="remark" width="200" />
113       <el-table-column
114         label="创建时间"
115         align="center"
116         prop="createTime"
117         width="180"
118         :formatter="dateFormatter"
119       />
120       <el-table-column label="操作" align="center" min-width="110" fixed="right">
121         <template #default="scope">
122           <el-button
123             link
124             type="primary"
125             @click="openForm('update', scope.row.id)"
b1e092 126             v-hasPermi="['system:app:update']"
db5c54 127           >
128             编辑
129           </el-button>
130           <el-button
131             link
132             type="danger"
133             @click="handleDelete(scope.row.id)"
b1e092 134             v-hasPermi="['system:app:delete']"
db5c54 135           >
136             删除
137           </el-button>
138         </template>
139       </el-table-column>
140     </el-table>
141     <!-- 分页 -->
142     <Pagination
143       :total="total"
144       v-model:page="queryParams.pageNo"
145       v-model:limit="queryParams.pageSize"
146       @pagination="getList"
147     />
148   </ContentWrap>
149
150   <!-- 表单弹窗:添加/修改 -->
151   <AppForm ref="formRef" @success="getList" />
152
153 </template>
154 <script lang="ts" setup>
155   import {DICT_TYPE, getIntDictOptions} from '@/utils/dict'
156   import {dateFormatter} from '@/utils/formatTime'
157   import download from '@/utils/download'
158   import * as AppApi from '@/api/system/app'
159   import AppForm from './AppForm.vue'
b1e092 160   import * as TenantApi from "@/api/system/tenant";
H 161   import * as AppGroupApi from "@/api/system/appgroup";
db5c54 162
163   defineOptions({name: 'SystemApp'})
164
165   const message = useMessage() // 消息弹窗
166   const {t} = useI18n() // 国际化
167
168   const loading = ref(true) // 列表的加载中
169   const total = ref(0) // 列表的总页数
170   const list = ref([]) // 列表的数据
171   const queryParams = reactive({
172     pageNo: 1,
173     pageSize: 10,
174     appCode: undefined,
175     appName: undefined,
176     status: undefined,
177     createTime: []
178   })
179   const queryFormRef = ref() // 搜索的表单
180   const exportLoading = ref(false) // 导出的加载中
b1e092 181
H 182   const tenantList = ref([] as TenantApi.TenantVO[]) // 租户列表
183   const groupList = ref([] as AppGroupApi.AppGroupVO[]) // 分组列表
db5c54 184
185   /** 查询列表 */
186   const getList = async () => {
187     loading.value = true
188     try {
189       const data = await AppApi.getAppPage(queryParams)
190       list.value = data.list
191       total.value = data.total
192     } finally {
193       loading.value = false
194     }
195   }
196
197   /** 搜索按钮操作 */
198   const handleQuery = () => {
199     queryParams.pageNo = 1
200     getList()
201   }
202
203   /** 重置按钮操作 */
204   const resetQuery = () => {
205     queryFormRef.value.resetFields()
206     handleQuery()
207   }
208
209   /** 添加/修改操作 */
210   const formRef = ref()
211   const openForm = (type: string, id?: number) => {
212     formRef.value.open(type, id)
213   }
214
215   /** 删除按钮操作 */
216   const handleDelete = async (id: number) => {
217     try {
218       // 删除的二次确认
219       await message.delConfirm()
220       // 发起删除
221       await AppApi.deleteApp(id)
222       message.success(t('common.delSuccess'))
223       // 刷新列表
224       await getList()
225     } catch {
226     }
227   }
228
229   /** 导出按钮操作 */
230   const handleExport = async () => {
231     try {
232       // 导出的二次确认
233       await message.exportConfirm()
234       // 发起导出
235       exportLoading.value = true
236       const data = await AppApi.exportApp(queryParams)
237       download.excel(data, '租户列表.xls')
238     } catch {
239     } finally {
240       exportLoading.value = false
241     }
242   }
243
244   /** 初始化 **/
245   onMounted(async () => {
246     await getList()
b1e092 247     tenantList.value = await TenantApi.getSimpleTenant()
H 248     groupList.value = await AppGroupApi.getAppGroupList()
db5c54 249   })
250 </script>