@kmkf-fe-packages/kmkf-utils 2.0.79-beta.36 → 2.0.79-beta.37
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.
|
@@ -47,4 +47,12 @@ export declare const queryWorkOrderList: (params: any) => Promise<import("../../
|
|
|
47
47
|
* @description: 获取店铺列表
|
|
48
48
|
*/
|
|
49
49
|
export declare const queryShopList: () => Promise<import("../../request").serverProps<any>>;
|
|
50
|
+
/**
|
|
51
|
+
* @description: 获取账号列表
|
|
52
|
+
*/
|
|
53
|
+
export declare const queryCompanyUserSimpleInfoList: () => Promise<import("../../request").serverProps<any>>;
|
|
54
|
+
/**
|
|
55
|
+
* @description: 获取group列表
|
|
56
|
+
*/
|
|
57
|
+
export declare const getGroupList: () => Promise<import("../../request").serverProps<any>>;
|
|
50
58
|
export {};
|
|
@@ -78,7 +78,29 @@ export var queryShopList = function queryShopList() {
|
|
|
78
78
|
url: "/qy/shop/listShop",
|
|
79
79
|
method: "post",
|
|
80
80
|
data: {
|
|
81
|
-
apiName:
|
|
81
|
+
apiName: "listShop"
|
|
82
82
|
}
|
|
83
83
|
});
|
|
84
|
+
};
|
|
85
|
+
|
|
86
|
+
/**
|
|
87
|
+
* @description: 获取账号列表
|
|
88
|
+
*/
|
|
89
|
+
export var queryCompanyUserSimpleInfoList = function queryCompanyUserSimpleInfoList() {
|
|
90
|
+
return request({
|
|
91
|
+
url: "/qy/gdfw/company/queryCompanyUserSimpleInfoList",
|
|
92
|
+
method: "post",
|
|
93
|
+
data: {}
|
|
94
|
+
});
|
|
95
|
+
};
|
|
96
|
+
|
|
97
|
+
/**
|
|
98
|
+
* @description: 获取group列表
|
|
99
|
+
*/
|
|
100
|
+
export var getGroupList = function getGroupList() {
|
|
101
|
+
return request({
|
|
102
|
+
url: "/qy/user/group/listAll",
|
|
103
|
+
method: "get",
|
|
104
|
+
data: {}
|
|
105
|
+
});
|
|
84
106
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kmkf-fe-packages/kmkf-utils",
|
|
3
|
-
"version": "2.0.79-beta.
|
|
3
|
+
"version": "2.0.79-beta.37",
|
|
4
4
|
"module": "dist/esm/index.js",
|
|
5
5
|
"typings": "dist/esm/index.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"publishConfig": {
|
|
42
42
|
"access": "public"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "572ac6b3fd516cee3e12b999d81e6235cc521dfe",
|
|
45
45
|
"gitHooks": {
|
|
46
46
|
"pre-commit": "lint-staged"
|
|
47
47
|
}
|