From 3c27c188890b96fe2f96c8f8008e48c637ec6cc7 Mon Sep 17 00:00:00 2001
From: gssong <1742057357@qq.com>
Date: 星期六, 09 三月 2024 13:41:20 +0800
Subject: [PATCH] add 添加查看流程变量
---
src/types/module.d.ts | 29 ++++++++++++++++++++---------
1 files changed, 20 insertions(+), 9 deletions(-)
diff --git a/src/types/module.d.ts b/src/types/module.d.ts
index 0e0490e..984df9f 100644
--- a/src/types/module.d.ts
+++ b/src/types/module.d.ts
@@ -1,18 +1,24 @@
-import type modal from '@/plugins/modal';
-import type tab from '@/plugins/tab';
-import type download from '@/plugins/download';
-import type animate from '@/animate';
-import type { useDict } from '@/utils/dict';
-import type { addDateRange, handleTree, selectDictLabel, selectDictLabels, parseTime } from '@/utils/ruoyi';
-import type { getConfigKey, updateConfigByKey } from '@/api/system/config';
-import type { download as rd } from '@/utils/request';
+import modal from '@/plugins/modal';
+import tab from '@/plugins/tab';
+import download from '@/plugins/download';
+import auth from '@/plugins/auth';
+import cache from '@/plugins/cache';
+import animate from '@/animate';
+import { useDict } from '@/utils/dict';
+import { handleTree, addDateRange, selectDictLabel, selectDictLabels, parseTime } from '@/utils/ruoyi';
+import { getConfigKey, updateConfigByKey } from '@/api/system/config';
+import { download as rd } from '@/utils/request';
-declare module '@vue/runtime-core' {
+export {};
+
+declare module 'vue' {
interface ComponentCustomProperties {
// 鍏ㄥ眬鏂规硶澹版槑
$modal: typeof modal;
$tab: typeof tab;
$download: typeof download;
+ $auth: typeof auth;
+ $cache: typeof cache;
animate: typeof animate;
useDict: typeof useDict;
@@ -26,3 +32,8 @@
parseTime: typeof parseTime;
}
}
+
+declare module 'vform3-builds' {
+ const content: any;
+ export = content;
+}
--
Gitblit v1.9.3