custom-vxe-table 2.2.7-20 → 2.2.7-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/lib/index.common.js +1 -1
- package/lib/index.umd.js +1 -1
- package/lib/index.umd.min.js +1 -1
- package/package.json +1 -1
package/lib/index.common.js
CHANGED
|
@@ -63034,7 +63034,7 @@ axios_default.a.interceptors.response.use(function (res) {
|
|
|
63034
63034
|
function handleUrl(apiBaseURL, url) {
|
|
63035
63035
|
var rUrl = "";
|
|
63036
63036
|
|
|
63037
|
-
if (url.indexOf("http")
|
|
63037
|
+
if (url.indexOf("http") < 0) {
|
|
63038
63038
|
if (apiBaseURL) {
|
|
63039
63039
|
rUrl = apiBaseURL + "/" + url;
|
|
63040
63040
|
} else {
|
package/lib/index.umd.js
CHANGED
|
@@ -63043,7 +63043,7 @@ axios_default.a.interceptors.response.use(function (res) {
|
|
|
63043
63043
|
function handleUrl(apiBaseURL, url) {
|
|
63044
63044
|
var rUrl = "";
|
|
63045
63045
|
|
|
63046
|
-
if (url.indexOf("http")
|
|
63046
|
+
if (url.indexOf("http") < 0) {
|
|
63047
63047
|
if (apiBaseURL) {
|
|
63048
63048
|
rUrl = apiBaseURL + "/" + url;
|
|
63049
63049
|
} else {
|