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.umd.js CHANGED
@@ -5329,7 +5329,12 @@ const getMappingAppInfoByID = async (appID, groupID) => {
5329
5329
  * @param id 组织ID
5330
5330
  *
5331
5331
  */
5332
- const queryOfficeInfosById = async queryData => {
5332
+ const queryOfficeInfosById = async officeID => {
5333
+ let queryData = {
5334
+ "param": {
5335
+ "id": officeID
5336
+ }
5337
+ };
5333
5338
  let resultData = await request.post(`/dataservice/rest/orchestration/getOfficeInfosByID`, queryData);
5334
5339
  let groupDptData = resultData.data.officeData;
5335
5340
  return groupDptData;