jmash-core-mp 0.1.21 → 0.1.22

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.
Files changed (150) hide show
  1. package/.editorconfig +9 -9
  2. package/README.md +60 -60
  3. package/babel.config.json +34 -34
  4. package/eslint.config.mjs +7 -7
  5. package/lib/api/auth/index.d.ts +21 -21
  6. package/lib/api/auth/index.js +199 -199
  7. package/lib/api/auth/types.d.ts +86 -86
  8. package/lib/api/auth/types.js +9 -9
  9. package/lib/api/cms/index.d.ts +20 -20
  10. package/lib/api/cms/index.js +161 -161
  11. package/lib/api/cms/types.d.ts +200 -200
  12. package/lib/api/cms/types.js +1 -1
  13. package/lib/api/constant.d.ts +5 -5
  14. package/lib/api/constant.js +6 -6
  15. package/lib/api/dict/index.d.ts +18 -18
  16. package/lib/api/dict/index.js +34 -34
  17. package/lib/api/dict/types.d.ts +28 -28
  18. package/lib/api/dict/types.js +1 -1
  19. package/lib/api/dicts.d.ts +18 -18
  20. package/lib/api/dicts.js +67 -67
  21. package/lib/api/files/index.d.ts +25 -25
  22. package/lib/api/files/index.js +135 -135
  23. package/lib/api/files/types.d.ts +38 -38
  24. package/lib/api/files/types.js +1 -1
  25. package/lib/api/index.d.ts +4 -4
  26. package/lib/api/index.js +6 -6
  27. package/lib/api/myorgan/types.d.ts +22 -22
  28. package/lib/api/myorgan/types.js +1 -1
  29. package/lib/api/region/index.d.ts +7 -7
  30. package/lib/api/region/index.js +19 -19
  31. package/lib/api/region/types.d.ts +19 -19
  32. package/lib/api/region/types.js +1 -1
  33. package/lib/api/storage/index.d.ts +10 -10
  34. package/lib/api/storage/index.js +43 -43
  35. package/lib/api/storage/types.d.ts +28 -28
  36. package/lib/api/storage/types.js +1 -1
  37. package/lib/api/types.d.ts +42 -42
  38. package/lib/api/types.js +1 -1
  39. package/lib/app.mpx.d.ts +1 -1
  40. package/lib/components/auth-user/jmash-update-user.mpx.d.ts +1 -1
  41. package/lib/components/auth-user/jmash-user.mpx.d.ts +1 -1
  42. package/lib/components/cms/jmash-cms-acticle-list.mpx.d.ts +1 -1
  43. package/lib/components/cms/jmash-cms-article-item.mpx.d.ts +1 -1
  44. package/lib/components/cms/jmash-cms-article-view.mpx.d.ts +1 -0
  45. package/lib/components/cms/jmash-cms-article.mpx.d.ts +1 -1
  46. package/lib/components/cms/jmash-cms-like.mpx.d.ts +1 -1
  47. package/lib/components/common/jmash-upload-picture.mpx.d.ts +1 -0
  48. package/lib/components/core/jmash-login.mpx.d.ts +1 -0
  49. package/lib/index.d.ts +21 -21
  50. package/lib/index.js +14 -14
  51. package/lib/packages/pages/cms/cms-article-list.mpx.d.ts +1 -1
  52. package/lib/pages/index.mpx.d.ts +1 -0
  53. package/lib/store/user.d.ts +31 -31
  54. package/lib/store/user.js +227 -227
  55. package/lib/utils/common.d.ts +35 -35
  56. package/lib/utils/common.js +166 -166
  57. package/lib/utils/config.d.ts +5 -5
  58. package/lib/utils/config.js +29 -29
  59. package/lib/utils/db.d.ts +21 -21
  60. package/lib/utils/db.js +84 -84
  61. package/lib/utils/grpc.d.ts +5 -5
  62. package/lib/utils/grpc.js +20 -20
  63. package/lib/utils/net.d.ts +7 -7
  64. package/lib/utils/net.js +15 -15
  65. package/lib/utils/request.d.ts +2 -2
  66. package/lib/utils/request.js +123 -123
  67. package/mpx.config.js +27 -27
  68. package/package.json +1 -1
  69. package/postcss.config.js +11 -11
  70. package/project.config.json +24 -24
  71. package/project.private.config.json +13 -13
  72. package/public/index.html +15 -15
  73. package/src/api/auth/index.ts +227 -227
  74. package/src/api/auth/types.ts +166 -166
  75. package/src/api/cms/index.ts +218 -218
  76. package/src/api/cms/types.ts +379 -379
  77. package/src/api/constant.ts +6 -6
  78. package/src/api/dict/index.ts +44 -44
  79. package/src/api/dict/types.ts +49 -49
  80. package/src/api/dicts.ts +72 -72
  81. package/src/api/files/index.ts +163 -163
  82. package/src/api/files/types.ts +67 -67
  83. package/src/api/index.ts +11 -11
  84. package/src/api/myorgan/types.ts +42 -42
  85. package/src/api/region/index.ts +23 -23
  86. package/src/api/region/types.ts +36 -36
  87. package/src/api/storage/index.ts +62 -62
  88. package/src/api/storage/types.ts +54 -54
  89. package/src/api/types.ts +72 -72
  90. package/src/app.mpx +71 -71
  91. package/src/components/auth-user/jmash-logout.mpx +91 -91
  92. package/src/components/auth-user/jmash-update-user.mpx +386 -386
  93. package/src/components/auth-user/jmash-update-user.web.mpx +366 -366
  94. package/src/components/auth-user/jmash-user.mpx +359 -359
  95. package/src/components/cms/jmash-cms-acticle-list.mpx +182 -182
  96. package/src/components/cms/jmash-cms-article-item.mpx +241 -241
  97. package/src/components/cms/jmash-cms-article-view.mpx +131 -131
  98. package/src/components/cms/jmash-cms-article.mpx +68 -68
  99. package/src/components/cms/jmash-cms-like.mpx +151 -151
  100. package/src/components/common/jmash-avatar-edit.mpx +153 -153
  101. package/src/components/common/jmash-cascader-region.mpx +112 -112
  102. package/src/components/common/jmash-menu.mpx +129 -129
  103. package/src/components/common/jmash-none-data.mpx +82 -82
  104. package/src/components/common/jmash-pic-swiper.mpx +71 -71
  105. package/src/components/common/jmash-popup.mpx +137 -137
  106. package/src/components/common/jmash-search.mpx +126 -126
  107. package/src/components/common/jmash-single-btn.mpx +53 -53
  108. package/src/components/common/jmash-stepper.mpx +214 -214
  109. package/src/components/common/jmash-tab-bar.mpx +50 -50
  110. package/src/components/common/jmash-textarea.mpx +88 -88
  111. package/src/components/common/jmash-top-navigation.mpx +203 -203
  112. package/src/components/common/jmash-upload-picture.mpx +129 -126
  113. package/src/components/core/jmash-cms-protocol.mpx +66 -66
  114. package/src/components/core/jmash-login.ali.mpx +284 -284
  115. package/src/components/core/jmash-login.mpx +348 -348
  116. package/src/components/core/jmash-login.web.mpx +421 -421
  117. package/src/components/core/jmash-popup-login.ali.mpx +311 -311
  118. package/src/components/core/jmash-popup-login.mpx +415 -415
  119. package/src/components/core/jmash-popup-login.web.mpx +389 -389
  120. package/src/custom-tab-bar/index.mpx +10 -10
  121. package/src/global.d.ts +11 -11
  122. package/src/index.ts +71 -71
  123. package/src/packages/index.mpx +10 -10
  124. package/src/packages/pages/auth/cms-protocol.mpx +31 -31
  125. package/src/packages/pages/auth/login.mpx +59 -59
  126. package/src/packages/pages/auth/update-user.mpx +17 -17
  127. package/src/packages/pages/cms/cms-article-list.mpx +164 -164
  128. package/src/packages/pages/cms/cms-article.mpx +32 -32
  129. package/src/pages/basic-component.mpx +30 -30
  130. package/src/pages/half-home.mpx +58 -58
  131. package/src/pages/home.mpx +52 -52
  132. package/src/pages/home2.mpx +47 -47
  133. package/src/pages/index.mpx +13 -3
  134. package/src/pages/tabbar/home.mpx +77 -77
  135. package/src/pages/tabbar/my.mpx +80 -80
  136. package/src/store/user.ts +270 -270
  137. package/src/styles/index.scss +20 -20
  138. package/src/styles/vars.scss +27 -27
  139. package/src/utils/common.ts +179 -179
  140. package/src/utils/config.ts +35 -35
  141. package/src/utils/db.ts +100 -100
  142. package/src/utils/grpc.ts +21 -21
  143. package/src/utils/net.ts +18 -18
  144. package/src/utils/request.ts +134 -134
  145. package/static/ali/mini.project.json +4 -4
  146. package/static/dd/project.config.json +15 -15
  147. package/static/swan/project.swan.json +14 -14
  148. package/static/tt/project.config.json +11 -11
  149. package/static/wx/project.config.json +40 -40
  150. package/uno.config.js +9 -9
@@ -1,166 +1,166 @@
1
- import mpx from "@mpxjs/core";
2
- // 获取不同手机的顶部/底部高度
3
- export const getHeight = () => {
4
- // 手机顶部电量等信息的高度+7 状态栏的高度+7
5
- let navigationPaddingHeight = 0;
6
- // 顶部整体高度(包括胶囊球高度)
7
- let topHeight = 0;
8
- // 手机底部的安全距离
9
- let bottomHeight = 0;
10
- // 胶囊球右边界到手机左侧的坐标-坐标信息以屏幕左上角为原点
11
- let MenuButtonRight = 0;
12
- // 胶囊球左边界到手机左侧的坐标-坐标信息以屏幕左上角为原点
13
- let MenuButtonLeft = 0;
14
- // 胶囊球上边界到手机顶部的坐标-坐标信息以屏幕左上角为原点
15
- let MenuButtonTop = 0;
16
- // 胶囊球下边界到手机顶部的坐标-坐标信息以屏幕左上角为原点
17
- let MenuButtonBottom = 0;
18
- // 胶囊球宽度
19
- let MenuButtonWidth = 0;
20
- // 胶囊球高度
21
- let MenuButtonHeight = 0;
22
- // 状态栏的高度
23
- let MenuButtonBounding = 0;
24
- // 屏幕宽度
25
- let screenWidth = 0;
26
- // 屏幕高度
27
- let screenHeight = 0;
28
- try {
29
- MenuButtonHeight = mpx.getMenuButtonBoundingClientRect().height
30
- ? mpx.getMenuButtonBoundingClientRect().height
31
- : 0;
32
- navigationPaddingHeight =
33
- mpx.getWindowInfo().statusBarHeight + 7
34
- ? mpx.getWindowInfo().statusBarHeight + 7
35
- : 0;
36
- topHeight = MenuButtonHeight + navigationPaddingHeight;
37
- bottomHeight =
38
- mpx.getWindowInfo().screenHeight - mpx.getWindowInfo().safeArea.bottom
39
- ? mpx.getWindowInfo().screenHeight - mpx.getWindowInfo().safeArea.bottom
40
- : 0;
41
- MenuButtonRight = mpx.getMenuButtonBoundingClientRect().right;
42
- MenuButtonLeft = mpx.getMenuButtonBoundingClientRect().left;
43
- MenuButtonTop = mpx.getMenuButtonBoundingClientRect().top;
44
- MenuButtonBottom = mpx.getMenuButtonBoundingClientRect().bottom;
45
- MenuButtonWidth = mpx.getMenuButtonBoundingClientRect().width;
46
- MenuButtonBounding = mpx.getWindowInfo().statusBarHeight;
47
- screenWidth = mpx.getWindowInfo().screenWidth;
48
- screenHeight = mpx.getWindowInfo().screenHeight;
49
- }
50
- catch (error) {
51
- console.log("getHeight", error);
52
- }
53
- /**
54
- * 判断手机型号如果没有底部横线的时候,添加的默认高度
55
- * @param height 本身计算的高度
56
- * @param stackingHeight 需要叠加的高度
57
- */
58
- function computeHeightFn(height, stackingHeight) {
59
- return height !== 0 ? height : height + stackingHeight;
60
- }
61
- /**
62
- * 原有基础上添加高度
63
- * @param height 本身计算的高度
64
- * @param addHeight 相加的高度
65
- */
66
- function addition(height, addHeight) {
67
- return height + addHeight;
68
- }
69
- return {
70
- navigationPaddingHeight,
71
- topHeight,
72
- bottomHeight,
73
- MenuButtonRight,
74
- MenuButtonLeft,
75
- MenuButtonTop,
76
- MenuButtonBottom,
77
- MenuButtonWidth,
78
- MenuButtonHeight,
79
- MenuButtonBounding,
80
- screenWidth,
81
- screenHeight,
82
- computeHeightFn,
83
- addition,
84
- };
85
- };
86
- /**
87
- * 格式化日期时间字符串
88
- * @param dateTimeString 日期时间字符串
89
- * @returns 格式化后的日期时间字符串
90
- */
91
- export const formatDateTime = (dateTimeString, format) => {
92
- const date = new Date(dateTimeString);
93
- // 如果日期无效(即日期为Invalid Date),则返回一个空字符串或默认值
94
- if (isNaN(date.getTime())) {
95
- return "";
96
- }
97
- const year = date.getFullYear();
98
- const month = ("0" + (date.getMonth() + 1)).slice(-2);
99
- const day = ("0" + date.getDate()).slice(-2);
100
- const hours = ("0" + date.getHours()).slice(-2);
101
- const minutes = ("0" + date.getMinutes()).slice(-2);
102
- const seconds = ("0" + date.getSeconds()).slice(-2);
103
- if (format === "YYYY-MM-DD HH:mm:ss") {
104
- return (year +
105
- "-" +
106
- month +
107
- "-" +
108
- day +
109
- " " +
110
- hours +
111
- ":" +
112
- minutes +
113
- ":" +
114
- seconds);
115
- }
116
- if (format === "YYYY-MM-DD HH:mm") {
117
- return year + "-" + month + "-" + day + " " + hours + ":" + minutes;
118
- }
119
- if (format === "YYYY-MM-DD") {
120
- return year + "-" + month + "-" + day;
121
- }
122
- if (format === "HH:mm:ss") {
123
- return hours + ":" + minutes + ":" + seconds;
124
- }
125
- if (format === "HH:mm") {
126
- return hours + ":" + minutes;
127
- }
128
- return "";
129
- };
130
- /**
131
- * 正则校验规则
132
- * @param {string} value 需要校验的值
133
- * @param {string} message 错误提示信息
134
- * @param {string} rules 正则校验规则
135
- */
136
- export const validateRules = (value, message, rules) => {
137
- if (value && !rules.test(value)) {
138
- // 显示错误提示
139
- mpx.showToast({
140
- title: message,
141
- icon: "none",
142
- duration: 2000,
143
- });
144
- return false;
145
- }
146
- return true;
147
- };
148
- /**
149
- * 校验必填项
150
- * @param {string} value 需要校验的值
151
- * @param {string} message 错误提示信息
152
- */
153
- export const validateRequired = (value, message) => {
154
- console.log(value, message);
155
- const valueStr = typeof value === "number" ? String(value) : value;
156
- if (!valueStr || valueStr.trim() === "") {
157
- // 显示错误提示
158
- mpx.showToast({
159
- title: message,
160
- icon: "none",
161
- duration: 2000,
162
- });
163
- return false;
164
- }
165
- return true;
166
- };
1
+ import mpx from "@mpxjs/core";
2
+ // 获取不同手机的顶部/底部高度
3
+ export const getHeight = () => {
4
+ // 手机顶部电量等信息的高度+7 状态栏的高度+7
5
+ let navigationPaddingHeight = 0;
6
+ // 顶部整体高度(包括胶囊球高度)
7
+ let topHeight = 0;
8
+ // 手机底部的安全距离
9
+ let bottomHeight = 0;
10
+ // 胶囊球右边界到手机左侧的坐标-坐标信息以屏幕左上角为原点
11
+ let MenuButtonRight = 0;
12
+ // 胶囊球左边界到手机左侧的坐标-坐标信息以屏幕左上角为原点
13
+ let MenuButtonLeft = 0;
14
+ // 胶囊球上边界到手机顶部的坐标-坐标信息以屏幕左上角为原点
15
+ let MenuButtonTop = 0;
16
+ // 胶囊球下边界到手机顶部的坐标-坐标信息以屏幕左上角为原点
17
+ let MenuButtonBottom = 0;
18
+ // 胶囊球宽度
19
+ let MenuButtonWidth = 0;
20
+ // 胶囊球高度
21
+ let MenuButtonHeight = 0;
22
+ // 状态栏的高度
23
+ let MenuButtonBounding = 0;
24
+ // 屏幕宽度
25
+ let screenWidth = 0;
26
+ // 屏幕高度
27
+ let screenHeight = 0;
28
+ try {
29
+ MenuButtonHeight = mpx.getMenuButtonBoundingClientRect().height
30
+ ? mpx.getMenuButtonBoundingClientRect().height
31
+ : 0;
32
+ navigationPaddingHeight =
33
+ mpx.getWindowInfo().statusBarHeight + 7
34
+ ? mpx.getWindowInfo().statusBarHeight + 7
35
+ : 0;
36
+ topHeight = MenuButtonHeight + navigationPaddingHeight;
37
+ bottomHeight =
38
+ mpx.getWindowInfo().screenHeight - mpx.getWindowInfo().safeArea.bottom
39
+ ? mpx.getWindowInfo().screenHeight - mpx.getWindowInfo().safeArea.bottom
40
+ : 0;
41
+ MenuButtonRight = mpx.getMenuButtonBoundingClientRect().right;
42
+ MenuButtonLeft = mpx.getMenuButtonBoundingClientRect().left;
43
+ MenuButtonTop = mpx.getMenuButtonBoundingClientRect().top;
44
+ MenuButtonBottom = mpx.getMenuButtonBoundingClientRect().bottom;
45
+ MenuButtonWidth = mpx.getMenuButtonBoundingClientRect().width;
46
+ MenuButtonBounding = mpx.getWindowInfo().statusBarHeight;
47
+ screenWidth = mpx.getWindowInfo().screenWidth;
48
+ screenHeight = mpx.getWindowInfo().screenHeight;
49
+ }
50
+ catch (error) {
51
+ console.log("getHeight", error);
52
+ }
53
+ /**
54
+ * 判断手机型号如果没有底部横线的时候,添加的默认高度
55
+ * @param height 本身计算的高度
56
+ * @param stackingHeight 需要叠加的高度
57
+ */
58
+ function computeHeightFn(height, stackingHeight) {
59
+ return height !== 0 ? height : height + stackingHeight;
60
+ }
61
+ /**
62
+ * 原有基础上添加高度
63
+ * @param height 本身计算的高度
64
+ * @param addHeight 相加的高度
65
+ */
66
+ function addition(height, addHeight) {
67
+ return height + addHeight;
68
+ }
69
+ return {
70
+ navigationPaddingHeight,
71
+ topHeight,
72
+ bottomHeight,
73
+ MenuButtonRight,
74
+ MenuButtonLeft,
75
+ MenuButtonTop,
76
+ MenuButtonBottom,
77
+ MenuButtonWidth,
78
+ MenuButtonHeight,
79
+ MenuButtonBounding,
80
+ screenWidth,
81
+ screenHeight,
82
+ computeHeightFn,
83
+ addition,
84
+ };
85
+ };
86
+ /**
87
+ * 格式化日期时间字符串
88
+ * @param dateTimeString 日期时间字符串
89
+ * @returns 格式化后的日期时间字符串
90
+ */
91
+ export const formatDateTime = (dateTimeString, format) => {
92
+ const date = new Date(dateTimeString);
93
+ // 如果日期无效(即日期为Invalid Date),则返回一个空字符串或默认值
94
+ if (isNaN(date.getTime())) {
95
+ return "";
96
+ }
97
+ const year = date.getFullYear();
98
+ const month = ("0" + (date.getMonth() + 1)).slice(-2);
99
+ const day = ("0" + date.getDate()).slice(-2);
100
+ const hours = ("0" + date.getHours()).slice(-2);
101
+ const minutes = ("0" + date.getMinutes()).slice(-2);
102
+ const seconds = ("0" + date.getSeconds()).slice(-2);
103
+ if (format === "YYYY-MM-DD HH:mm:ss") {
104
+ return (year +
105
+ "-" +
106
+ month +
107
+ "-" +
108
+ day +
109
+ " " +
110
+ hours +
111
+ ":" +
112
+ minutes +
113
+ ":" +
114
+ seconds);
115
+ }
116
+ if (format === "YYYY-MM-DD HH:mm") {
117
+ return year + "-" + month + "-" + day + " " + hours + ":" + minutes;
118
+ }
119
+ if (format === "YYYY-MM-DD") {
120
+ return year + "-" + month + "-" + day;
121
+ }
122
+ if (format === "HH:mm:ss") {
123
+ return hours + ":" + minutes + ":" + seconds;
124
+ }
125
+ if (format === "HH:mm") {
126
+ return hours + ":" + minutes;
127
+ }
128
+ return "";
129
+ };
130
+ /**
131
+ * 正则校验规则
132
+ * @param {string} value 需要校验的值
133
+ * @param {string} message 错误提示信息
134
+ * @param {string} rules 正则校验规则
135
+ */
136
+ export const validateRules = (value, message, rules) => {
137
+ if (value && !rules.test(value)) {
138
+ // 显示错误提示
139
+ mpx.showToast({
140
+ title: message,
141
+ icon: "none",
142
+ duration: 2000,
143
+ });
144
+ return false;
145
+ }
146
+ return true;
147
+ };
148
+ /**
149
+ * 校验必填项
150
+ * @param {string} value 需要校验的值
151
+ * @param {string} message 错误提示信息
152
+ */
153
+ export const validateRequired = (value, message) => {
154
+ console.log(value, message);
155
+ const valueStr = typeof value === "number" ? String(value) : value;
156
+ if (!valueStr || valueStr.trim() === "") {
157
+ // 显示错误提示
158
+ mpx.showToast({
159
+ title: message,
160
+ icon: "none",
161
+ duration: 2000,
162
+ });
163
+ return false;
164
+ }
165
+ return true;
166
+ };
@@ -1,5 +1,5 @@
1
- import { AppConfig } from "../api/types";
2
- declare const config: AppConfig;
3
- declare function setConfig(cfg: Partial<AppConfig>): void;
4
- declare function initConfig(config: Partial<AppConfig>, mode: string): Partial<AppConfig>;
5
- export { config, setConfig, initConfig };
1
+ import { AppConfig } from "../api/types";
2
+ declare const config: AppConfig;
3
+ declare function setConfig(cfg: Partial<AppConfig>): void;
4
+ declare function initConfig(config: Partial<AppConfig>, mode: string): Partial<AppConfig>;
5
+ export { config, setConfig, initConfig };
@@ -1,29 +1,29 @@
1
- import mpx from "@mpxjs/core";
2
- const defaultConfig = {
3
- name: "Jmash Core MPX",
4
- dev: true,
5
- testNewUser: false,
6
- tenant: "xyvcard",
7
- baseUrl: "https://mm.sooyie.cn",
8
- resourceUrl: "https://mm.sooyie.cn/v1/file/path/wxapp",
9
- appId: "",
10
- componentAppid: "wxe1b784ea80c01f40",
11
- wechatComponentAppId: "",
12
- wechatAppId: "",
13
- wechatBiz: "",
14
- siteId: "c0a28f0f-023a-420b-b4e8-0ce138ac8269",
15
- };
16
- const config = { ...defaultConfig };
17
- function setConfig(cfg) {
18
- Object.assign(config, cfg);
19
- }
20
- function initConfig(config, mode) {
21
- if (__mpx_mode__ !== "web") {
22
- // 只有运行时才能调用
23
- const accountInfo = mpx.getAccountInfoSync();
24
- // 微信
25
- config.appId = accountInfo.miniProgram.appId;
26
- }
27
- return config;
28
- }
29
- export { config, setConfig, initConfig };
1
+ import mpx from "@mpxjs/core";
2
+ const defaultConfig = {
3
+ name: "Jmash Core MPX",
4
+ dev: true,
5
+ testNewUser: false,
6
+ tenant: "xyvcard",
7
+ baseUrl: "https://mm.sooyie.cn",
8
+ resourceUrl: "https://mm.sooyie.cn/v1/file/path/wxapp",
9
+ appId: "",
10
+ componentAppid: "wxe1b784ea80c01f40",
11
+ wechatComponentAppId: "",
12
+ wechatAppId: "",
13
+ wechatBiz: "",
14
+ siteId: "c0a28f0f-023a-420b-b4e8-0ce138ac8269",
15
+ };
16
+ const config = { ...defaultConfig };
17
+ function setConfig(cfg) {
18
+ Object.assign(config, cfg);
19
+ }
20
+ function initConfig(config, mode) {
21
+ if (__mpx_mode__ !== "web") {
22
+ // 只有运行时才能调用
23
+ const accountInfo = mpx.getAccountInfoSync();
24
+ // 微信
25
+ config.appId = accountInfo.miniProgram.appId;
26
+ }
27
+ return config;
28
+ }
29
+ export { config, setConfig, initConfig };
package/lib/utils/db.d.ts CHANGED
@@ -1,21 +1,21 @@
1
- import type { TokenModel, UserInfo } from "../api/auth/types";
2
- declare class LocalStorage {
3
- getToken(): string;
4
- getUserTenant(): string;
5
- getOrganTenant(tenant: string): string;
6
- isTokenExpires(): boolean;
7
- getRefreshToken(): string;
8
- removeRefreshToken(): void;
9
- getTokenExpiresDate(): number;
10
- setToken(data: TokenModel): void;
11
- clearStorage(): void;
12
- getBearerToken(): string;
13
- getUserInfo(): any;
14
- setUserInfo(data: UserInfo): void;
15
- getRoleCodes(): any;
16
- setRoleCodes(codes: string[]): void;
17
- getPermCodes(): any;
18
- setPermCodes(codes: string[]): void;
19
- }
20
- declare const db: LocalStorage;
21
- export { db };
1
+ import type { TokenModel, UserInfo } from "../api/auth/types";
2
+ declare class LocalStorage {
3
+ getToken(): string;
4
+ getUserTenant(): string;
5
+ getOrganTenant(tenant: string): string;
6
+ isTokenExpires(): boolean;
7
+ getRefreshToken(): string;
8
+ removeRefreshToken(): void;
9
+ getTokenExpiresDate(): number;
10
+ setToken(data: TokenModel): void;
11
+ clearStorage(): void;
12
+ getBearerToken(): string;
13
+ getUserInfo(): any;
14
+ setUserInfo(data: UserInfo): void;
15
+ getRoleCodes(): any;
16
+ setRoleCodes(codes: string[]): void;
17
+ getPermCodes(): any;
18
+ setPermCodes(codes: string[]): void;
19
+ }
20
+ declare const db: LocalStorage;
21
+ export { db };
package/lib/utils/db.js CHANGED
@@ -1,84 +1,84 @@
1
- import mpx from "@mpxjs/core";
2
- // 本地存储
3
- class LocalStorage {
4
- // 获取token
5
- getToken() {
6
- return mpx.getStorageSync("token");
7
- }
8
- // 用户租户
9
- getUserTenant() {
10
- return this.getUserInfo().storage;
11
- }
12
- //获取组织租户
13
- getOrganTenant(tenant) {
14
- return mpx.getStorageSync("OrganTenant:" + tenant);
15
- }
16
- //是否Token过期.
17
- isTokenExpires() {
18
- const expiresDate = this.getTokenExpiresDate();
19
- if (this.getToken() && expiresDate) {
20
- const now = new Date().getTime();
21
- //提前30秒过期.
22
- return now + 30000 > expiresDate;
23
- }
24
- return true;
25
- }
26
- // 获取刷新token
27
- getRefreshToken() {
28
- return mpx.getStorageSync("refreshToken");
29
- }
30
- // 删除刷新token
31
- removeRefreshToken() {
32
- mpx.removeStorageSync("refreshToken");
33
- }
34
- // 获取Token 过期时间
35
- getTokenExpiresDate() {
36
- return mpx.getStorageSync("expiresDate");
37
- }
38
- // 设置token
39
- setToken(data) {
40
- mpx.setStorageSync("token", data.accessToken);
41
- mpx.setStorageSync("expiresIn", data.expiresIn);
42
- mpx.setStorageSync("refreshToken", data.refreshToken);
43
- const expiresDate = new Date().getTime() + data.expiresIn * 1000;
44
- mpx.setStorageSync("expiresDate", expiresDate);
45
- }
46
- // 清理本地缓存
47
- clearStorage() {
48
- mpx.clearStorage();
49
- }
50
- // 获取Bearer 格式请求Token
51
- getBearerToken() {
52
- const token = this.getToken();
53
- if (token) {
54
- return "Bearer " + token;
55
- }
56
- return "";
57
- }
58
- // 获取用户信息
59
- getUserInfo() {
60
- return mpx.getStorageSync("userInfo") || {};
61
- }
62
- // 设置用户信息
63
- setUserInfo(data) {
64
- mpx.setStorageSync("userInfo", data);
65
- }
66
- // 获取角色列表
67
- getRoleCodes() {
68
- return mpx.getStorageSync("roleCodes") || [];
69
- }
70
- // 设置角色列表
71
- setRoleCodes(codes) {
72
- mpx.setStorageSync("roleCodes", codes);
73
- }
74
- // 获取权限列表
75
- getPermCodes() {
76
- return mpx.getStorageSync("permCodes") || [];
77
- }
78
- // 设置权限列表
79
- setPermCodes(codes) {
80
- mpx.setStorageSync("permCodes", codes);
81
- }
82
- }
83
- const db = new LocalStorage();
84
- export { db };
1
+ import mpx from "@mpxjs/core";
2
+ // 本地存储
3
+ class LocalStorage {
4
+ // 获取token
5
+ getToken() {
6
+ return mpx.getStorageSync("token");
7
+ }
8
+ // 用户租户
9
+ getUserTenant() {
10
+ return this.getUserInfo().storage;
11
+ }
12
+ //获取组织租户
13
+ getOrganTenant(tenant) {
14
+ return mpx.getStorageSync("OrganTenant:" + tenant);
15
+ }
16
+ //是否Token过期.
17
+ isTokenExpires() {
18
+ const expiresDate = this.getTokenExpiresDate();
19
+ if (this.getToken() && expiresDate) {
20
+ const now = new Date().getTime();
21
+ //提前30秒过期.
22
+ return now + 30000 > expiresDate;
23
+ }
24
+ return true;
25
+ }
26
+ // 获取刷新token
27
+ getRefreshToken() {
28
+ return mpx.getStorageSync("refreshToken");
29
+ }
30
+ // 删除刷新token
31
+ removeRefreshToken() {
32
+ mpx.removeStorageSync("refreshToken");
33
+ }
34
+ // 获取Token 过期时间
35
+ getTokenExpiresDate() {
36
+ return mpx.getStorageSync("expiresDate");
37
+ }
38
+ // 设置token
39
+ setToken(data) {
40
+ mpx.setStorageSync("token", data.accessToken);
41
+ mpx.setStorageSync("expiresIn", data.expiresIn);
42
+ mpx.setStorageSync("refreshToken", data.refreshToken);
43
+ const expiresDate = new Date().getTime() + data.expiresIn * 1000;
44
+ mpx.setStorageSync("expiresDate", expiresDate);
45
+ }
46
+ // 清理本地缓存
47
+ clearStorage() {
48
+ mpx.clearStorage();
49
+ }
50
+ // 获取Bearer 格式请求Token
51
+ getBearerToken() {
52
+ const token = this.getToken();
53
+ if (token) {
54
+ return "Bearer " + token;
55
+ }
56
+ return "";
57
+ }
58
+ // 获取用户信息
59
+ getUserInfo() {
60
+ return mpx.getStorageSync("userInfo") || {};
61
+ }
62
+ // 设置用户信息
63
+ setUserInfo(data) {
64
+ mpx.setStorageSync("userInfo", data);
65
+ }
66
+ // 获取角色列表
67
+ getRoleCodes() {
68
+ return mpx.getStorageSync("roleCodes") || [];
69
+ }
70
+ // 设置角色列表
71
+ setRoleCodes(codes) {
72
+ mpx.setStorageSync("roleCodes", codes);
73
+ }
74
+ // 获取权限列表
75
+ getPermCodes() {
76
+ return mpx.getStorageSync("permCodes") || [];
77
+ }
78
+ // 设置权限列表
79
+ setPermCodes(codes) {
80
+ mpx.setStorageSync("permCodes", codes);
81
+ }
82
+ }
83
+ const db = new LocalStorage();
84
+ export { db };
@@ -1,5 +1,5 @@
1
- declare class GrpcUtil {
2
- clearEmpty(params: any): void;
3
- }
4
- declare const grpc: GrpcUtil;
5
- export { grpc };
1
+ declare class GrpcUtil {
2
+ clearEmpty(params: any): void;
3
+ }
4
+ declare const grpc: GrpcUtil;
5
+ export { grpc };
package/lib/utils/grpc.js CHANGED
@@ -1,20 +1,20 @@
1
- // grpc工具类
2
- class GrpcUtil {
3
- //清理空参数.
4
- clearEmpty(params) {
5
- for (const key in params) {
6
- if (params[key] !== null && typeof params[key] === "object") {
7
- this.clearEmpty(params[key]);
8
- if (Object.keys(params[key]).length === 0) {
9
- delete params[key];
10
- }
11
- }
12
- if ([undefined, null, ""].includes(params[key])) {
13
- delete params[key];
14
- }
15
- }
16
- return params;
17
- }
18
- }
19
- const grpc = new GrpcUtil();
20
- export { grpc };
1
+ // grpc工具类
2
+ class GrpcUtil {
3
+ //清理空参数.
4
+ clearEmpty(params) {
5
+ for (const key in params) {
6
+ if (params[key] !== null && typeof params[key] === "object") {
7
+ this.clearEmpty(params[key]);
8
+ if (Object.keys(params[key]).length === 0) {
9
+ delete params[key];
10
+ }
11
+ }
12
+ if ([undefined, null, ""].includes(params[key])) {
13
+ delete params[key];
14
+ }
15
+ }
16
+ return params;
17
+ }
18
+ }
19
+ const grpc = new GrpcUtil();
20
+ export { grpc };