Browse Source

update 优化 全代码规范化处理

疯狂的狮子Li 6 tháng trước cách đây
mục cha
commit
f3425493ed
45 tập tin đã thay đổi với 78 bổ sung74 xóa
  1. 1 1
      src/api/system/tenant/index.ts
  2. 0 1
      src/assets/styles/element-ui.scss
  3. 12 12
      src/assets/styles/variables.module.scss
  4. 4 4
      src/components/Breadcrumb/index.vue
  5. 1 1
      src/components/Process/multiInstanceUser.vue
  6. 2 2
      src/layout/components/Navbar.vue
  7. 1 1
      src/layout/index.vue
  8. 1 1
      src/plugins/tab.ts
  9. 9 9
      src/store/modules/tagsView.ts
  10. 1 1
      src/utils/request.ts
  11. 1 4
      src/utils/sse.ts
  12. 1 1
      src/views/demo/demo/index.vue
  13. 1 1
      src/views/demo/tree/index.vue
  14. 1 1
      src/views/monitor/logininfor/index.vue
  15. 1 1
      src/views/monitor/operlog/index.vue
  16. 1 1
      src/views/system/client/index.vue
  17. 1 1
      src/views/system/config/index.vue
  18. 1 1
      src/views/system/dept/index.vue
  19. 1 1
      src/views/system/dict/data.vue
  20. 1 2
      src/views/system/dict/index.vue
  21. 1 1
      src/views/system/menu/index.vue
  22. 1 1
      src/views/system/notice/index.vue
  23. 1 1
      src/views/system/oss/config.vue
  24. 1 1
      src/views/system/oss/index.vue
  25. 1 1
      src/views/system/post/index.vue
  26. 1 1
      src/views/system/role/authUser.vue
  27. 1 1
      src/views/system/role/index.vue
  28. 11 2
      src/views/system/tenant/index.vue
  29. 1 1
      src/views/system/tenantPackage/index.vue
  30. 1 1
      src/views/system/user/authRole.vue
  31. 1 1
      src/views/system/user/index.vue
  32. 1 1
      src/views/tool/gen/index.vue
  33. 1 1
      src/views/workflow/category/index.vue
  34. 1 1
      src/views/workflow/formManage/index.vue
  35. 1 1
      src/views/workflow/leave/index.vue
  36. 2 2
      src/views/workflow/leave/leaveEdit.vue
  37. 1 1
      src/views/workflow/model/index.vue
  38. 1 1
      src/views/workflow/processDefinition/index.vue
  39. 1 1
      src/views/workflow/processInstance/index.vue
  40. 1 1
      src/views/workflow/task/allTaskWaiting.vue
  41. 1 1
      src/views/workflow/task/myDocument.vue
  42. 1 1
      src/views/workflow/task/taskCopyList.vue
  43. 1 1
      src/views/workflow/task/taskFinish.vue
  44. 1 1
      src/views/workflow/task/taskWaiting.vue
  45. 1 1
      tsconfig.json

+ 1 - 1
src/api/system/tenant/index.ts

@@ -96,6 +96,6 @@ export function syncTenantPackage(tenantId: string | number, packageId: string |
 export function syncTenantDict() {
   return request({
     url: '/system/tenant/syncTenantDict',
-    method: 'get',
+    method: 'get'
   });
 }

+ 0 - 1
src/assets/styles/element-ui.scss

@@ -1,4 +1,3 @@
-
 .el-collapse {
   .collapse__title {
     font-weight: 600;

+ 12 - 12
src/assets/styles/variables.module.scss

@@ -20,7 +20,7 @@
   --bpmn-panel-bar-background-color: #f5f7fa;
 
   // ele
-  --brder-color: #e8e8e8
+  --brder-color: #e8e8e8;
 }
 html.dark {
   --menuBg: #1d1e1f;
@@ -42,25 +42,25 @@ html.dark {
     --el-color-primary-light-9: #262727;
   }
   // vxe-table 主题
-  --vxe-font-color: #98989E;
-  --vxe-primary-color: #2C7ECF;
-  --vxe-icon-background-color: #98989E;
-  --vxe-table-font-color: #98989E;
+  --vxe-font-color: #98989e;
+  --vxe-primary-color: #2c7ecf;
+  --vxe-icon-background-color: #98989e;
+  --vxe-table-font-color: #98989e;
   --vxe-table-resizable-color: #95969a;
-  --vxe-table-header-background-color: #28282A;
+  --vxe-table-header-background-color: #28282a;
   --vxe-table-body-background-color: #151518;
   --vxe-table-background-color: #4a5663;
   --vxe-table-border-width: 1px;
-  --vxe-table-border-color: #37373A;
-  --vxe-toolbar-background-color: #37373A;
+  --vxe-table-border-color: #37373a;
+  --vxe-toolbar-background-color: #37373a;
 
   // 工作流
-  --bpmn-panel-border: #37373A;
-  --bpmn-panel-box-shadow: #37373A;
-  --bpmn-panel-bar-background-color: #37373A;
+  --bpmn-panel-border: #37373a;
+  --bpmn-panel-box-shadow: #37373a;
+  --bpmn-panel-bar-background-color: #37373a;
 
   // ele
-  --brder-color: #37373A
+  --brder-color: #37373a;
 }
 
 // base color

+ 4 - 4
src/components/Breadcrumb/index.vue

@@ -28,16 +28,16 @@ const getBreadcrumb = () => {
     const pathList = route.path.match(reg).map((item, index) => {
       if (index !== 0) item = item.slice(1);
       return item;
-    })
+    });
     getMatched(pathList, permissionStore.defaultRoutes, matched);
   } else {
-    matched = route.matched.filter(item => item.meta && item.meta.title);
+    matched = route.matched.filter((item) => item.meta && item.meta.title);
   }
   // 判断是否为首页
   if (!isDashboard(matched[0])) {
     matched = [{ path: '/index', meta: { title: '首页' } }].concat(matched);
   }
-  levelList.value = matched.filter(item => item.meta && item.meta.title && item.meta.breadcrumb !== false);
+  levelList.value = matched.filter((item) => item.meta && item.meta.title && item.meta.breadcrumb !== false);
 };
 const findPathNum = (str, char = '/') => {
   let index = str.indexOf(char);
@@ -49,7 +49,7 @@ const findPathNum = (str, char = '/') => {
   return num;
 };
 const getMatched = (pathList, routeList, matched) => {
-  let data = routeList.find(item => item.path == pathList[0] || (item.name += '').toLowerCase() == pathList[0]);
+  let data = routeList.find((item) => item.path == pathList[0] || (item.name += '').toLowerCase() == pathList[0]);
   if (data) {
     matched.push(data);
     if (data.children && pathList.length) {

+ 1 - 1
src/components/Process/multiInstanceUser.vue

@@ -41,7 +41,7 @@
           <el-card shadow="hover">
             <template #header>
               <el-row :gutter="10">
-                <right-toolbar v-model:showSearch="showSearch" :search="true" @query-table="handleQuery"></right-toolbar>
+                <right-toolbar v-model:show-search="showSearch" :search="true" @query-table="handleQuery"></right-toolbar>
               </el-row>
             </template>
 

+ 2 - 2
src/layout/components/Navbar.vue

@@ -98,7 +98,7 @@ import { getTenantList } from '@/api/login';
 import { dynamicClear, dynamicTenant } from '@/api/system/tenant';
 import { TenantVO } from '@/api/types';
 import notice from './notice/index.vue';
-import router from "@/router";
+import router from '@/router';
 
 const appStore = useAppStore();
 const userStore = useUserStore();
@@ -170,7 +170,7 @@ const logout = async () => {
       query: {
         redirect: encodeURIComponent(router.currentRoute.value.fullPath || '/')
       }
-    })
+    });
   });
 };
 

+ 1 - 1
src/layout/index.vue

@@ -27,7 +27,7 @@ import { AppMain, Navbar, Settings, TagsView } from './components';
 import useAppStore from '@/store/modules/app';
 import useSettingsStore from '@/store/modules/settings';
 import { initWebSocket } from '@/utils/websocket';
-import { initSSE } from "@/utils/sse";
+import { initSSE } from '@/utils/sse';
 
 const settingsStore = useSettingsStore();
 const theme = computed(() => settingsStore.theme);

+ 1 - 1
src/plugins/tab.ts

@@ -1,5 +1,5 @@
 import router from '@/router';
-import {RouteLocationMatched, RouteLocationNormalized, RouteLocationRaw} from 'vue-router';
+import { RouteLocationMatched, RouteLocationNormalized, RouteLocationRaw } from 'vue-router';
 import useTagsViewStore from '@/store/modules/tagsView';
 
 export default {

+ 9 - 9
src/store/modules/tagsView.ts

@@ -31,7 +31,7 @@ export const useTagsViewStore = defineStore('tagsView', () => {
   const delIframeView = (view: RouteLocationNormalized): Promise<RouteLocationNormalized[]> => {
     return new Promise((resolve) => {
       iframeViews.value = iframeViews.value.filter((item: RouteLocationNormalized) => item.path !== view.path);
-      resolve([...iframeViews.value as RouteLocationNormalized[]]);
+      resolve([...(iframeViews.value as RouteLocationNormalized[])]);
     });
   };
   const addVisitedView = (view: RouteLocationNormalized): void => {
@@ -54,7 +54,7 @@ export const useTagsViewStore = defineStore('tagsView', () => {
         delCachedView(view);
       }
       resolve({
-        visitedViews: [...visitedViews.value as RouteLocationNormalized[]],
+        visitedViews: [...(visitedViews.value as RouteLocationNormalized[])],
         cachedViews: [...cachedViews.value]
       });
     });
@@ -68,7 +68,7 @@ export const useTagsViewStore = defineStore('tagsView', () => {
           break;
         }
       }
-      resolve([...visitedViews.value as RouteLocationNormalized[]]);
+      resolve([...(visitedViews.value as RouteLocationNormalized[])]);
     });
   };
   const delCachedView = (view?: RouteLocationNormalized): Promise<string[]> => {
@@ -92,7 +92,7 @@ export const useTagsViewStore = defineStore('tagsView', () => {
       delOthersVisitedViews(view);
       delOthersCachedViews(view);
       resolve({
-        visitedViews: [...visitedViews.value as RouteLocationNormalized[]],
+        visitedViews: [...(visitedViews.value as RouteLocationNormalized[])],
         cachedViews: [...cachedViews.value]
       });
     });
@@ -103,7 +103,7 @@ export const useTagsViewStore = defineStore('tagsView', () => {
       visitedViews.value = visitedViews.value.filter((v: RouteLocationNormalized) => {
         return v.meta?.affix || v.path === view.path;
       });
-      resolve([...visitedViews.value as RouteLocationNormalized[]]);
+      resolve([...(visitedViews.value as RouteLocationNormalized[])]);
     });
   };
   const delOthersCachedViews = (view: RouteLocationNormalized): Promise<string[]> => {
@@ -124,7 +124,7 @@ export const useTagsViewStore = defineStore('tagsView', () => {
       delAllVisitedViews();
       delAllCachedViews();
       resolve({
-        visitedViews: [...visitedViews.value as RouteLocationNormalized[]],
+        visitedViews: [...(visitedViews.value as RouteLocationNormalized[])],
         cachedViews: [...cachedViews.value]
       });
     });
@@ -132,7 +132,7 @@ export const useTagsViewStore = defineStore('tagsView', () => {
   const delAllVisitedViews = (): Promise<RouteLocationNormalized[]> => {
     return new Promise((resolve) => {
       visitedViews.value = visitedViews.value.filter((tag: RouteLocationNormalized) => tag.meta?.affix);
-      resolve([...visitedViews.value as RouteLocationNormalized[]]);
+      resolve([...(visitedViews.value as RouteLocationNormalized[])]);
     });
   };
 
@@ -167,7 +167,7 @@ export const useTagsViewStore = defineStore('tagsView', () => {
         }
         return false;
       });
-      resolve([...visitedViews.value as RouteLocationNormalized[]]);
+      resolve([...(visitedViews.value as RouteLocationNormalized[])]);
     });
   };
   const delLeftTags = (view: RouteLocationNormalized): Promise<RouteLocationNormalized[]> => {
@@ -186,7 +186,7 @@ export const useTagsViewStore = defineStore('tagsView', () => {
         }
         return false;
       });
-      resolve([...visitedViews.value as RouteLocationNormalized[]]);
+      resolve([...(visitedViews.value as RouteLocationNormalized[])]);
     });
   };
 

+ 1 - 1
src/utils/request.ts

@@ -10,7 +10,7 @@ import FileSaver from 'file-saver';
 import { getLanguage } from '@/lang';
 import { encryptBase64, encryptWithAes, generateAesKey, decryptWithAes, decryptBase64 } from '@/utils/crypto';
 import { encrypt, decrypt } from '@/utils/jsencrypt';
-import router from "@/router";
+import router from '@/router';
 
 const encryptHeader = 'encrypt-key';
 let downloadLoadingInstance: LoadingInstance;

+ 1 - 4
src/utils/sse.ts

@@ -9,10 +9,7 @@ export const initSSE = (url: any) => {
   }
 
   url = url + '?Authorization=Bearer ' + getToken() + '&clientid=' + import.meta.env.VITE_APP_CLIENT_ID;
-  const {
-    data,
-    error
-  } = useEventSource(url, [], {
+  const { data, error } = useEventSource(url, [], {
     autoReconnect: {
       retries: 10,
       delay: 3000,

+ 1 - 1
src/views/demo/demo/index.vue

@@ -45,7 +45,7 @@
           <el-col :span="1.5">
             <el-button v-hasPermi="['demo:demo:export']" type="warning" plain icon="Download" @click="handleExport">导出</el-button>
           </el-col>
-          <right-toolbar v-model:showSearch="showSearch" @query-table="getList"></right-toolbar>
+          <right-toolbar v-model:show-search="showSearch" @query-table="getList"></right-toolbar>
         </el-row>
       </template>
 

+ 1 - 1
src/views/demo/tree/index.vue

@@ -25,7 +25,7 @@
           <el-col :span="1.5">
             <el-button type="info" plain icon="Sort" @click="handleToggleExpandAll">展开/折叠</el-button>
           </el-col>
-          <right-toolbar v-model:showSearch="showSearch" @query-table="getList"></right-toolbar>
+          <right-toolbar v-model:show-search="showSearch" @query-table="getList"></right-toolbar>
         </el-row>
       </template>
       <el-table

+ 1 - 1
src/views/monitor/logininfor/index.vue

@@ -54,7 +54,7 @@
           <el-col :span="1.5">
             <el-button v-hasPermi="['monitor:logininfor:export']" type="warning" plain icon="Download" @click="handleExport">导出</el-button>
           </el-col>
-          <right-toolbar v-model:showSearch="showSearch" @query-table="getList"></right-toolbar>
+          <right-toolbar v-model:show-search="showSearch" @query-table="getList"></right-toolbar>
         </el-row>
       </template>
 

+ 1 - 1
src/views/monitor/operlog/index.vue

@@ -57,7 +57,7 @@
           <el-col :span="1.5">
             <el-button v-hasPermi="['monitor:operlog:export']" type="warning" plain icon="Download" @click="handleExport">导出</el-button>
           </el-col>
-          <right-toolbar v-model:showSearch="showSearch" @query-table="getList"></right-toolbar>
+          <right-toolbar v-model:show-search="showSearch" @query-table="getList"></right-toolbar>
         </el-row>
       </template>
 

+ 1 - 1
src/views/system/client/index.vue

@@ -41,7 +41,7 @@
           <el-col :span="1.5">
             <el-button v-hasPermi="['system:client:export']" type="warning" plain icon="Download" @click="handleExport">导出</el-button>
           </el-col>
-          <right-toolbar v-model:showSearch="showSearch" @query-table="getList"></right-toolbar>
+          <right-toolbar v-model:show-search="showSearch" @query-table="getList"></right-toolbar>
         </el-row>
       </template>
 

+ 1 - 1
src/views/system/config/index.vue

@@ -56,7 +56,7 @@
           <el-col :span="1.5">
             <el-button v-hasPermi="['system:config:remove']" type="danger" plain icon="Refresh" @click="handleRefreshCache">刷新缓存</el-button>
           </el-col>
-          <right-toolbar v-model:showSearch="showSearch" @query-table="getList"></right-toolbar>
+          <right-toolbar v-model:show-search="showSearch" @query-table="getList"></right-toolbar>
         </el-row>
       </template>
 

+ 1 - 1
src/views/system/dept/index.vue

@@ -33,7 +33,7 @@
           <el-col :span="1.5">
             <el-button type="info" plain icon="Sort" @click="handleToggleExpandAll">展开/折叠</el-button>
           </el-col>
-          <right-toolbar v-model:showSearch="showSearch" @query-table="getList"></right-toolbar>
+          <right-toolbar v-model:show-search="showSearch" @query-table="getList"></right-toolbar>
         </el-row>
       </template>
 

+ 1 - 1
src/views/system/dict/data.vue

@@ -40,7 +40,7 @@
           <el-col :span="1.5">
             <el-button type="warning" plain icon="Close" @click="handleClose">关闭</el-button>
           </el-col>
-          <right-toolbar v-model:showSearch="showSearch" @query-table="getList"></right-toolbar>
+          <right-toolbar v-model:show-search="showSearch" @query-table="getList"></right-toolbar>
         </el-row>
       </template>
 

+ 1 - 2
src/views/system/dict/index.vue

@@ -49,7 +49,7 @@
           <el-col :span="1.5">
             <el-button v-hasPermi="['system:dict:remove']" type="danger" plain icon="Refresh" @click="handleRefreshCache">刷新缓存</el-button>
           </el-col>
-          <right-toolbar v-model:showSearch="showSearch" @query-table="getList"></right-toolbar>
+          <right-toolbar v-model:show-search="showSearch" @query-table="getList"></right-toolbar>
         </el-row>
       </template>
 
@@ -240,7 +240,6 @@ const handleRefreshCache = async () => {
   useDictStore().cleanDict();
 };
 
-
 onMounted(() => {
   getList();
 });

+ 1 - 1
src/views/system/menu/index.vue

@@ -30,7 +30,7 @@
           <el-col :span="1.5">
             <el-button type="info" plain icon="Sort" @click="handleToggleExpandAll">展开/折叠</el-button>
           </el-col>
-          <right-toolbar v-model:showSearch="showSearch" @query-table="getList"></right-toolbar>
+          <right-toolbar v-model:show-search="showSearch" @query-table="getList"></right-toolbar>
         </el-row>
       </template>
 

+ 1 - 1
src/views/system/notice/index.vue

@@ -40,7 +40,7 @@
               删除
             </el-button>
           </el-col>
-          <right-toolbar v-model:showSearch="showSearch" @query-table="getList"></right-toolbar>
+          <right-toolbar v-model:show-search="showSearch" @query-table="getList"></right-toolbar>
         </el-row>
       </template>
 

+ 1 - 1
src/views/system/oss/config.vue

@@ -41,7 +41,7 @@
               删除
             </el-button>
           </el-col>
-          <right-toolbar v-model:showSearch="showSearch" @query-table="getList"></right-toolbar>
+          <right-toolbar v-model:show-search="showSearch" @query-table="getList"></right-toolbar>
         </el-row>
       </template>
 

+ 1 - 1
src/views/system/oss/index.vue

@@ -62,7 +62,7 @@
           <el-col :span="1.5">
             <el-button v-hasPermi="['system:ossConfig:list']" type="info" plain icon="Operation" @click="handleOssConfig">配置管理</el-button>
           </el-col>
-          <right-toolbar v-model:showSearch="showSearch" @query-table="getList"></right-toolbar>
+          <right-toolbar v-model:show-search="showSearch" @query-table="getList"></right-toolbar>
         </el-row>
       </template>
 

+ 1 - 1
src/views/system/post/index.vue

@@ -81,7 +81,7 @@
               <el-col :span="1.5">
                 <el-button v-hasPermi="['system:post:export']" type="warning" plain icon="Download" @click="handleExport">导出</el-button>
               </el-col>
-              <right-toolbar v-model:showSearch="showSearch" @query-table="getList"></right-toolbar>
+              <right-toolbar v-model:show-search="showSearch" @query-table="getList"></right-toolbar>
             </el-row>
           </template>
           <el-table v-loading="loading" :data="postList" @selection-change="handleSelectionChange">

+ 1 - 1
src/views/system/role/authUser.vue

@@ -30,7 +30,7 @@
           <el-col :span="1.5">
             <el-button type="warning" plain icon="Close" @click="handleClose">关闭</el-button>
           </el-col>
-          <right-toolbar v-model:showSearch="showSearch" :search="true" @query-table="getList"></right-toolbar>
+          <right-toolbar v-model:show-search="showSearch" :search="true" @query-table="getList"></right-toolbar>
         </el-row>
       </template>
       <el-table v-loading="loading" :data="userList" @selection-change="handleSelectionChange">

+ 1 - 1
src/views/system/role/index.vue

@@ -51,7 +51,7 @@
           <el-col :span="1.5">
             <el-button v-hasPermi="['system:role:export']" type="warning" plain icon="Download" @click="handleExport">导出</el-button>
           </el-col>
-          <right-toolbar v-model:showSearch="showSearch" @query-table="getList"></right-toolbar>
+          <right-toolbar v-model:show-search="showSearch" @query-table="getList"></right-toolbar>
         </el-row>
       </template>
 

+ 11 - 2
src/views/system/tenant/index.vue

@@ -47,7 +47,7 @@
           <el-col :span="1.5">
             <el-button v-if="userId === 1" type="success" plain icon="Refresh" @click="handleSyncTenantDict">同步租户字典</el-button>
           </el-col>
-          <right-toolbar v-model:showSearch="showSearch" @query-table="getList"></right-toolbar>
+          <right-toolbar v-model:show-search="showSearch" @query-table="getList"></right-toolbar>
         </el-row>
       </template>
 
@@ -144,7 +144,16 @@
 </template>
 
 <script setup name="Tenant" lang="ts">
-import { listTenant, getTenant, delTenant, addTenant, updateTenant, changeTenantStatus, syncTenantPackage, syncTenantDict } from '@/api/system/tenant';
+import {
+  listTenant,
+  getTenant,
+  delTenant,
+  addTenant,
+  updateTenant,
+  changeTenantStatus,
+  syncTenantPackage,
+  syncTenantDict
+} from '@/api/system/tenant';
 import { selectTenantPackage } from '@/api/system/tenantPackage';
 import useUserStore from '@/store/modules/user';
 import { TenantForm, TenantQuery, TenantVO } from '@/api/system/tenant/types';

+ 1 - 1
src/views/system/tenantPackage/index.vue

@@ -35,7 +35,7 @@
           <el-col :span="1.5">
             <el-button v-hasPermi="['system:tenantPackage:export']" type="warning" plain icon="Download" @click="handleExport">导出 </el-button>
           </el-col>
-          <right-toolbar v-model:showSearch="showSearch" @query-table="getList"></right-toolbar>
+          <right-toolbar v-model:show-search="showSearch" @query-table="getList"></right-toolbar>
         </el-row>
       </template>
 

+ 1 - 1
src/views/system/user/authRole.vue

@@ -80,7 +80,7 @@ const tableRef = ref<ElTableInstance>();
 
 /** 单击选中行数据 */
 const clickRow = (row: RoleVO) => {
-  row.flag = !row.flag
+  row.flag = !row.flag;
   tableRef.value?.toggleRowSelection(row, row.flag);
 };
 /** 多选框选中数据 */

+ 1 - 1
src/views/system/user/index.vue

@@ -87,7 +87,7 @@
                   </template>
                 </el-dropdown>
               </el-col>
-              <right-toolbar v-model:showSearch="showSearch" :columns="columns" :search="true" @query-table="getList"></right-toolbar>
+              <right-toolbar v-model:show-search="showSearch" :columns="columns" :search="true" @query-table="getList"></right-toolbar>
             </el-row>
           </template>
 

+ 1 - 1
src/views/tool/gen/index.vue

@@ -52,7 +52,7 @@
               删除
             </el-button>
           </el-col>
-          <right-toolbar v-model:showSearch="showSearch" @query-table="getList"></right-toolbar>
+          <right-toolbar v-model:show-search="showSearch" @query-table="getList"></right-toolbar>
         </el-row>
       </template>
 

+ 1 - 1
src/views/workflow/category/index.vue

@@ -26,7 +26,7 @@
           <el-col :span="1.5">
             <el-button type="info" plain icon="Sort" @click="handleToggleExpandAll">展开/折叠</el-button>
           </el-col>
-          <right-toolbar v-model:showSearch="showSearch" @query-table="getList"></right-toolbar>
+          <right-toolbar v-model:show-search="showSearch" @query-table="getList"></right-toolbar>
         </el-row>
       </template>
       <el-table

+ 1 - 1
src/views/workflow/formManage/index.vue

@@ -33,7 +33,7 @@
           <el-col :span="1.5">
             <el-button v-hasPermi="['workflow:formManage:export']" type="warning" plain icon="Download" @click="handleExport">导出</el-button>
           </el-col>
-          <right-toolbar v-model:showSearch="showSearch" @query-table="getList"></right-toolbar>
+          <right-toolbar v-model:show-search="showSearch" @query-table="getList"></right-toolbar>
         </el-row>
       </template>
 

+ 1 - 1
src/views/workflow/leave/index.vue

@@ -27,7 +27,7 @@
           <el-col :span="1.5">
             <el-button v-hasPermi="['workflow:leave:export']" type="warning" plain icon="Download" @click="handleExport">导出</el-button>
           </el-col>
-          <right-toolbar v-model:showSearch="showSearch" @query-table="getList"></right-toolbar>
+          <right-toolbar v-model:show-search="showSearch" @query-table="getList"></right-toolbar>
         </el-row>
       </template>
 

+ 2 - 2
src/views/workflow/leave/leaveEdit.vue

@@ -192,8 +192,8 @@ const handleStartWorkFlow = async (data: LeaveVO) => {
     taskVariables.value = {
       entity: data,
       leaveDays: data.leaveDays,
-      userList: ["1", "3"],
-      userList2: ["1", "3"]
+      userList: ['1', '3'],
+      userList2: ['1', '3']
     };
     submitFormData.value.variables = taskVariables.value;
     const resp = await startWorkFlow(submitFormData.value);

+ 1 - 1
src/views/workflow/model/index.vue

@@ -53,7 +53,7 @@
               <el-col :span="1.5">
                 <el-button type="primary" plain :disabled="multiple" icon="Download" @click="clickExportZip()">导出</el-button>
               </el-col>
-              <right-toolbar v-model:showSearch="showSearch" @query-table="getList"></right-toolbar>
+              <right-toolbar v-model:show-search="showSearch" @query-table="getList"></right-toolbar>
             </el-row>
           </template>
 

+ 1 - 1
src/views/workflow/processDefinition/index.vue

@@ -47,7 +47,7 @@
               <el-col :span="1.5">
                 <el-button type="primary" icon="UploadFilled" @click="uploadDialog.visible = true">部署流程文件</el-button>
               </el-col>
-              <right-toolbar v-model:showSearch="showSearch" @query-table="getList"></right-toolbar>
+              <right-toolbar v-model:show-search="showSearch" @query-table="getList"></right-toolbar>
             </el-row>
           </template>
 

+ 1 - 1
src/views/workflow/processInstance/index.vue

@@ -52,7 +52,7 @@
               <el-col :span="1.5">
                 <el-button type="danger" plain icon="Delete" :disabled="multiple" @click="handleDelete">删除</el-button>
               </el-col>
-              <right-toolbar v-model:showSearch="showSearch" @query-table="handleQuery"></right-toolbar>
+              <right-toolbar v-model:show-search="showSearch" @query-table="handleQuery"></right-toolbar>
             </el-row>
           </template>
 

+ 1 - 1
src/views/workflow/task/allTaskWaiting.vue

@@ -35,7 +35,7 @@
           <el-col :span="1.5">
             <el-button type="primary" plain icon="Edit" :disabled="multiple" @click="handleUpdate">修改办理人</el-button>
           </el-col>
-          <right-toolbar v-model:showSearch="showSearch" @query-table="handleQuery"></right-toolbar>
+          <right-toolbar v-model:show-search="showSearch" @query-table="handleQuery"></right-toolbar>
         </el-row>
       </template>
 

+ 1 - 1
src/views/workflow/task/myDocument.vue

@@ -38,7 +38,7 @@
         <el-card shadow="hover">
           <template #header>
             <el-row :gutter="10" class="mb8">
-              <right-toolbar v-model:showSearch="showSearch" @query-table="handleQuery"></right-toolbar>
+              <right-toolbar v-model:show-search="showSearch" @query-table="handleQuery"></right-toolbar>
             </el-row>
           </template>
 

+ 1 - 1
src/views/workflow/task/taskCopyList.vue

@@ -24,7 +24,7 @@
     <el-card shadow="hover">
       <template #header>
         <el-row :gutter="10" class="mb8">
-          <right-toolbar v-model:showSearch="showSearch" @query-table="handleQuery"></right-toolbar>
+          <right-toolbar v-model:show-search="showSearch" @query-table="handleQuery"></right-toolbar>
         </el-row>
       </template>
 

+ 1 - 1
src/views/workflow/task/taskFinish.vue

@@ -24,7 +24,7 @@
     <el-card shadow="hover">
       <template #header>
         <el-row :gutter="10" class="mb8">
-          <right-toolbar v-model:showSearch="showSearch" @query-table="handleQuery"></right-toolbar>
+          <right-toolbar v-model:show-search="showSearch" @query-table="handleQuery"></right-toolbar>
         </el-row>
       </template>
 

+ 1 - 1
src/views/workflow/task/taskWaiting.vue

@@ -24,7 +24,7 @@
     <el-card shadow="hover">
       <template #header>
         <el-row :gutter="10" class="mb8">
-          <right-toolbar v-model:showSearch="showSearch" @query-table="handleQuery"></right-toolbar>
+          <right-toolbar v-model:show-search="showSearch" @query-table="handleQuery"></right-toolbar>
         </el-row>
       </template>
 

+ 1 - 1
tsconfig.json

@@ -2,7 +2,7 @@
   "compilerOptions": {
     "target": "esnext",
     "module": "esnext",
-//    "useDefineForClassFields": true,
+    //    "useDefineForClassFields": true,
     "moduleResolution": "bundler",
     "strict": true,
     "jsx": "preserve",