Browse Source

生成细节调整

guicheng 1 week ago
parent
commit
fddf6469a3

+ 3 - 3
src/api/utils.ts

@@ -2,9 +2,9 @@
  * @Author: Gui
  * @Date: 2023-03-08 11:24:34
  * @LastEditors: guicheng 1625811865@qq.com
- * @LastEditTime: 2025-02-17 11:39:44
+ * @LastEditTime: 2025-03-18 11:04:58
  * @Description: kxs files
  * @filePath:
  */
-export const environment = "development";
-// export const environment = "production";
+// export const environment = "development";
+export const environment = "production";

+ 7 - 2
src/components/OmageForm/index.vue

@@ -2,7 +2,7 @@
  * @Author: Gui
  * @Date: 2023-03-01 19:20:44
  * @LastEditors: guicheng 1625811865@qq.com
- * @LastEditTime: 2025-03-12 16:28:04
+ * @LastEditTime: 2025-03-24 10:19:53
  * @Description: kxs files
  * @filePath: 
 -->
@@ -89,6 +89,9 @@ const onSearch = type => {
 const rules = ref({});
 
 watch(props.formData, () => {
+  formateFormData();
+});
+const formateFormData = () => {
   for (const key in props.formData) {
     if (Object.prototype.hasOwnProperty.call(props.formData, key)) {
       formState.value[key] = props.formData[key]["value"];
@@ -98,7 +101,9 @@ watch(props.formData, () => {
       }
     }
   }
-});
+};
+// 初始化组件格式化对应数据
+formateFormData();
 
 // 抛出当前组件表单实例
 defineExpose(

+ 30 - 4
src/router/index.ts

@@ -25,7 +25,7 @@ import { buildHierarchyTree } from "@/utils/tree";
 import { isUrl, openLink, storageSession } from "@pureadmin/utils";
 
 import remainingRouter from "./modules/remaining";
-import { ShakeDownDecrypt } from "@/utils/CryptoJS";
+import { ShakeDownDecrypt, ShakeDownEncrypt } from "@/utils/CryptoJS";
 
 /** 自动导入全部静态路由,无需再手动引入!匹配 src/router/modules 目录(任何嵌套级别)中具有 .ts 扩展名的所有文件,除了 remaining.ts 文件
  * 如何匹配所有文件请看:https://github.com/mrmlnc/fast-glob#basic-syntax
@@ -107,8 +107,8 @@ router.beforeEach((to: toRouteType, _from, next) => {
     }
   }
   const userInfo =
-    storageSession().getItem<DataInfo<number>>(sessionKey) &&
-    ShakeDownDecrypt(storageSession().getItem<DataInfo<number>>(sessionKey));
+    storageSession().getItem(sessionKey) &&
+    ShakeDownDecrypt(storageSession().getItem(sessionKey));
   // NProgress.start();
   const externalLink = isUrl(to?.name as string);
   if (!externalLink) {
@@ -135,10 +135,15 @@ router.beforeEach((to: toRouteType, _from, next) => {
         openLink(to?.name as string);
         // NProgress.done();
       } else {
+        if (Object.keys(to?.query).length > 0) {
+          storageSession().setItem(to?.path, ShakeDownEncrypt(to?.query));
+        }
+        putRouterQuery(to);
         toCorrectRoute();
       }
     } else {
       // 刷新
+      putRouterQuery(to);
       if (
         usePermissionStoreHook().wholeMenus.length === 0 &&
         to.path !== "/login"
@@ -175,8 +180,29 @@ router.beforeEach((to: toRouteType, _from, next) => {
     }
   }
 });
+const putRouterQuery = to => {
+  const routerQuery = setRouterQuery(to.path);
+
+  if (Object.keys(routerQuery).length > 0) {
+    to.query = routerQuery;
+    to.fullPath = forMatterRouterLink(to.path, routerQuery);
+    to.href = forMatterRouterLink(to.path, routerQuery);
+  }
+};
 
-router.afterEach(() => {
+function setRouterQuery(toUrl: string) {
+  return storageSession().getItem(toUrl)
+    ? ShakeDownDecrypt(storageSession().getItem(toUrl))
+    : {};
+}
+function forMatterRouterLink(url: string, object: object) {
+  url += "?";
+  for (const iterator in object) {
+    url += `${iterator}=${object[iterator]}`;
+  }
+  return url;
+}
+router.afterEach(to => {
   // NProgress.done();
 });
 export default router;

+ 1 - 1
src/views/api/apiInfo/components/add/index.vue

@@ -106,7 +106,7 @@ const isFullscreen = ref(false);
 
 <template lang="pug">
 .main
-  el-dialog(v-model='props.addVisible' width="50%" :fullscreen="isFullscreen" title="新增" draggable @close="closeVisible")
+  el-dialog(v-model='props.addVisible' width="50%" :fullscreen="isFullscreen" title="新增" draggable @close="closeFn")
     omega-form(ref="formRef" :formData="formData" labelPosition="left" labelWidth="100px" size="default" @search="formsubmit" formWidth="!w-[230px]" :searchAll="false" searchText="确认提交")
     .flex.justify-end
       el-button(

+ 1 - 1
src/views/api/apiInfo/components/setRouter/index.vue

@@ -106,7 +106,7 @@ const formData = ref({
 
 <template lang="pug">
 .main
-  el-dialog(v-model='props.editVisible' draggable width="50%" :fullscreen="isFullscreen" title="修改" @close="closeSetRouterVisible" @open="openVisible")
+  el-dialog(v-model='props.editVisible' draggable width="50%" :fullscreen="isFullscreen" title="修改" @close="closeFn" @open="openVisible")
     omega-form(ref="formRef" v-if="props.editVisible" :formData="formData" labelPosition="left" labelWidth="100px" size="default" @search="formsubmit" formWidth="!w-[230px]" :searchAll="false" searchText="确认提交")
     .flex.justify-end
       el-button(

+ 1 - 1
src/views/api/apiInfo/components/setVersion/index.vue

@@ -94,7 +94,7 @@ const isFullscreen = ref(false);
 
 <template lang="pug">
 .main
-  el-dialog(v-model='props.editVisible' draggable width="50%" :fullscreen="isFullscreen" title="修改" @close="closeSetVersionVisible" @open="openVisible")
+  el-dialog(v-model='props.editVisible' draggable width="50%" :fullscreen="isFullscreen" title="修改" @close="closeFn" @open="openVisible")
     omega-form(ref="formRef" v-if="props.editVisible" :formData="formData" labelPosition="left" labelWidth="100px" size="default" @search="formsubmit" formWidth="!w-[230px]" :searchAll="false" searchText="确认提交")
     .flex.justify-end
       el-button(

+ 1 - 1
src/views/api/apiInfo/components/update/index.vue

@@ -132,7 +132,7 @@ const isFullscreen = ref(false);
 
 <template lang="pug">
 .main
-  el-dialog(v-model='props.editVisible' draggable width="50%" :fullscreen="isFullscreen" title="修改" @close="closeUpdateVisible" @open="openVisible")
+  el-dialog(v-model='props.editVisible' draggable width="50%" :fullscreen="isFullscreen" title="修改" @close="closeFn" @open="openVisible")
     omega-form(ref="formRef" :formData="formData" labelPosition="left" labelWidth="100px" size="default" @search="formsubmit" formWidth="!w-[230px]" :searchAll="false" searchText="确认提交")
     .flex.justify-end
       el-button(

+ 28 - 0
src/views/api/apiInfo/hook.tsx

@@ -36,6 +36,34 @@ export function useApiInfo() {
       disposition: {}
     }
   });
+  // const formData = {
+  //   username: {
+  //     label: "用户名",
+  //     required: true,
+  //     type: "select",
+  //     disposition: { multiple: false },
+  //     options: [
+  //       { label: "id1", value: 1 },
+  //       { label: "id2", value: 2 }
+  //     ],
+  //     rules: []
+  //   },
+  //   phone: {
+  //     label: "电话号码",
+  //     required: false,
+  //     type: "picker",
+  //     disposition: {
+  //       type: "datetimerange"
+  //     }
+  //   },
+  //   deptId: {
+  //     label: "所属部门ID",
+  //     required: false,
+  //     type: "input",
+  //     disposition: {},
+  //     rules: [{ required: true, message: "请输入名称", trigger: "blur" }]
+  //   }
+  // };
   const dataList = ref([]);
   const loading = ref(false);
   const pagination = reactive<PaginationProps>({

+ 0 - 1
src/views/api/apiInfo/index.vue

@@ -45,7 +45,6 @@ const {
   formData
 } = useApiInfo();
 const formsubmit = (type, val) => {
-  console.log("[ val ] >", val);
   form.groupId = val.groupId;
   form.apiName = val.apiName;
   onSearch();