@foundbyte/uni-libs 1.1.2 → 1.1.3
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/es/_virtual/_@oxc-project_runtime@0.135.0/helpers/esm/asyncToGenerator.js +2 -1
- package/es/_virtual/_@oxc-project_runtime@0.135.0/helpers/esm/defineProperty.js +3 -1
- package/es/_virtual/_@oxc-project_runtime@0.135.0/helpers/esm/objectSpread2.js +3 -1
- package/es/_virtual/_@oxc-project_runtime@0.135.0/helpers/esm/objectWithoutProperties.js +3 -1
- package/es/_virtual/_@oxc-project_runtime@0.135.0/helpers/esm/objectWithoutPropertiesLoose.js +2 -1
- package/es/_virtual/_@oxc-project_runtime@0.135.0/helpers/esm/toPrimitive.js +3 -1
- package/es/_virtual/_@oxc-project_runtime@0.135.0/helpers/esm/toPropertyKey.js +3 -1
- package/es/_virtual/_@oxc-project_runtime@0.135.0/helpers/esm/typeof.js +2 -1
- package/es/configs/app/app.hwtest.js +2 -1
- package/es/configs/app/app.prod.js +2 -1
- package/es/configs/app/index.js +4 -2
- package/es/constants/permission/index.js +2 -1
- package/es/constants/routes/index.js +2 -1
- package/es/entry.js +5 -3
- package/es/enums/business-line/index.js +2 -1
- package/es/enums/environment/index.js +2 -1
- package/es/enums/platform/index.js +2 -1
- package/es/enums/sdk/index.js +2 -1
- package/es/enums/sub/enjoy/index.js +2 -1
- package/es/enums/sub/foods/index.js +2 -1
- package/es/enums/sub/hotel/index.js +2 -1
- package/es/index.js +2 -1
- package/es/services/goods/service.js +11 -9
- package/es/utils/common/index.js +2 -1
- package/es/utils/native-app/index.js +3 -1
- package/es/utils/obs/image.js +3 -1
- package/es/utils/pages/activity-calendar/index.js +3 -1
- package/es/utils/pages/food/index.js +3 -1
- package/es/utils/pages/movie/index.js +3 -1
- package/es/utils/pages/webview/index.js +3 -1
- package/es/utils/uni-env/index.js +3 -1
- package/es/utils/web-view/index.js +7 -1
- package/package.json +1 -1
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { toPropertyKey } from "./toPropertyKey.js";
|
|
2
|
+
|
|
2
3
|
//#region \0@oxc-project+runtime@0.135.0/helpers/esm/defineProperty.js
|
|
3
4
|
function _defineProperty(e, r, t) {
|
|
4
5
|
return (r = toPropertyKey(r)) in e ? Object.defineProperty(e, r, {
|
|
@@ -8,5 +9,6 @@ function _defineProperty(e, r, t) {
|
|
|
8
9
|
writable: !0
|
|
9
10
|
}) : e[r] = t, e;
|
|
10
11
|
}
|
|
12
|
+
|
|
11
13
|
//#endregion
|
|
12
|
-
export { _defineProperty };
|
|
14
|
+
export { _defineProperty };
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { _defineProperty } from "./defineProperty.js";
|
|
2
|
+
|
|
2
3
|
//#region \0@oxc-project+runtime@0.135.0/helpers/esm/objectSpread2.js
|
|
3
4
|
function ownKeys(e, r) {
|
|
4
5
|
var t = Object.keys(e);
|
|
@@ -21,5 +22,6 @@ function _objectSpread2(e) {
|
|
|
21
22
|
}
|
|
22
23
|
return e;
|
|
23
24
|
}
|
|
25
|
+
|
|
24
26
|
//#endregion
|
|
25
|
-
export { _objectSpread2 };
|
|
27
|
+
export { _objectSpread2 };
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { _objectWithoutPropertiesLoose } from "./objectWithoutPropertiesLoose.js";
|
|
2
|
+
|
|
2
3
|
//#region \0@oxc-project+runtime@0.135.0/helpers/esm/objectWithoutProperties.js
|
|
3
4
|
function _objectWithoutProperties(e, t) {
|
|
4
5
|
if (null == e) return {};
|
|
@@ -9,5 +10,6 @@ function _objectWithoutProperties(e, t) {
|
|
|
9
10
|
}
|
|
10
11
|
return i;
|
|
11
12
|
}
|
|
13
|
+
|
|
12
14
|
//#endregion
|
|
13
|
-
export { _objectWithoutProperties };
|
|
15
|
+
export { _objectWithoutProperties };
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { _typeof } from "./typeof.js";
|
|
2
|
+
|
|
2
3
|
//#region \0@oxc-project+runtime@0.135.0/helpers/esm/toPrimitive.js
|
|
3
4
|
function toPrimitive(t, r) {
|
|
4
5
|
if ("object" != _typeof(t) || !t) return t;
|
|
@@ -10,5 +11,6 @@ function toPrimitive(t, r) {
|
|
|
10
11
|
}
|
|
11
12
|
return ("string" === r ? String : Number)(t);
|
|
12
13
|
}
|
|
14
|
+
|
|
13
15
|
//#endregion
|
|
14
|
-
export { toPrimitive };
|
|
16
|
+
export { toPrimitive };
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import { _typeof } from "./typeof.js";
|
|
2
2
|
import { toPrimitive } from "./toPrimitive.js";
|
|
3
|
+
|
|
3
4
|
//#region \0@oxc-project+runtime@0.135.0/helpers/esm/toPropertyKey.js
|
|
4
5
|
function toPropertyKey(t) {
|
|
5
6
|
var i = toPrimitive(t, "string");
|
|
6
7
|
return "symbol" == _typeof(i) ? i : i + "";
|
|
7
8
|
}
|
|
9
|
+
|
|
8
10
|
//#endregion
|
|
9
|
-
export { toPropertyKey };
|
|
11
|
+
export { toPropertyKey };
|
package/es/configs/app/index.js
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import "../../enums/environment/index.js";
|
|
1
|
+
import { EAppEnv } from "../../enums/environment/index.js";
|
|
2
2
|
import { _objectSpread2 } from "../../_virtual/_@oxc-project_runtime@0.135.0/helpers/esm/objectSpread2.js";
|
|
3
3
|
import config from "./app.hwtest.js";
|
|
4
4
|
import config$1 from "./app.prod.js";
|
|
5
|
+
|
|
5
6
|
//#region src/configs/app/index.ts
|
|
6
7
|
/**
|
|
7
8
|
* 获取App配置信息
|
|
@@ -24,5 +25,6 @@ function getAppConfig(appEnv) {
|
|
|
24
25
|
movie: ""
|
|
25
26
|
} }, config$2);
|
|
26
27
|
}
|
|
28
|
+
|
|
27
29
|
//#endregion
|
|
28
|
-
export { getAppConfig };
|
|
30
|
+
export { getAppConfig };
|
package/es/entry.js
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
import "./enums/environment/index.js";
|
|
2
|
-
import "./enums/sdk/index.js";
|
|
1
|
+
import { EAppEnv } from "./enums/environment/index.js";
|
|
2
|
+
import { ECaller } from "./enums/sdk/index.js";
|
|
3
3
|
import { _defineProperty } from "./_virtual/_@oxc-project_runtime@0.135.0/helpers/esm/defineProperty.js";
|
|
4
4
|
import { _objectSpread2 } from "./_virtual/_@oxc-project_runtime@0.135.0/helpers/esm/objectSpread2.js";
|
|
5
5
|
import { getAppConfig } from "./configs/app/index.js";
|
|
6
6
|
import { GoodsService } from "./services/goods/service.js";
|
|
7
|
+
|
|
7
8
|
//#region src/entry.ts
|
|
8
9
|
/**
|
|
9
10
|
* 一码游SDK
|
|
@@ -26,5 +27,6 @@ var OneTravelSDK = class {
|
|
|
26
27
|
return getAppConfig(this.sdkConfig.appEnv);
|
|
27
28
|
}
|
|
28
29
|
};
|
|
30
|
+
|
|
29
31
|
//#endregion
|
|
30
|
-
export { OneTravelSDK };
|
|
32
|
+
export { OneTravelSDK };
|
|
@@ -154,5 +154,6 @@ let ESubBizType = /* @__PURE__ */ function(ESubBizType) {
|
|
|
154
154
|
ESubBizType[ESubBizType["EntertainmentVenue"] = 82] = "EntertainmentVenue";
|
|
155
155
|
return ESubBizType;
|
|
156
156
|
}({});
|
|
157
|
+
|
|
157
158
|
//#endregion
|
|
158
|
-
export { BusinessLineDict, EBusinessLine, ESubBizType };
|
|
159
|
+
export { BusinessLineDict, EBusinessLine, ESubBizType };
|
package/es/enums/sdk/index.js
CHANGED
|
@@ -12,5 +12,6 @@ let EFoodPackageType = /* @__PURE__ */ function(EFoodPackageType) {
|
|
|
12
12
|
EFoodPackageType[EFoodPackageType["Enjoy"] = 2] = "Enjoy";
|
|
13
13
|
return EFoodPackageType;
|
|
14
14
|
}({});
|
|
15
|
+
|
|
15
16
|
//#endregion
|
|
16
|
-
export { EFoodPackageType, EFoodsModuleType };
|
|
17
|
+
export { EFoodPackageType, EFoodsModuleType };
|
package/es/index.js
CHANGED
|
@@ -17,4 +17,5 @@ import { isAlipayEnv, isAndroidEnv, isAppEnv, isH5Env, isHarmonyEnv, isToutiaoEn
|
|
|
17
17
|
import { checkAndRequestNativeAppPermission } from "./utils/native-app/index.js";
|
|
18
18
|
import { EObsSource, compressHuaweiObsImg, compressObsImg } from "./utils/obs/image.js";
|
|
19
19
|
import { OneTravelSDK } from "./entry.js";
|
|
20
|
-
|
|
20
|
+
|
|
21
|
+
export { BusinessLineDict, EAppEnv, EBusinessLine, ECaller, EFoodPackageType, EFoodsModuleType, EHotelType, EMessagesType, EObsSource, ESubBizType, EUniPlatform, EVenueSimpleTypes, EVenueTypes, OneTravelSDK, app_permission, checkAndRequestNativeAppPermission, compressHuaweiObsImg, compressObsImg, downLoadFile, getActivityCalendarDetailPage, getFoodPackagePage, getFoodStorePage, getMoviePage, getQueryParameters, getWebViewEnv, getWebviewPage, isAlipay, isAlipayEnv, isAndroid, isAndroidEnv, isAppEnv, isEmpty, isH5Env, isHarmony, isHarmonyEnv, isIOSOrAndroid, isToutiaoEnv, isWeixin, isWeixinEnv, isiOS, isiOSEnv, navigateBack, navigateTo, postMessage, query2url, redirectTo, routePrefix, routes, setShareParam, toPay };
|
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
import { routePrefix } from "../../constants/routes/index.js";
|
|
2
|
-
import "../../enums/business-line/index.js";
|
|
3
|
-
import "../../enums/sdk/index.js";
|
|
4
|
-
import "../../enums/sub/enjoy/index.js";
|
|
5
|
-
import "../../enums/sub/foods/index.js";
|
|
6
|
-
import "../../enums/sub/hotel/index.js";
|
|
2
|
+
import { EBusinessLine, ESubBizType } from "../../enums/business-line/index.js";
|
|
3
|
+
import { ECaller } from "../../enums/sdk/index.js";
|
|
4
|
+
import { EVenueSimpleTypes } from "../../enums/sub/enjoy/index.js";
|
|
5
|
+
import { EFoodsModuleType } from "../../enums/sub/foods/index.js";
|
|
6
|
+
import { EHotelType } from "../../enums/sub/hotel/index.js";
|
|
7
7
|
import { getWebviewPage } from "../../utils/pages/webview/index.js";
|
|
8
8
|
import { getFoodPackagePage, getFoodStorePage } from "../../utils/pages/food/index.js";
|
|
9
9
|
import { getMoviePage } from "../../utils/pages/movie/index.js";
|
|
10
10
|
import { _defineProperty } from "../../_virtual/_@oxc-project_runtime@0.135.0/helpers/esm/defineProperty.js";
|
|
11
11
|
import { navigateTo } from "../../utils/web-view/index.js";
|
|
12
12
|
import { getAppConfig } from "../../configs/app/index.js";
|
|
13
|
+
|
|
13
14
|
//#region src/services/goods/service.ts
|
|
14
15
|
var GoodsService = class {
|
|
15
16
|
constructor(config) {
|
|
@@ -56,8 +57,8 @@ var GoodsService = class {
|
|
|
56
57
|
const subBizType = (item === null || item === void 0 || (_item$homestay3 = item.homestay) === null || _item$homestay3 === void 0 ? void 0 : _item$homestay3.subBizType) || (extInfo === null || extInfo === void 0 ? void 0 : extInfo.subBizType);
|
|
57
58
|
const id = (item === null || item === void 0 || (_item$homestay4 = item.homestay) === null || _item$homestay4 === void 0 ? void 0 : _item$homestay4.id) || (item === null || item === void 0 || (_item$common12 = item.common) === null || _item$common12 === void 0 ? void 0 : _item$common12.spuId) || (item === null || item === void 0 || (_item$common13 = item.common) === null || _item$common13 === void 0 ? void 0 : _item$common13.id) || "";
|
|
58
59
|
/** 民宿 */
|
|
59
|
-
if (`${subBizType}` ===
|
|
60
|
-
else if (`${subBizType}` ===
|
|
60
|
+
if (`${subBizType}` === `${32}`) page = `${routePrefix.hotel}/home/details/index?id=${id}`;
|
|
61
|
+
else if (`${subBizType}` === `${31}`) page = `${routePrefix.hotel}/home/hot-sale-details/index?id=${id}`;
|
|
61
62
|
else page = `${routePrefix.hotel}/home/pms-details/index?id=${id}`;
|
|
62
63
|
}
|
|
63
64
|
break;
|
|
@@ -108,7 +109,7 @@ var GoodsService = class {
|
|
|
108
109
|
const entertainmentSubBizType = (item === null || item === void 0 || (_item$entertainment3 = item.entertainment) === null || _item$entertainment3 === void 0 ? void 0 : _item$entertainment3.subBizType) || (extInfo === null || extInfo === void 0 ? void 0 : extInfo.subBizType);
|
|
109
110
|
const entertainmentType = (item === null || item === void 0 || (_item$entertainment4 = item.entertainment) === null || _item$entertainment4 === void 0 ? void 0 : _item$entertainment4.type) || (extInfo === null || extInfo === void 0 ? void 0 : extInfo.type) || (item === null || item === void 0 || (_item$common29 = item.common) === null || _item$common29 === void 0 ? void 0 : _item$common29.type);
|
|
110
111
|
const entertainmentReservationId = (item === null || item === void 0 || (_item$entertainment5 = item.entertainment) === null || _item$entertainment5 === void 0 ? void 0 : _item$entertainment5.reservationId) || (extInfo === null || extInfo === void 0 ? void 0 : extInfo.reservationId) || (item === null || item === void 0 || (_item$common30 = item.common) === null || _item$common30 === void 0 ? void 0 : _item$common30.reservationId);
|
|
111
|
-
if (`${entertainmentType}` === "3" || `${entertainmentSubBizType}` ===
|
|
112
|
+
if (`${entertainmentType}` === "3" || `${entertainmentSubBizType}` === `${81}`) page = `${routePrefix.enjoy}/g-activity/detail?id=` + entertainmentId + "&mchId=" + entertainmentStoreId;
|
|
112
113
|
else page = `${routePrefix.enjoy}/g-venue/detail?id=${entertainmentId}&reservationId=${entertainmentReservationId}`;
|
|
113
114
|
break;
|
|
114
115
|
/** 电影 */
|
|
@@ -151,5 +152,6 @@ var GoodsService = class {
|
|
|
151
152
|
this.goodsServiceConfig = config;
|
|
152
153
|
}
|
|
153
154
|
};
|
|
155
|
+
|
|
154
156
|
//#endregion
|
|
155
|
-
export { GoodsService };
|
|
157
|
+
export { GoodsService };
|
package/es/utils/common/index.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { app_permission } from "../../constants/permission/index.js";
|
|
2
2
|
import { isH5Env, isHarmonyEnv, isWeixinEnv, isiOSEnv } from "../uni-env/index.js";
|
|
3
|
+
|
|
3
4
|
//#region src/utils/native-app/index.ts
|
|
4
5
|
let plusNativeObjView;
|
|
5
6
|
/**
|
|
@@ -109,5 +110,6 @@ const checkAndRequestNativeAppPermission = (options) => {
|
|
|
109
110
|
fail === null || fail === void 0 || fail();
|
|
110
111
|
});
|
|
111
112
|
};
|
|
113
|
+
|
|
112
114
|
//#endregion
|
|
113
|
-
export { checkAndRequestNativeAppPermission };
|
|
115
|
+
export { checkAndRequestNativeAppPermission };
|
package/es/utils/obs/image.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { _objectSpread2 } from "../../_virtual/_@oxc-project_runtime@0.135.0/helpers/esm/objectSpread2.js";
|
|
2
|
+
|
|
2
3
|
//#region src/utils/obs/image.ts
|
|
3
4
|
let EObsSource = /* @__PURE__ */ function(EObsSource) {
|
|
4
5
|
/** 华为 */
|
|
@@ -105,5 +106,6 @@ function compressObsImg(url, opts) {
|
|
|
105
106
|
default: return compressTencentObsImg(url, opts);
|
|
106
107
|
}
|
|
107
108
|
}
|
|
109
|
+
|
|
108
110
|
//#endregion
|
|
109
|
-
export { EObsSource, compressHuaweiObsImg, compressObsImg };
|
|
111
|
+
export { EObsSource, compressHuaweiObsImg, compressObsImg };
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import { routePrefix } from "../../../constants/routes/index.js";
|
|
2
2
|
import { query2url } from "../../common/index.js";
|
|
3
|
+
|
|
3
4
|
//#region src/utils/pages/activity-calendar/index.ts
|
|
4
5
|
const rootPage = routePrefix.activityCalendar;
|
|
5
6
|
function getActivityCalendarDetailPage(params) {
|
|
6
7
|
return `${rootPage}/detail/index${query2url(params, { encode: false })}`;
|
|
7
8
|
}
|
|
9
|
+
|
|
8
10
|
//#endregion
|
|
9
|
-
export { getActivityCalendarDetailPage };
|
|
11
|
+
export { getActivityCalendarDetailPage };
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { query2url } from "../../common/index.js";
|
|
2
|
+
|
|
2
3
|
//#region src/utils/pages/food/index.ts
|
|
3
4
|
/**
|
|
4
5
|
* 店铺
|
|
@@ -28,5 +29,6 @@ const getFoodPackagePage = (domain, storeId, packageId, storePrecedentType) => {
|
|
|
28
29
|
storePrecedentType
|
|
29
30
|
}, { encode: false })}`;
|
|
30
31
|
};
|
|
32
|
+
|
|
31
33
|
//#endregion
|
|
32
|
-
export { getFoodPackagePage, getFoodStorePage };
|
|
34
|
+
export { getFoodPackagePage, getFoodStorePage };
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { query2url } from "../../common/index.js";
|
|
2
|
+
|
|
2
3
|
//#region src/utils/pages/movie/index.ts
|
|
3
4
|
/**
|
|
4
5
|
* 电影票地址
|
|
@@ -9,5 +10,6 @@ const getMoviePage = (domain, movie_id) => {
|
|
|
9
10
|
movie_id
|
|
10
11
|
}, { encode: false })}`;
|
|
11
12
|
};
|
|
13
|
+
|
|
12
14
|
//#endregion
|
|
13
|
-
export { getMoviePage };
|
|
15
|
+
export { getMoviePage };
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import { routes } from "../../../constants/routes/index.js";
|
|
2
2
|
import { query2url } from "../../common/index.js";
|
|
3
|
+
|
|
3
4
|
//#region src/utils/pages/webview/index.ts
|
|
4
5
|
function getWebviewPage(params) {
|
|
5
6
|
return `${routes.webView}${query2url(params)}`;
|
|
6
7
|
}
|
|
8
|
+
|
|
7
9
|
//#endregion
|
|
8
|
-
export { getWebviewPage };
|
|
10
|
+
export { getWebviewPage };
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { isAlipay, isAndroid, isApp, isH5, isHarmony, isToutiao, isWeixin, isiOS } from "@foundbyte/uni-hooks";
|
|
2
|
+
|
|
2
3
|
//#region src/utils/uni-env/index.ts
|
|
3
4
|
const isAlipayEnv = isAlipay;
|
|
4
5
|
const isH5Env = isH5;
|
|
@@ -8,5 +9,6 @@ const isAppEnv = isApp;
|
|
|
8
9
|
const isHarmonyEnv = isHarmony;
|
|
9
10
|
const isAndroidEnv = isAndroid;
|
|
10
11
|
const isiOSEnv = isiOS;
|
|
12
|
+
|
|
11
13
|
//#endregion
|
|
12
|
-
export { isAlipayEnv, isAndroidEnv, isAppEnv, isH5Env, isHarmonyEnv, isToutiaoEnv, isWeixinEnv, isiOSEnv };
|
|
14
|
+
export { isAlipayEnv, isAndroidEnv, isAppEnv, isH5Env, isHarmonyEnv, isToutiaoEnv, isWeixinEnv, isiOSEnv };
|
|
@@ -2,8 +2,12 @@ import { _asyncToGenerator } from "../../_virtual/_@oxc-project_runtime@0.135.0/
|
|
|
2
2
|
import { _objectWithoutProperties } from "../../_virtual/_@oxc-project_runtime@0.135.0/helpers/esm/objectWithoutProperties.js";
|
|
3
3
|
import { _objectSpread2 } from "../../_virtual/_@oxc-project_runtime@0.135.0/helpers/esm/objectSpread2.js";
|
|
4
4
|
import wx from "weixin-js-sdk";
|
|
5
|
+
|
|
5
6
|
//#region src/utils/web-view/index.ts
|
|
7
|
+
//! #ifdef WEB
|
|
6
8
|
const _excluded = ["shareUrl"];
|
|
9
|
+
//! #endif
|
|
10
|
+
//! #ifdef WEB
|
|
7
11
|
const userAgent = navigator.userAgent.toLowerCase();
|
|
8
12
|
/** 判断是否是iOS还是安卓 */
|
|
9
13
|
const isIOSOrAndroid = !userAgent.includes("miniprogram") && (userAgent.includes("android") || userAgent.includes("iphone") || userAgent.includes("ipad"));
|
|
@@ -38,6 +42,7 @@ function _loadWebview() {
|
|
|
38
42
|
return _loadWebview.apply(this, arguments);
|
|
39
43
|
}
|
|
40
44
|
loadWebview();
|
|
45
|
+
//! #endif
|
|
41
46
|
let env = {};
|
|
42
47
|
document.addEventListener("UniAppJSBridgeReady", function() {
|
|
43
48
|
uni.webView.getEnv(function(res) {
|
|
@@ -190,5 +195,6 @@ function objectToQueryString(obj) {
|
|
|
190
195
|
return `${encodeURI(key)}=${encodeURI(value)}`;
|
|
191
196
|
}).join("&");
|
|
192
197
|
}
|
|
198
|
+
|
|
193
199
|
//#endregion
|
|
194
|
-
export { EMessagesType, downLoadFile, getWebViewEnv, isAlipay, isAndroid, isHarmony, isIOSOrAndroid, isWeixin, isiOS, navigateBack, navigateTo, postMessage, redirectTo, setShareParam, toPay };
|
|
200
|
+
export { EMessagesType, downLoadFile, getWebViewEnv, isAlipay, isAndroid, isHarmony, isIOSOrAndroid, isWeixin, isiOS, navigateBack, navigateTo, postMessage, redirectTo, setShareParam, toPay };
|