isdata-customer-sdk 0.1.20 → 0.1.21
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/index.js +6 -1
- package/dist/index.js.map +1 -1
- package/dist/index.umd.js +6 -1
- package/dist/index.umd.js.map +1 -1
- package/dist/index.umd.min.js +1 -1
- package/dist/index.umd.min.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -5319,7 +5319,12 @@ const getMappingAppInfoByID = async (appID, groupID) => {
|
|
|
5319
5319
|
* @param id 组织ID
|
|
5320
5320
|
*
|
|
5321
5321
|
*/
|
|
5322
|
-
const queryOfficeInfosById = async
|
|
5322
|
+
const queryOfficeInfosById = async officeID => {
|
|
5323
|
+
let queryData = {
|
|
5324
|
+
"param": {
|
|
5325
|
+
"id": officeID
|
|
5326
|
+
}
|
|
5327
|
+
};
|
|
5323
5328
|
let resultData = await request.post(`/dataservice/rest/orchestration/getOfficeInfosByID`, queryData);
|
|
5324
5329
|
let groupDptData = resultData.data.officeData;
|
|
5325
5330
|
return groupDptData;
|