isdata-customer-sdk 0.1.25 → 0.1.26

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
@@ -5323,13 +5323,13 @@ const queryGroupIDByOfficeId = async id => {
5323
5323
  * @param {信息} userData
5324
5324
  * @returns
5325
5325
  */
5326
- const getCurrentUserPortalPageID = userData => {
5326
+ const getCurrentUserPortalPageID = async userData => {
5327
5327
  let queryData = {
5328
5328
  "param": {
5329
5329
  "userData": userData
5330
5330
  }
5331
5331
  };
5332
- let response = request.post(`/dataservice/rest/orchestration/getPortalPageID`, queryData);
5332
+ let response = await request.post(`/dataservice/rest/orchestration/getPortalPageID`, queryData);
5333
5333
  let portal_id = response.data.portal_id;
5334
5334
  return portal_id;
5335
5335
  };