component-shipinlv 0.0.27 → 0.0.28
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/lib/Tool.d.ts +1 -1
- package/dist/lib/getApiUrl.js +6 -4
- package/package.json +1 -1
package/dist/lib/Tool.d.ts
CHANGED
@@ -163,7 +163,7 @@ declare const Tool: {
|
|
163
163
|
setTimeOffset(serverTime: number): void;
|
164
164
|
getTime(): number;
|
165
165
|
h5Pay(query: Pay.H5PayQuery): void;
|
166
|
-
notification(type: "
|
166
|
+
notification(type: "info" | "error" | "success" | "warning", message: string, description?: import("react").ReactNode, options?: NotificationOptions): void;
|
167
167
|
notificationSuccess(message: string, description?: import("react").ReactNode, options?: NotificationOptions): void;
|
168
168
|
notificationError(message: string, description?: import("react").ReactNode, options?: NotificationOptions): void;
|
169
169
|
notificationWarning(message: string, description?: import("react").ReactNode, options?: NotificationOptions): void;
|
package/dist/lib/getApiUrl.js
CHANGED
@@ -8,7 +8,7 @@ var envData = function envData() {
|
|
8
8
|
return ((_window2 = window) === null || _window2 === void 0 || (_window2 = _window2.WebBaseConfig) === null || _window2 === void 0 ? void 0 : _window2.currentEnv) || currentEnv;
|
9
9
|
};
|
10
10
|
var getApiUrl = function getApiUrl() {
|
11
|
-
var
|
11
|
+
var _domain;
|
12
12
|
var apiName = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : '';
|
13
13
|
var apiEnv = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : '';
|
14
14
|
// 允许 http
|
@@ -20,7 +20,9 @@ var getApiUrl = function getApiUrl() {
|
|
20
20
|
apiName = apiName.replace(/^\//, '');
|
21
21
|
var env = getApiEnv(apiEnv || envData());
|
22
22
|
var ApiUrlsItem = ApiUrls();
|
23
|
-
var
|
23
|
+
var itemData = ApiUrlsItem[env] || ApiUrlsItem.prod;
|
24
|
+
// 高优先级;
|
25
|
+
var domain = (itemData === null || itemData === void 0 ? void 0 : itemData.authApi) || (itemData === null || itemData === void 0 ? void 0 : itemData.api);
|
24
26
|
|
25
27
|
// 删除最后一个 /
|
26
28
|
domain = ((_domain = domain) === null || _domain === void 0 ? void 0 : _domain.replace(/\/$/, '')) || '';
|
@@ -53,9 +55,9 @@ export var getEnv = function getEnv() {
|
|
53
55
|
return getApiEnv(env);
|
54
56
|
};
|
55
57
|
export var getWsUrl = function getWsUrl() {
|
56
|
-
var
|
58
|
+
var _ref;
|
57
59
|
var env = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : '';
|
58
60
|
env = getEnv(env);
|
59
|
-
return (
|
61
|
+
return (_ref = ApiUrls()[env] || ApiUrls().prod) === null || _ref === void 0 ? void 0 : _ref.ws;
|
60
62
|
};
|
61
63
|
export default getApiUrl;
|