@partex/one-core 2.0.32 → 2.0.34
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.
|
@@ -29,6 +29,7 @@ declare const _default: DefineComponent<{
|
|
|
29
29
|
};
|
|
30
30
|
}, {
|
|
31
31
|
userStore: {
|
|
32
|
+
[x: string]: any;
|
|
32
33
|
ncFlg: 0 | 1;
|
|
33
34
|
systemType: 0 | 1 | 2;
|
|
34
35
|
platform_tdm: boolean;
|
|
@@ -59,6 +60,7 @@ declare const _default: DefineComponent<{
|
|
|
59
60
|
tdm_menu_authorization: string[];
|
|
60
61
|
qms_menu_authorization: string[];
|
|
61
62
|
maintain_menu_authorization: string[];
|
|
63
|
+
order_menu_authorization: string[];
|
|
62
64
|
info: {
|
|
63
65
|
type: 0 | 1 | 2 | 3 | 4;
|
|
64
66
|
id: string | string[];
|
|
@@ -6,6 +6,7 @@ export interface IUserInfo {
|
|
|
6
6
|
theme: 'light' | 'dark';
|
|
7
7
|
}
|
|
8
8
|
export interface IUserModel {
|
|
9
|
+
[key: string]: any;
|
|
9
10
|
factoryId?: string;
|
|
10
11
|
tenantLoginCode?: string;
|
|
11
12
|
userId?: string;
|
|
@@ -27,6 +28,7 @@ export interface IUserModel {
|
|
|
27
28
|
tdm_menu_authorization: string[];
|
|
28
29
|
qms_menu_authorization: string[];
|
|
29
30
|
maintain_menu_authorization: string[];
|
|
31
|
+
order_menu_authorization: string[];
|
|
30
32
|
info: IUserInfo;
|
|
31
33
|
endTime: number;
|
|
32
34
|
tenantStatus: 0 | 1 | 2;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import type { IUserTenant } from './interface';
|
|
2
2
|
export declare const userStore: {
|
|
3
|
+
[x: string]: any;
|
|
3
4
|
ncFlg: 0 | 1;
|
|
4
5
|
systemType: 0 | 1 | 2;
|
|
5
6
|
platform_tdm: boolean;
|
|
@@ -30,6 +31,7 @@ export declare const userStore: {
|
|
|
30
31
|
tdm_menu_authorization: string[];
|
|
31
32
|
qms_menu_authorization: string[];
|
|
32
33
|
maintain_menu_authorization: string[];
|
|
34
|
+
order_menu_authorization: string[];
|
|
33
35
|
info: {
|
|
34
36
|
type: 0 | 1 | 2 | 3 | 4;
|
|
35
37
|
id: string | string[];
|