From 44ea10d9c737d5bbd38669ee3a41b23a030d0ba5 Mon Sep 17 00:00:00 2001
From: Michelle.Chung <1242874891@qq.com>
Date: 星期日, 18 六月 2023 16:58:28 +0800
Subject: [PATCH] add 新增客户端管理页面 ;

---
 src/views/system/client/index.vue |  317 +++++++++++++++++++++++++++++++++++
 src/api/system/client/types.ts    |  123 +++++++++++++
 src/api/system/client/index.ts    |   80 ++++++++
 3 files changed, 520 insertions(+), 0 deletions(-)

diff --git a/src/api/system/client/index.ts b/src/api/system/client/index.ts
new file mode 100644
index 0000000..603208e
--- /dev/null
+++ b/src/api/system/client/index.ts
@@ -0,0 +1,80 @@
+import request from '@/utils/request';
+import { AxiosPromise } from 'axios';
+import { ClientVO, ClientForm, ClientQuery } from '@/api/system/client/types';
+
+/**
+ * 鏌ヨ瀹㈡埛绔鐞嗗垪琛�
+ * @param query
+ * @returns {*}
+ */
+
+export const listClient = (query?: ClientQuery): AxiosPromise<ClientVO[]> => {
+  return request({
+    url: '/system/client/list',
+    method: 'get',
+    params: query
+  });
+};
+
+/**
+ * 鏌ヨ瀹㈡埛绔鐞嗚缁�
+ * @param id
+ */
+export const getClient = (id: string | number): AxiosPromise<ClientVO> => {
+  return request({
+    url: '/system/client/' + id,
+    method: 'get'
+  });
+};
+
+/**
+ * 鏂板瀹㈡埛绔鐞�
+ * @param data
+ */
+export const addClient = (data: ClientForm) => {
+  return request({
+    url: '/system/client',
+    method: 'post',
+    data: data
+  });
+};
+
+/**
+ * 淇敼瀹㈡埛绔鐞�
+ * @param data
+ */
+export const updateClient = (data: ClientForm) => {
+  return request({
+    url: '/system/client',
+    method: 'put',
+    data: data
+  });
+};
+
+/**
+ * 鍒犻櫎瀹㈡埛绔鐞�
+ * @param id
+ */
+export const delClient = (id: string | number | Array<string | number>) => {
+  return request({
+    url: '/system/client/' + id,
+    method: 'delete'
+  });
+};
+
+/**
+ * 鐢ㄦ埛鐘舵�佷慨鏀�
+ * @param userId 鐢ㄦ埛ID
+ * @param status 鐢ㄦ埛鐘舵��
+ */
+export function changeStatus(id: number | string, status: string) {
+  const data = {
+    id,
+    status
+  };
+  return request({
+    url: '/system/client/changeStatus',
+    method: 'put',
+    data: data
+  });
+}
diff --git a/src/api/system/client/types.ts b/src/api/system/client/types.ts
new file mode 100644
index 0000000..1c505ac
--- /dev/null
+++ b/src/api/system/client/types.ts
@@ -0,0 +1,123 @@
+export interface ClientVO {
+  /**
+   * id
+   */
+  id: string | number;
+
+  /**
+   * 瀹㈡埛绔痠d
+   */
+  clientId: string | number;
+
+  /**
+   * 瀹㈡埛绔痥ey
+   */
+  clientKey: string;
+
+  /**
+   * 瀹㈡埛绔閽�
+   */
+  clientSecret: string;
+
+  /**
+   * 鎺堟潈绫诲瀷
+   */
+  grantTypeList: string[];
+
+  /**
+   * token娲昏穬瓒呮椂鏃堕棿
+   */
+  activityTimeout: number;
+
+  /**
+   * token鍥哄畾瓒呮椂
+   */
+  timeout: number;
+
+  /**
+   * 鐘舵�侊紙0姝e父 1鍋滅敤锛�
+   */
+  status: string;
+
+}
+
+export interface ClientForm extends BaseEntity {
+  /**
+   * id
+   */
+  id?: string | number;
+
+  /**
+   * 瀹㈡埛绔痠d
+   */
+  clientId?: string | number;
+
+  /**
+   * 瀹㈡埛绔痥ey
+   */
+  clientKey?: string;
+
+  /**
+   * 瀹㈡埛绔閽�
+   */
+  clientSecret?: string;
+
+  /**
+   * 鎺堟潈绫诲瀷
+   */
+  grantTypeList?: string[];
+
+  /**
+   * token娲昏穬瓒呮椂鏃堕棿
+   */
+  activityTimeout?: number;
+
+  /**
+   * token鍥哄畾瓒呮椂
+   */
+  timeout?: number;
+
+  /**
+   * 鐘舵�侊紙0姝e父 1鍋滅敤锛�
+   */
+  status?: string;
+
+}
+
+export interface ClientQuery extends PageQuery {
+  /**
+   * 瀹㈡埛绔痠d
+   */
+  clientId?: string | number;
+
+  /**
+   * 瀹㈡埛绔痥ey
+   */
+  clientKey?: string;
+
+  /**
+   * 瀹㈡埛绔閽�
+   */
+  clientSecret?: string;
+
+  /**
+   * 鎺堟潈绫诲瀷
+   */
+  grantType?: string;
+
+  /**
+   * token娲昏穬瓒呮椂鏃堕棿
+   */
+  activityTimeout?: number;
+
+  /**
+   * token鍥哄畾瓒呮椂
+   */
+  timeout?: number;
+
+  /**
+   * 鐘舵�侊紙0姝e父 1鍋滅敤锛�
+   */
+  status?: string;
+
+}
diff --git a/src/views/system/client/index.vue b/src/views/system/client/index.vue
new file mode 100644
index 0000000..1a5e191
--- /dev/null
+++ b/src/views/system/client/index.vue
@@ -0,0 +1,317 @@
+<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="瀹㈡埛绔痥ey" 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="瀹㈡埛绔痠d" align="center" prop="clientId" />
+        <el-table-column label="瀹㈡埛绔痥ey" 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="瀹㈡埛绔痥ey" 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="璇疯緭鍏oken娲昏穬瓒呮椂鏃堕棿" />
+        </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="璇疯緭鍏oken鍥哄畾瓒呮椂鏃堕棿" />
+        </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: "瀹㈡埛绔痠d涓嶈兘涓虹┖", trigger: "blur" }
+    ],
+    clientKey: [
+      { required: true, message: "瀹㈡埛绔痥ey涓嶈兘涓虹┖", 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>

--
Gitblit v1.9.3