houzhongjian
2024-08-08 820397e43a0b64d35c6d31d2a55475061438593b
提交 | 用户 | 时间
820397 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="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="status">
21         <el-select v-model="queryParams.status" placeholder="请选择状态" clearable class="!w-240px">
22           <el-option
23             v-for="dict in getIntDictOptions(DICT_TYPE.COMMON_STATUS)"
24             :key="dict.value"
25             :label="dict.label"
26             :value="dict.value"
27           />
28         </el-select>
29       </el-form-item>
30       <el-form-item>
31         <el-button @click="handleQuery"><Icon icon="ep:search" class="mr-5px" /> 搜索</el-button>
32         <el-button @click="resetQuery"><Icon icon="ep:refresh" class="mr-5px" /> 重置</el-button>
33         <el-button
34           plain
35           type="primary"
36           @click="openForm('create')"
37           v-hasPermi="['system:oauth2-client:create']"
38         >
39           <Icon icon="ep:plus" class="mr-5px" /> 新增
40         </el-button>
41       </el-form-item>
42     </el-form>
43   </ContentWrap>
44
45   <!-- 列表 -->
46   <ContentWrap>
47     <el-table v-loading="loading" :data="list">
48       <el-table-column label="客户端编号" align="center" prop="clientId" />
49       <el-table-column label="客户端密钥" align="center" prop="secret" />
50       <el-table-column label="应用名" align="center" prop="name" />
51       <el-table-column label="应用图标" align="center" prop="logo">
52         <template #default="scope">
53           <img width="40px" height="40px" :src="scope.row.logo" />
54         </template>
55       </el-table-column>
56       <el-table-column label="状态" align="center" prop="status">
57         <template #default="scope">
58           <dict-tag :type="DICT_TYPE.COMMON_STATUS" :value="scope.row.status" />
59         </template>
60       </el-table-column>
61       <el-table-column label="访问令牌的有效期" align="center" prop="accessTokenValiditySeconds">
62         <template #default="scope">{{ scope.row.accessTokenValiditySeconds }} 秒</template>
63       </el-table-column>
64       <el-table-column label="刷新令牌的有效期" align="center" prop="refreshTokenValiditySeconds">
65         <template #default="scope">{{ scope.row.refreshTokenValiditySeconds }} 秒</template>
66       </el-table-column>
67       <el-table-column label="授权类型" align="center" prop="authorizedGrantTypes">
68         <template #default="scope">
69           <el-tag
70             :disable-transitions="true"
71             :key="index"
72             v-for="(authorizedGrantType, index) in scope.row.authorizedGrantTypes"
73             :index="index"
74             class="mr-5px"
75           >
76             {{ authorizedGrantType }}
77           </el-tag>
78         </template>
79       </el-table-column>
80       <el-table-column
81         label="创建时间"
82         align="center"
83         prop="createTime"
84         width="180"
85         :formatter="dateFormatter"
86       />
87       <el-table-column label="操作" align="center">
88         <template #default="scope">
89           <el-button
90             link
91             type="primary"
92             @click="openForm('update', scope.row.id)"
93             v-hasPermi="['system:oauth2-client:update']"
94           >
95             编辑
96           </el-button>
97           <el-button
98             link
99             type="danger"
100             @click="handleDelete(scope.row.id)"
101             v-hasPermi="['system:oauth2-client:delete']"
102           >
103             删除
104           </el-button>
105         </template>
106       </el-table-column>
107     </el-table>
108     <!-- 分页 -->
109     <Pagination
110       :total="total"
111       v-model:page="queryParams.pageNo"
112       v-model:limit="queryParams.pageSize"
113       @pagination="getList"
114     />
115   </ContentWrap>
116
117   <!-- 表单弹窗:添加/修改 -->
118   <ClientForm ref="formRef" @success="getList" />
119 </template>
120 <script lang="ts" setup>
121 import { DICT_TYPE, getIntDictOptions } from '@/utils/dict'
122 import { dateFormatter } from '@/utils/formatTime'
123 import * as ClientApi from '@/api/system/oauth2/client'
124 import ClientForm from './ClientForm.vue'
125
126 defineOptions({ name: 'SystemOAuth2Client' })
127
128 const message = useMessage() // 消息弹窗
129 const { t } = useI18n() // 国际化
130
131 const loading = ref(true) // 列表的加载中
132 const total = ref(0) // 列表的总页数
133 const list = ref([]) // 列表的数据
134 const queryParams = reactive({
135   pageNo: 1,
136   pageSize: 10,
137   name: null,
138   status: undefined
139 })
140 const queryFormRef = ref() // 搜索的表单
141
142 /** 查询列表 */
143 const getList = async () => {
144   loading.value = true
145   try {
146     const data = await ClientApi.getOAuth2ClientPage(queryParams)
147     list.value = data.list
148     total.value = data.total
149   } finally {
150     loading.value = false
151   }
152 }
153
154 /** 搜索按钮操作 */
155 const handleQuery = () => {
156   queryParams.pageNo = 1
157   getList()
158 }
159
160 /** 重置按钮操作 */
161 const resetQuery = () => {
162   queryFormRef.value.resetFields()
163   handleQuery()
164 }
165
166 /** 添加/修改操作 */
167 const formRef = ref()
168 const openForm = (type: string, id?: number) => {
169   formRef.value.open(type, id)
170 }
171
172 /** 删除按钮操作 */
173 const handleDelete = async (id: number) => {
174   try {
175     // 删除的二次确认
176     await message.delConfirm()
177     // 发起删除
178     await ClientApi.deleteOAuth2Client(id)
179     message.success(t('common.delSuccess'))
180     // 刷新列表
181     await getList()
182   } catch {}
183 }
184
185 /** 初始化 **/
186 onMounted(() => {
187   getList()
188 })
189 </script>