¶Ô±ÈÐÂÎļþ |
| | |
| | | <template> |
| | | <div class="p-2"> |
| | | <transition :enter-active-class="proxy?.animate.searchAnimate.enter" :leave-active-class="proxy?.animate.searchAnimate.leave"> |
| | | <div class="search" v-show="showSearch"> |
| | | <el-form :model="queryParams" ref="queryFormRef" :inline="true" label-width="100px"> |
| | | <el-form-item label="客æ·ç«¯key" prop="clientKey"> |
| | | <el-input v-model="queryParams.clientKey" placeholder="请è¾å
¥å®¢æ·ç«¯key" clearable @keyup.enter="handleQuery" /> |
| | | </el-form-item> |
| | | <el-form-item label="客æ·ç«¯ç§é¥" prop="clientSecret"> |
| | | <el-input v-model="queryParams.clientSecret" placeholder="请è¾å
¥å®¢æ·ç«¯ç§é¥" clearable @keyup.enter="handleQuery" /> |
| | | </el-form-item> |
| | | <el-form-item label="ç¶æ" prop="status"> |
| | | <el-select v-model="queryParams.status" placeholder="ç¶æ" clearable> |
| | | <el-option v-for="dict in sys_normal_disable" :key="dict.value" :label="dict.label" :value="dict.value" /> |
| | | </el-select> |
| | | </el-form-item> |
| | | <el-form-item> |
| | | <el-button type="primary" icon="Search" @click="handleQuery">æç´¢</el-button> |
| | | <el-button icon="Refresh" @click="resetQuery">éç½®</el-button> |
| | | </el-form-item> |
| | | </el-form> |
| | | </div> |
| | | </transition> |
| | | |
| | | <el-card shadow="never"> |
| | | <template #header> |
| | | <el-row :gutter="10" class="mb8"> |
| | | <el-col :span="1.5"> |
| | | <el-button type="primary" plain icon="Plus" @click="handleAdd" v-hasPermi="['system:client:add']">æ°å¢</el-button> |
| | | </el-col> |
| | | <el-col :span="1.5"> |
| | | <el-button type="success" plain icon="Edit" :disabled="single" @click="handleUpdate()" v-hasPermi="['system:client:edit']">ä¿®æ¹</el-button> |
| | | </el-col> |
| | | <el-col :span="1.5"> |
| | | <el-button type="danger" plain icon="Delete" :disabled="multiple" @click="handleDelete()" v-hasPermi="['system:client:remove']">å é¤</el-button> |
| | | </el-col> |
| | | <el-col :span="1.5"> |
| | | <el-button type="warning" plain icon="Download" @click="handleExport" v-hasPermi="['system:client:export']">导åº</el-button> |
| | | </el-col> |
| | | <right-toolbar v-model:showSearch="showSearch" @queryTable="getList"></right-toolbar> |
| | | </el-row> |
| | | </template> |
| | | |
| | | <el-table v-loading="loading" :data="clientList" @selection-change="handleSelectionChange"> |
| | | <el-table-column type="selection" width="55" align="center" /> |
| | | <el-table-column label="id" align="center" prop="id" v-if="true" /> |
| | | <el-table-column label="客æ·ç«¯id" align="center" prop="clientId" /> |
| | | <el-table-column label="客æ·ç«¯key" align="center" prop="clientKey" /> |
| | | <el-table-column label="客æ·ç«¯ç§é¥" align="center" prop="clientSecret" /> |
| | | <el-table-column label="ææç±»å" align="center" prop="grantType" /> |
| | | <el-table-column label="Tokenæ´»è·è¶
æ¶æ¶é´" align="center" prop="activityTimeout" /> |
| | | <el-table-column label="Tokenåºå®è¶
æ¶æ¶é´" align="center" prop="timeout" /> |
| | | <el-table-column label="ç¶æ" align="center" key="status"> |
| | | <template #default="scope"> |
| | | <el-switch v-model="scope.row.status" active-value="0" inactive-value="1" @change="handleStatusChange(scope.row)"></el-switch> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column label="æä½" align="center" class-name="small-padding fixed-width"> |
| | | <template #default="scope"> |
| | | <el-tooltip content="ä¿®æ¹" placement="top"> |
| | | <el-button link type="primary" icon="Edit" @click="handleUpdate(scope.row)" v-hasPermi="['system:client:edit']"></el-button> |
| | | </el-tooltip> |
| | | <el-tooltip content="å é¤" placement="top"> |
| | | <el-button link type="primary" icon="Delete" @click="handleDelete(scope.row)" v-hasPermi="['system:client:remove']"></el-button> |
| | | </el-tooltip> |
| | | </template> |
| | | </el-table-column> |
| | | </el-table> |
| | | |
| | | <pagination |
| | | v-show="total>0" |
| | | :total="total" |
| | | v-model:page="queryParams.pageNum" |
| | | v-model:limit="queryParams.pageSize" |
| | | @pagination="getList" |
| | | /> |
| | | </el-card> |
| | | <!-- æ·»å æä¿®æ¹å®¢æ·ç«¯ç®¡çå¯¹è¯æ¡ --> |
| | | <el-dialog :title="dialog.title" v-model="dialog.visible" width="500px" append-to-body> |
| | | <el-form ref="clientFormRef" :model="form" :rules="rules" label-width="100px"> |
| | | <el-form-item label="客æ·ç«¯key" prop="clientKey"> |
| | | <el-input v-model="form.clientKey" :disabled="form.id != null" placeholder="请è¾å
¥å®¢æ·ç«¯key" /> |
| | | </el-form-item> |
| | | <el-form-item label="客æ·ç«¯ç§é¥" prop="clientSecret"> |
| | | <el-input v-model="form.clientSecret" :disabled="form.id != null" placeholder="请è¾å
¥å®¢æ·ç«¯ç§é¥" /> |
| | | </el-form-item> |
| | | <el-form-item label="ææç±»å" prop="grantTypeList"> |
| | | <el-select v-model="form.grantTypeList" multiple placeholder="请è¾å
¥ææç±»å"> |
| | | <el-option |
| | | v-for="dict in sys_grant_type" |
| | | :key="dict.value" :label="dict.label" :value="dict.value" |
| | | ></el-option> |
| | | </el-select> |
| | | </el-form-item> |
| | | <el-form-item prop="activityTimeout" label-width="auto"> |
| | | <template #label> |
| | | <span> |
| | | <el-tooltip content="æå®æ¶é´æ æä½åè¿æï¼åä½ï¼ç§ï¼ï¼é»è®¤30åéï¼1800ç§ï¼" placement="top"> |
| | | <el-icon><question-filled /></el-icon> |
| | | </el-tooltip> |
| | | Tokenæ´»è·è¶
æ¶æ¶é´ |
| | | </span> |
| | | </template> |
| | | <el-input v-model="form.activityTimeout" placeholder="请è¾å
¥Tokenæ´»è·è¶
æ¶æ¶é´" /> |
| | | </el-form-item> |
| | | <el-form-item prop="timeout" label-width="auto"> |
| | | <template #label> |
| | | <span> |
| | | <el-tooltip content="æå®æ¶é´å¿
å®è¿æï¼åä½ï¼ç§ï¼ï¼é»è®¤ä¸å¤©ï¼604800ç§ï¼" placement="top"> |
| | | <el-icon><question-filled /></el-icon> |
| | | </el-tooltip> |
| | | Tokenåºå®è¶
æ¶æ¶é´ |
| | | </span> |
| | | </template> |
| | | <el-input v-model="form.timeout" placeholder="请è¾å
¥Tokenåºå®è¶
æ¶æ¶é´" /> |
| | | </el-form-item> |
| | | <el-form-item label="ç¶æ"> |
| | | <el-radio-group v-model="form.status"> |
| | | <el-radio v-for="dict in sys_normal_disable" :key="dict.value" :label="dict.value"> |
| | | {{ dict.label }} |
| | | </el-radio> |
| | | </el-radio-group> |
| | | </el-form-item> |
| | | </el-form> |
| | | <template #footer> |
| | | <div class="dialog-footer"> |
| | | <el-button :loading="buttonLoading" type="primary" @click="submitForm">ç¡® å®</el-button> |
| | | <el-button @click="cancel">å æ¶</el-button> |
| | | </div> |
| | | </template> |
| | | </el-dialog> |
| | | </div> |
| | | </template> |
| | | |
| | | <script setup name="Client" lang="ts"> |
| | | import { listClient, getClient, delClient, addClient, updateClient, changeStatus } from '@/api/system/client'; |
| | | import { ClientVO, ClientQuery, ClientForm } from '@/api/system/client/types'; |
| | | import { ComponentInternalInstance } from 'vue'; |
| | | import { ElForm } from 'element-plus'; |
| | | |
| | | const { proxy } = getCurrentInstance() as ComponentInternalInstance; |
| | | const { sys_normal_disable } = toRefs<any>(proxy?.useDict("sys_normal_disable")); |
| | | const { sys_grant_type } = toRefs<any>(proxy?.useDict("sys_grant_type")); |
| | | |
| | | const clientList = ref<ClientVO[]>([]); |
| | | const buttonLoading = ref(false); |
| | | const loading = ref(true); |
| | | const showSearch = ref(true); |
| | | const ids = ref<Array<string | number>>([]); |
| | | const single = ref(true); |
| | | const multiple = ref(true); |
| | | const total = ref(0); |
| | | |
| | | const queryFormRef = ref(ElForm); |
| | | const clientFormRef = ref(ElForm); |
| | | |
| | | const dialog = reactive<DialogOption>({ |
| | | visible: false, |
| | | title: '' |
| | | }); |
| | | |
| | | const initFormData: ClientForm = { |
| | | id: undefined, |
| | | clientId: undefined, |
| | | clientKey: undefined, |
| | | clientSecret: undefined, |
| | | grantTypeList: undefined, |
| | | activityTimeout: undefined, |
| | | timeout: undefined, |
| | | status: undefined, |
| | | } |
| | | const data = reactive<PageData<ClientForm, ClientQuery>>({ |
| | | form: {...initFormData}, |
| | | queryParams: { |
| | | pageNum: 1, |
| | | pageSize: 10, |
| | | clientId: undefined, |
| | | clientKey: undefined, |
| | | clientSecret: undefined, |
| | | grantType: undefined, |
| | | activityTimeout: undefined, |
| | | timeout: undefined, |
| | | status: undefined, |
| | | }, |
| | | rules: { |
| | | id: [ |
| | | { required: true, message: "idä¸è½ä¸ºç©º", trigger: "blur" } |
| | | ], |
| | | clientId: [ |
| | | { required: true, message: "客æ·ç«¯idä¸è½ä¸ºç©º", trigger: "blur" } |
| | | ], |
| | | clientKey: [ |
| | | { required: true, message: "客æ·ç«¯keyä¸è½ä¸ºç©º", trigger: "blur" } |
| | | ], |
| | | clientSecret: [ |
| | | { required: true, message: "客æ·ç«¯ç§é¥ä¸è½ä¸ºç©º", trigger: "blur" } |
| | | ], |
| | | grantTypeList: [ |
| | | { required: true, message: "ææç±»åä¸è½ä¸ºç©º", trigger: "change" } |
| | | ], |
| | | } |
| | | }); |
| | | |
| | | const { queryParams, form, rules } = toRefs(data); |
| | | |
| | | /** æ¥è¯¢å®¢æ·ç«¯ç®¡çå表 */ |
| | | const getList = async () => { |
| | | loading.value = true; |
| | | const res = await listClient(queryParams.value); |
| | | clientList.value = res.rows; |
| | | total.value = res.total; |
| | | loading.value = false; |
| | | } |
| | | |
| | | /** åæ¶æé® */ |
| | | const cancel = () => { |
| | | reset(); |
| | | dialog.visible = false; |
| | | } |
| | | |
| | | /** 表åéç½® */ |
| | | const reset = () => { |
| | | form.value = {...initFormData}; |
| | | clientFormRef.value.resetFields(); |
| | | } |
| | | |
| | | /** æç´¢æé®æä½ */ |
| | | const handleQuery = () => { |
| | | queryParams.value.pageNum = 1; |
| | | getList(); |
| | | } |
| | | |
| | | /** éç½®æé®æä½ */ |
| | | const resetQuery = () => { |
| | | queryFormRef.value.resetFields(); |
| | | handleQuery(); |
| | | } |
| | | |
| | | /** å¤éæ¡é䏿°æ® */ |
| | | const handleSelectionChange = (selection: ClientVO[]) => { |
| | | ids.value = selection.map(item => item.id); |
| | | single.value = selection.length != 1; |
| | | multiple.value = !selection.length; |
| | | } |
| | | |
| | | /** æ°å¢æé®æä½ */ |
| | | const handleAdd = () => { |
| | | dialog.visible = true; |
| | | dialog.title = "æ·»å 客æ·ç«¯ç®¡ç"; |
| | | nextTick(() => { |
| | | reset(); |
| | | }); |
| | | } |
| | | |
| | | /** ä¿®æ¹æé®æä½ */ |
| | | const handleUpdate = (row?: ClientVO) => { |
| | | loading.value = true |
| | | dialog.visible = true; |
| | | dialog.title = "ä¿®æ¹å®¢æ·ç«¯ç®¡ç"; |
| | | nextTick(async () => { |
| | | reset(); |
| | | const _id = row?.id || ids.value[0] |
| | | const res = await getClient(_id); |
| | | loading.value = false; |
| | | Object.assign(form.value, res.data); |
| | | }); |
| | | } |
| | | |
| | | /** æäº¤æé® */ |
| | | const submitForm = () => { |
| | | clientFormRef.value.validate(async (valid: boolean) => { |
| | | if (valid) { |
| | | buttonLoading.value = true; |
| | | if (form.value.id) { |
| | | await updateClient(form.value).finally(() => buttonLoading.value = false); |
| | | } else { |
| | | await addClient(form.value).finally(() => buttonLoading.value = false); |
| | | } |
| | | proxy?.$modal.msgSuccess("ä¿®æ¹æå"); |
| | | dialog.visible = false; |
| | | await getList(); |
| | | } |
| | | }); |
| | | } |
| | | |
| | | /** å é¤æé®æä½ */ |
| | | const handleDelete = async (row?: ClientVO) => { |
| | | const _ids = row?.id || ids.value; |
| | | await proxy?.$modal.confirm('æ¯å¦ç¡®è®¤å é¤å®¢æ·ç«¯ç®¡çç¼å·ä¸º"' + _ids + '"çæ°æ®é¡¹ï¼').finally(() => loading.value = false); |
| | | await delClient(_ids); |
| | | proxy?.$modal.msgSuccess("å 餿å"); |
| | | await getList(); |
| | | } |
| | | |
| | | /** å¯¼åºæé®æä½ */ |
| | | const handleExport = () => { |
| | | proxy?.download('system/client/export', { |
| | | ...queryParams.value |
| | | }, `client_${new Date().getTime()}.xlsx`) |
| | | } |
| | | |
| | | /** ç¶æä¿®æ¹ */ |
| | | const handleStatusChange = async (row: ClientVO) => { |
| | | let text = row.status === "0" ? "å¯ç¨" : "åç¨" |
| | | try { |
| | | await proxy?.$modal.confirm('确认è¦"' + text + '"å?'); |
| | | await changeStatus(row.id, row.status); |
| | | proxy?.$modal.msgSuccess(text + "æå"); |
| | | } catch (err) { |
| | | row.status = row.status === "0" ? "1" : "0"; |
| | | } |
| | | } |
| | | |
| | | onMounted(() => { |
| | | getList(); |
| | | }); |
| | | </script> |