jmash-core-mp 0.1.76 → 0.1.77
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/.editorconfig +9 -9
- package/.gitignore +8 -0
- package/.npmignore +44 -0
- package/README.md +60 -60
- package/babel.config.json +34 -34
- package/eslint.config.mjs +7 -7
- package/lib/api/auth/index.d.ts +22 -22
- package/lib/api/auth/index.js +211 -211
- package/lib/api/auth/types.d.ts +90 -90
- package/lib/api/auth/types.js +9 -9
- package/lib/api/cms/index.d.ts +20 -20
- package/lib/api/cms/index.js +161 -161
- package/lib/api/cms/types.d.ts +201 -201
- package/lib/api/cms/types.js +1 -1
- package/lib/api/constant.d.ts +6 -6
- package/lib/api/constant.js +8 -8
- package/lib/api/dict/index.d.ts +24 -24
- package/lib/api/dict/index.js +51 -51
- package/lib/api/dict/types.d.ts +40 -40
- package/lib/api/dict/types.js +1 -1
- package/lib/api/dicts.d.ts +32 -32
- package/lib/api/dicts.js +118 -118
- package/lib/api/files/index.d.ts +25 -25
- package/lib/api/files/index.js +134 -134
- package/lib/api/files/types.d.ts +38 -38
- package/lib/api/files/types.js +1 -1
- package/lib/api/index.d.ts +5 -5
- package/lib/api/index.js +8 -8
- package/lib/api/myorgan/index.d.ts +8 -8
- package/lib/api/myorgan/index.js +24 -24
- package/lib/api/myorgan/types.d.ts +22 -22
- package/lib/api/myorgan/types.js +1 -1
- package/lib/api/region/index.d.ts +7 -7
- package/lib/api/region/index.js +20 -20
- package/lib/api/region/types.d.ts +19 -19
- package/lib/api/region/types.js +1 -1
- package/lib/api/shop/index.d.ts +11 -11
- package/lib/api/shop/index.js +53 -53
- package/lib/api/shop/types.d.ts +123 -123
- package/lib/api/shop/types.js +1 -1
- package/lib/api/storage/index.d.ts +11 -11
- package/lib/api/storage/index.js +53 -53
- package/lib/api/storage/types.d.ts +39 -39
- package/lib/api/storage/types.js +1 -1
- package/lib/api/types.d.ts +43 -43
- package/lib/api/types.js +1 -1
- package/lib/components/auth-user/jmash-update-user.mpx.d.ts +1 -1
- package/lib/components/auth-user/jmash-user.mpx.d.ts +1 -1
- package/lib/components/cms/jmash-cms-activity-item.mpx.d.ts +1 -0
- package/lib/components/cms/jmash-cms-activity-list.mpx.d.ts +1 -0
- package/lib/components/cms/jmash-cms-article-item.mpx.d.ts +1 -0
- package/lib/components/cms/jmash-cms-article-list.mpx.d.ts +1 -0
- package/lib/components/cms/jmash-cms-article-view.mpx.d.ts +1 -0
- package/lib/components/cms/jmash-cms-like.mpx.d.ts +1 -0
- package/lib/components/cms/jmash-cms-location-list.mpx.d.ts +1 -0
- package/lib/components/cms/jmash-cms-product-item.mpx.d.ts +1 -0
- package/lib/components/cms/jmash-cms-product-list.mpx.d.ts +1 -0
- package/lib/components/common/jmash-search.mpx.d.ts +1 -0
- package/lib/components/core/jmash-login.mpx.d.ts +1 -1
- package/lib/components/organ/browser-organ-list.mpx.d.ts +1 -1
- package/lib/components/organ/my-organ-list.mpx.d.ts +1 -1
- package/lib/components/organ/organ-item.mpx.d.ts +1 -0
- package/lib/components/organ/organ-search.mpx.d.ts +1 -0
- package/lib/components/shop/branch-item.mpx.d.ts +1 -0
- package/lib/components/shop/branch-search.mpx.d.ts +1 -0
- package/lib/components/shop/shop-item.mpx.d.ts +1 -0
- package/lib/components/shop/shop-search.mpx.d.ts +1 -0
- package/lib/index.d.ts +28 -28
- package/lib/index.js +23 -23
- package/lib/packages/pages/auth/setting-page.mpx.d.ts +1 -1
- package/lib/packages/pages/cms/cms-activity-list.mpx.d.ts +1 -0
- package/lib/packages/pages/cms/cms-article-list.mpx.d.ts +1 -0
- package/lib/packages/pages/cms/cms-location-list.mpx.d.ts +1 -0
- package/lib/packages/pages/cms/cms-product-list.mpx.d.ts +1 -0
- package/lib/packages/pages/share/scan.mpx.d.ts +1 -1
- package/lib/pages/organ.mpx.d.ts +1 -1
- package/lib/store/organ.d.ts +19 -19
- package/lib/store/organ.js +83 -83
- package/lib/store/shop.d.ts +18 -18
- package/lib/store/shop.js +104 -104
- package/lib/store/user.d.ts +35 -35
- package/lib/store/user.js +243 -243
- package/lib/utils/common.d.ts +35 -35
- package/lib/utils/common.js +165 -165
- package/lib/utils/config.d.ts +5 -5
- package/lib/utils/config.js +36 -36
- package/lib/utils/db.d.ts +52 -52
- package/lib/utils/db.js +202 -202
- package/lib/utils/grpc.d.ts +5 -5
- package/lib/utils/grpc.js +20 -20
- package/lib/utils/net.d.ts +7 -7
- package/lib/utils/net.js +15 -15
- package/lib/utils/request.d.ts +2 -2
- package/lib/utils/request.js +114 -114
- package/lib/utils/share.d.ts +16 -16
- package/lib/utils/share.js +196 -196
- package/mpx.config.js +38 -38
- package/package.json +1 -1
- package/pnpm-workspace.yaml +5 -0
- package/postcss.config.js +11 -11
- package/project.config.json +24 -24
- package/project.private.config.json +13 -13
- package/public/index.html +15 -15
- package/src/api/auth/index.ts +241 -241
- package/src/api/auth/types.ts +173 -173
- package/src/api/cms/index.ts +218 -218
- package/src/api/cms/types.ts +385 -385
- package/src/api/constant.ts +8 -8
- package/src/api/dict/index.ts +68 -68
- package/src/api/dict/types.ts +73 -73
- package/src/api/dicts.ts +132 -132
- package/src/api/files/index.ts +162 -162
- package/src/api/files/types.ts +67 -67
- package/src/api/index.ts +15 -15
- package/src/api/myorgan/index.ts +29 -29
- package/src/api/myorgan/types.ts +42 -42
- package/src/api/region/index.ts +24 -24
- package/src/api/region/types.ts +36 -36
- package/src/api/shop/index.ts +74 -74
- package/src/api/shop/types.ts +244 -244
- package/src/api/storage/index.ts +74 -74
- package/src/api/storage/types.ts +74 -74
- package/src/api/types.ts +74 -74
- package/src/app.mpx +78 -78
- package/src/components/auth-user/jmash-logout.mpx +93 -93
- package/src/components/auth-user/jmash-update-user.mpx +387 -387
- package/src/components/auth-user/jmash-update-user.web.mpx +367 -367
- package/src/components/auth-user/jmash-user.mpx +310 -310
- package/src/components/cms/jmash-cms-activity-item.mpx +207 -207
- package/src/components/cms/jmash-cms-activity-list.mpx +357 -357
- package/src/components/cms/jmash-cms-article-item.mpx +221 -221
- package/src/components/cms/jmash-cms-article-list.mpx +248 -248
- package/src/components/cms/jmash-cms-article-view.mpx +131 -131
- package/src/components/cms/jmash-cms-article.mpx +231 -231
- package/src/components/cms/jmash-cms-like.mpx +151 -151
- package/src/components/cms/jmash-cms-location-list.mpx +286 -286
- package/src/components/cms/jmash-cms-location.mpx +256 -256
- package/src/components/cms/jmash-cms-product-item.mpx +185 -185
- package/src/components/cms/jmash-cms-product-list.mpx +230 -230
- package/src/components/common/jmash-avatar-edit.mpx +154 -154
- package/src/components/common/jmash-cascader-region.mpx +118 -118
- package/src/components/common/jmash-cell-group.mpx +206 -206
- package/src/components/common/jmash-code-interest-popup.mpx +223 -223
- package/src/components/common/jmash-form-cell.mpx +525 -525
- package/src/components/common/jmash-menu.mpx +129 -129
- package/src/components/common/jmash-none-data.mpx +95 -95
- package/src/components/common/jmash-pic-swiper.mpx +72 -72
- package/src/components/common/jmash-popup.mpx +138 -138
- package/src/components/common/jmash-search.mpx +130 -130
- package/src/components/common/jmash-single-btn.mpx +53 -53
- package/src/components/common/jmash-stepper.mpx +236 -236
- package/src/components/common/jmash-swipe-cell.mpx +153 -153
- package/src/components/common/jmash-tab-bar.mpx +58 -58
- package/src/components/common/jmash-textarea.mpx +88 -88
- package/src/components/common/jmash-top-navigation.mpx +203 -203
- package/src/components/common/jmash-upload-picture.mpx +199 -199
- package/src/components/core/jmash-cms-protocol.mpx +72 -72
- package/src/components/core/jmash-login.ali.mpx +284 -284
- package/src/components/core/jmash-login.mpx +378 -378
- package/src/components/core/jmash-login.web.mpx +420 -420
- package/src/components/core/jmash-popup-login.ali.mpx +312 -312
- package/src/components/core/jmash-popup-login.mpx +414 -416
- package/src/components/core/jmash-popup-login.web.mpx +389 -389
- package/src/components/organ/browser-organ-list.mpx +66 -66
- package/src/components/organ/my-organ-list.mpx +67 -67
- package/src/components/organ/organ-item.mpx +124 -124
- package/src/components/organ/organ-search.mpx +148 -148
- package/src/components/organ/organ-selected-item.mpx +88 -88
- package/src/components/shop/branch-item.mpx +111 -111
- package/src/components/shop/branch-search.mpx +142 -142
- package/src/components/shop/shop-item.mpx +112 -112
- package/src/components/shop/shop-search.mpx +142 -142
- package/src/components/shop/shop-selected-item.mpx +89 -89
- package/src/custom-tab-bar/index.mpx +10 -10
- package/src/global.d.ts +11 -11
- package/src/index.ts +94 -94
- package/src/packages/index.mpx +16 -16
- package/src/packages/pages/auth/cms-protocol.mpx +35 -35
- package/src/packages/pages/auth/login.mpx +62 -62
- package/src/packages/pages/auth/setting-page.mpx +134 -134
- package/src/packages/pages/auth/update-user.mpx +17 -17
- package/src/packages/pages/cms/cms-activity-list.mpx +86 -86
- package/src/packages/pages/cms/cms-article-list.mpx +88 -88
- package/src/packages/pages/cms/cms-article.mpx +32 -32
- package/src/packages/pages/cms/cms-location-list.mpx +83 -83
- package/src/packages/pages/cms/cms-location.mpx +32 -32
- package/src/packages/pages/cms/cms-product-list.mpx +88 -88
- package/src/packages/pages/share/scan.mpx +103 -103
- package/src/pages/basic-component.mpx +30 -30
- package/src/pages/branch-search.mpx +60 -60
- package/src/pages/half-home.mpx +58 -58
- package/src/pages/home.mpx +54 -54
- package/src/pages/home2.mpx +45 -45
- package/src/pages/index.mpx +43 -43
- package/src/pages/organ-search.mpx +60 -60
- package/src/pages/organ.mpx +105 -105
- package/src/pages/shop-search.mpx +60 -60
- package/src/pages/tabbar/home.mpx +114 -114
- package/src/pages/tabbar/mall.mpx +87 -87
- package/src/pages/tabbar/my.mpx +79 -79
- package/src/pages/tabbar/organ.mpx +86 -86
- package/src/store/organ.ts +100 -100
- package/src/store/shop.ts +130 -130
- package/src/store/user.ts +288 -288
- package/src/styles/index.scss +20 -20
- package/src/styles/vars.scss +27 -27
- package/src/utils/common.ts +178 -178
- package/src/utils/config.ts +43 -43
- package/src/utils/db.ts +229 -229
- package/src/utils/grpc.ts +21 -21
- package/src/utils/net.ts +18 -18
- package/src/utils/request.ts +126 -126
- package/src/utils/share.ts +194 -194
- package/static/ali/mini.project.json +4 -4
- package/static/dd/project.config.json +15 -15
- package/static/swan/project.swan.json +14 -14
- package/static/tt/project.config.json +11 -11
- package/static/wx/project.config.json +40 -40
- package/uno.config.js +9 -9
package/.editorconfig
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
root = true
|
|
2
|
-
|
|
3
|
-
[*]
|
|
4
|
-
charset = utf-8
|
|
5
|
-
indent_style = space
|
|
6
|
-
indent_size = 2
|
|
7
|
-
end_of_line = lf
|
|
8
|
-
insert_final_newline = true
|
|
9
|
-
trim_trailing_whitespace = true
|
|
1
|
+
root = true
|
|
2
|
+
|
|
3
|
+
[*]
|
|
4
|
+
charset = utf-8
|
|
5
|
+
indent_style = space
|
|
6
|
+
indent_size = 2
|
|
7
|
+
end_of_line = lf
|
|
8
|
+
insert_final_newline = true
|
|
9
|
+
trim_trailing_whitespace = true
|
package/.gitignore
ADDED
package/.npmignore
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
# Cache directories
|
|
2
|
+
.cache/
|
|
3
|
+
node_modules/
|
|
4
|
+
dist/
|
|
5
|
+
|
|
6
|
+
# Build artifacts
|
|
7
|
+
*.tgz
|
|
8
|
+
*.tar.gz
|
|
9
|
+
|
|
10
|
+
# IDE and editor files
|
|
11
|
+
.vscode/
|
|
12
|
+
.idea/
|
|
13
|
+
*.swp
|
|
14
|
+
*.swo
|
|
15
|
+
*~
|
|
16
|
+
|
|
17
|
+
# OS files
|
|
18
|
+
.DS_Store
|
|
19
|
+
Thumbs.db
|
|
20
|
+
|
|
21
|
+
# Log files
|
|
22
|
+
*.log
|
|
23
|
+
npm-debug.log*
|
|
24
|
+
pnpm-debug.log*
|
|
25
|
+
yarn-debug.log*
|
|
26
|
+
yarn-error.log*
|
|
27
|
+
|
|
28
|
+
# Test files
|
|
29
|
+
__tests__/
|
|
30
|
+
test/
|
|
31
|
+
*.test.js
|
|
32
|
+
*.spec.js
|
|
33
|
+
|
|
34
|
+
# Config files that shouldn't be published
|
|
35
|
+
.eslintrc*
|
|
36
|
+
.prettierrc*
|
|
37
|
+
jest.config.*
|
|
38
|
+
tsconfig.json
|
|
39
|
+
.babelrc*
|
|
40
|
+
|
|
41
|
+
# Environment files
|
|
42
|
+
.env
|
|
43
|
+
.env.local
|
|
44
|
+
.env.*.local
|
package/README.md
CHANGED
|
@@ -1,60 +1,60 @@
|
|
|
1
|
-
# jmash-core-mp
|
|
2
|
-
|
|
3
|
-
采用 MPX 构建的 Jmash 高性能跨端小程序。
|
|
4
|
-
https://mpxjs.cn/
|
|
5
|
-
|
|
6
|
-
## Project setup
|
|
7
|
-
|
|
8
|
-
```javascript
|
|
9
|
-
// 开发构建,默认输出微信小程序
|
|
10
|
-
npm run serve
|
|
11
|
-
|
|
12
|
-
// 开发构建,跨平台输出支付宝小程序
|
|
13
|
-
npm run serve:ali
|
|
14
|
-
|
|
15
|
-
// 开发构建,跨平台输出 Web
|
|
16
|
-
npm run serve:web
|
|
17
|
-
|
|
18
|
-
// 开发构建,跨平台输出其他平台小程序target = swan|tt|qq|jd|ks
|
|
19
|
-
npm run serve -- --targets={target}
|
|
20
|
-
|
|
21
|
-
// 开发构建,同时输出多平台产物
|
|
22
|
-
npm run serve -- --targets=wx,ali,web
|
|
23
|
-
|
|
24
|
-
// 生产构建,默认输出微信小程序
|
|
25
|
-
npm run build
|
|
26
|
-
|
|
27
|
-
// 生产构建,跨平台输出
|
|
28
|
-
npm run build:ali
|
|
29
|
-
npm run build:web
|
|
30
|
-
npm run build -- --targets=wx,ali,web
|
|
31
|
-
```
|
|
32
|
-
|
|
33
|
-
# ALi 小程序
|
|
34
|
-
|
|
35
|
-
登录
|
|
36
|
-
minidev login
|
|
37
|
-
|
|
38
|
-
调试开发
|
|
39
|
-
minidev dev
|
|
40
|
-
|
|
41
|
-
本地 IP 调试
|
|
42
|
-
minidev dev --host 192.168.1.154
|
|
43
|
-
|
|
44
|
-
真机调试
|
|
45
|
-
minidev remote-debug -a 2021006137629651
|
|
46
|
-
|
|
47
|
-
Web 端调试
|
|
48
|
-
minidev dev
|
|
49
|
-
web -a 2021006137629651
|
|
50
|
-
真机预览
|
|
51
|
-
minidev preview -a 2021006137629651
|
|
52
|
-
|
|
53
|
-
# pnpm publish --no-git-checks
|
|
54
|
-
|
|
55
|
-
官方镜像
|
|
56
|
-
npm config set registry https://registry.npmjs.org/
|
|
57
|
-
国内镜像
|
|
58
|
-
npm config set registry https://registry.npmmirror.com/
|
|
59
|
-
代理镜像
|
|
60
|
-
npm config set registry https://npm.crenjoy.com/
|
|
1
|
+
# jmash-core-mp
|
|
2
|
+
|
|
3
|
+
采用 MPX 构建的 Jmash 高性能跨端小程序。
|
|
4
|
+
https://mpxjs.cn/
|
|
5
|
+
|
|
6
|
+
## Project setup
|
|
7
|
+
|
|
8
|
+
```javascript
|
|
9
|
+
// 开发构建,默认输出微信小程序
|
|
10
|
+
npm run serve
|
|
11
|
+
|
|
12
|
+
// 开发构建,跨平台输出支付宝小程序
|
|
13
|
+
npm run serve:ali
|
|
14
|
+
|
|
15
|
+
// 开发构建,跨平台输出 Web
|
|
16
|
+
npm run serve:web
|
|
17
|
+
|
|
18
|
+
// 开发构建,跨平台输出其他平台小程序target = swan|tt|qq|jd|ks
|
|
19
|
+
npm run serve -- --targets={target}
|
|
20
|
+
|
|
21
|
+
// 开发构建,同时输出多平台产物
|
|
22
|
+
npm run serve -- --targets=wx,ali,web
|
|
23
|
+
|
|
24
|
+
// 生产构建,默认输出微信小程序
|
|
25
|
+
npm run build
|
|
26
|
+
|
|
27
|
+
// 生产构建,跨平台输出
|
|
28
|
+
npm run build:ali
|
|
29
|
+
npm run build:web
|
|
30
|
+
npm run build -- --targets=wx,ali,web
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
# ALi 小程序
|
|
34
|
+
|
|
35
|
+
登录
|
|
36
|
+
minidev login
|
|
37
|
+
|
|
38
|
+
调试开发
|
|
39
|
+
minidev dev
|
|
40
|
+
|
|
41
|
+
本地 IP 调试
|
|
42
|
+
minidev dev --host 192.168.1.154
|
|
43
|
+
|
|
44
|
+
真机调试
|
|
45
|
+
minidev remote-debug -a 2021006137629651
|
|
46
|
+
|
|
47
|
+
Web 端调试
|
|
48
|
+
minidev dev
|
|
49
|
+
web -a 2021006137629651
|
|
50
|
+
真机预览
|
|
51
|
+
minidev preview -a 2021006137629651
|
|
52
|
+
|
|
53
|
+
# pnpm publish --no-git-checks
|
|
54
|
+
|
|
55
|
+
官方镜像
|
|
56
|
+
npm config set registry https://registry.npmjs.org/
|
|
57
|
+
国内镜像
|
|
58
|
+
npm config set registry https://registry.npmmirror.com/
|
|
59
|
+
代理镜像
|
|
60
|
+
npm config set registry https://npm.crenjoy.com/
|
package/babel.config.json
CHANGED
|
@@ -1,34 +1,34 @@
|
|
|
1
|
-
{
|
|
2
|
-
"presets": [
|
|
3
|
-
[
|
|
4
|
-
"@babel/preset-env",
|
|
5
|
-
{
|
|
6
|
-
"modules": false,
|
|
7
|
-
"shippedProposals": true
|
|
8
|
-
}
|
|
9
|
-
],
|
|
10
|
-
],
|
|
11
|
-
"plugins": [
|
|
12
|
-
[
|
|
13
|
-
"@babel/transform-runtime",
|
|
14
|
-
{
|
|
15
|
-
"corejs": 3,
|
|
16
|
-
"version": "^7.10.4"
|
|
17
|
-
}
|
|
18
|
-
],
|
|
19
|
-
"@mpxjs/babel-plugin-inject-page-events",
|
|
20
|
-
],
|
|
21
|
-
"sourceType": "unambiguous",
|
|
22
|
-
"env": {
|
|
23
|
-
"test": {
|
|
24
|
-
"presets": [
|
|
25
|
-
[
|
|
26
|
-
"@babel/env",
|
|
27
|
-
{
|
|
28
|
-
"shippedProposals": true
|
|
29
|
-
}
|
|
30
|
-
]
|
|
31
|
-
]
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"presets": [
|
|
3
|
+
[
|
|
4
|
+
"@babel/preset-env",
|
|
5
|
+
{
|
|
6
|
+
"modules": false,
|
|
7
|
+
"shippedProposals": true
|
|
8
|
+
}
|
|
9
|
+
],
|
|
10
|
+
],
|
|
11
|
+
"plugins": [
|
|
12
|
+
[
|
|
13
|
+
"@babel/transform-runtime",
|
|
14
|
+
{
|
|
15
|
+
"corejs": 3,
|
|
16
|
+
"version": "^7.10.4"
|
|
17
|
+
}
|
|
18
|
+
],
|
|
19
|
+
"@mpxjs/babel-plugin-inject-page-events",
|
|
20
|
+
],
|
|
21
|
+
"sourceType": "unambiguous",
|
|
22
|
+
"env": {
|
|
23
|
+
"test": {
|
|
24
|
+
"presets": [
|
|
25
|
+
[
|
|
26
|
+
"@babel/env",
|
|
27
|
+
{
|
|
28
|
+
"shippedProposals": true
|
|
29
|
+
}
|
|
30
|
+
]
|
|
31
|
+
]
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|
package/eslint.config.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { mpxConfig } from '@mpxjs/eslint-config'
|
|
2
|
-
export default mpxConfig(
|
|
3
|
-
{
|
|
4
|
-
mpx: true,
|
|
5
|
-
typescript: true
|
|
6
|
-
}
|
|
7
|
-
)
|
|
1
|
+
import { mpxConfig } from '@mpxjs/eslint-config'
|
|
2
|
+
export default mpxConfig(
|
|
3
|
+
{
|
|
4
|
+
mpx: true,
|
|
5
|
+
typescript: true
|
|
6
|
+
}
|
|
7
|
+
)
|
package/lib/api/auth/index.d.ts
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
import { ResponseData } from "../../api/types";
|
|
2
|
-
import type { LoginReq, LoginRes, RolesPerms, WebLoginReq, TokenModel, PhoneRegisterReq, PhoneReplaceReq, UpdateUserReq, UserInfoReq, UserInfo, GzhSubscribeCheckReq } from "./types";
|
|
3
|
-
declare class AuthApi {
|
|
4
|
-
mpLogin(data: LoginReq): Promise<ResponseData<LoginRes>>;
|
|
5
|
-
mpPhoneRegister(data: PhoneRegisterReq): Promise<ResponseData<LoginRes>>;
|
|
6
|
-
replaceBindphone(data: PhoneReplaceReq): Promise<ResponseData<string>>;
|
|
7
|
-
webLogin(data: WebLoginReq): Promise<ResponseData<TokenModel>>;
|
|
8
|
-
refreshToken(): Promise<ResponseData<TokenModel>>;
|
|
9
|
-
userInfo(): Promise<ResponseData<UserInfo>>;
|
|
10
|
-
userRolesPerms(): Promise<ResponseData<RolesPerms>>;
|
|
11
|
-
allowRunAsUser(): Promise<ResponseData<any[]>>;
|
|
12
|
-
runAsUser(userId: string): Promise<ResponseData<any>>;
|
|
13
|
-
updateUser(data: any): Promise<ResponseData<any>>;
|
|
14
|
-
updatePwd(encodeOldPwd: string, encodeNewPwd: string): Promise<ResponseData<any>>;
|
|
15
|
-
deptTree(deptId?: string, tenant?: string): Promise<ResponseData<any[]>>;
|
|
16
|
-
jobTree(jobId?: string, tenant?: string): Promise<ResponseData<any[]>>;
|
|
17
|
-
updateUserInfo(data: UpdateUserReq): Promise<ResponseData<UserInfo>>;
|
|
18
|
-
findUserInfo(data: UserInfoReq): Promise<ResponseData<UserInfo>>;
|
|
19
|
-
findUserIsSubscribe(data: GzhSubscribeCheckReq): Promise<ResponseData<any>>;
|
|
20
|
-
}
|
|
21
|
-
export declare const authApi: AuthApi;
|
|
22
|
-
export {};
|
|
1
|
+
import { ResponseData } from "../../api/types";
|
|
2
|
+
import type { LoginReq, LoginRes, RolesPerms, WebLoginReq, TokenModel, PhoneRegisterReq, PhoneReplaceReq, UpdateUserReq, UserInfoReq, UserInfo, GzhSubscribeCheckReq } from "./types";
|
|
3
|
+
declare class AuthApi {
|
|
4
|
+
mpLogin(data: LoginReq): Promise<ResponseData<LoginRes>>;
|
|
5
|
+
mpPhoneRegister(data: PhoneRegisterReq): Promise<ResponseData<LoginRes>>;
|
|
6
|
+
replaceBindphone(data: PhoneReplaceReq): Promise<ResponseData<string>>;
|
|
7
|
+
webLogin(data: WebLoginReq): Promise<ResponseData<TokenModel>>;
|
|
8
|
+
refreshToken(): Promise<ResponseData<TokenModel>>;
|
|
9
|
+
userInfo(): Promise<ResponseData<UserInfo>>;
|
|
10
|
+
userRolesPerms(): Promise<ResponseData<RolesPerms>>;
|
|
11
|
+
allowRunAsUser(): Promise<ResponseData<any[]>>;
|
|
12
|
+
runAsUser(userId: string): Promise<ResponseData<any>>;
|
|
13
|
+
updateUser(data: any): Promise<ResponseData<any>>;
|
|
14
|
+
updatePwd(encodeOldPwd: string, encodeNewPwd: string): Promise<ResponseData<any>>;
|
|
15
|
+
deptTree(deptId?: string, tenant?: string): Promise<ResponseData<any[]>>;
|
|
16
|
+
jobTree(jobId?: string, tenant?: string): Promise<ResponseData<any[]>>;
|
|
17
|
+
updateUserInfo(data: UpdateUserReq): Promise<ResponseData<UserInfo>>;
|
|
18
|
+
findUserInfo(data: UserInfoReq): Promise<ResponseData<UserInfo>>;
|
|
19
|
+
findUserIsSubscribe(data: GzhSubscribeCheckReq): Promise<ResponseData<any>>;
|
|
20
|
+
}
|
|
21
|
+
export declare const authApi: AuthApi;
|
|
22
|
+
export {};
|