sun-biz 0.0.3-beta.4 → 0.0.3-beta.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/components/index.js
CHANGED
|
@@ -618,6 +618,7 @@ const DbgridTableConfig_exports_ = /*#__PURE__*/ (0, exportHelper["default"])(Db
|
|
|
618
618
|
/**
|
|
619
619
|
* 是否为 sass 模式
|
|
620
620
|
*/ MAIN_APP_CONFIG["IS_SASS_MODE"] = "isSassMode";
|
|
621
|
+
/** 是否使用本地打印 */ MAIN_APP_CONFIG["IS_LOCAL_PRINT"] = "isLocalPrint";
|
|
621
622
|
/**用户信息 */ MAIN_APP_CONFIG["USER_INFO"] = "userInfo";
|
|
622
623
|
/** 用户偏好 */ MAIN_APP_CONFIG["PREFERENCE_LIST"] = "preferenceList";
|
|
623
624
|
return MAIN_APP_CONFIG;
|
package/dist/hooks/index.js
CHANGED
|
@@ -356,6 +356,7 @@ function useRequest_useRequest(service, options, plugins) {
|
|
|
356
356
|
/**
|
|
357
357
|
* 是否为 sass 模式
|
|
358
358
|
*/ MAIN_APP_CONFIG["IS_SASS_MODE"] = "isSassMode";
|
|
359
|
+
/** 是否使用本地打印 */ MAIN_APP_CONFIG["IS_LOCAL_PRINT"] = "isLocalPrint";
|
|
359
360
|
/**用户信息 */ MAIN_APP_CONFIG["USER_INFO"] = "userInfo";
|
|
360
361
|
/** 用户偏好 */ MAIN_APP_CONFIG["PREFERENCE_LIST"] = "preferenceList";
|
|
361
362
|
return MAIN_APP_CONFIG;
|
|
@@ -15,6 +15,7 @@ export type UserInfo = {
|
|
|
15
15
|
userNo: string;
|
|
16
16
|
userId: string;
|
|
17
17
|
userName: string;
|
|
18
|
+
adminFlag: 0 | 1;
|
|
18
19
|
};
|
|
19
20
|
export type PreferenceData = {
|
|
20
21
|
preferId?: string;
|
|
@@ -29,12 +30,14 @@ export interface AppConfigType {
|
|
|
29
30
|
* 系统菜单ID
|
|
30
31
|
*/
|
|
31
32
|
menuId: string;
|
|
32
|
-
|
|
33
|
+
/**>
|
|
33
34
|
* 是否为云环境
|
|
34
35
|
*/
|
|
35
36
|
isCloudEnv: boolean;
|
|
36
37
|
/** 是否为sass模式 */
|
|
37
38
|
isSassMode: boolean;
|
|
39
|
+
/** 是否使用本地打印 */
|
|
40
|
+
isLocalPrint: boolean;
|
|
38
41
|
/**
|
|
39
42
|
* 当前组织信息
|
|
40
43
|
*/
|
package/dist/index.js
CHANGED
|
@@ -619,6 +619,7 @@ const DbgridTableConfig_exports_ = /*#__PURE__*/ (0, exportHelper["default"])(Db
|
|
|
619
619
|
/**
|
|
620
620
|
* 是否为 sass 模式
|
|
621
621
|
*/ MAIN_APP_CONFIG["IS_SASS_MODE"] = "isSassMode";
|
|
622
|
+
/** 是否使用本地打印 */ MAIN_APP_CONFIG["IS_LOCAL_PRINT"] = "isLocalPrint";
|
|
622
623
|
/**用户信息 */ MAIN_APP_CONFIG["USER_INFO"] = "userInfo";
|
|
623
624
|
/** 用户偏好 */ MAIN_APP_CONFIG["PREFERENCE_LIST"] = "preferenceList";
|
|
624
625
|
return MAIN_APP_CONFIG;
|