mooho-base-admin-plus 2.10.22 → 2.10.24
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/history.md +2 -0
- package/package/mooho-base-admin-plus.min.esm.js +3 -3
- package/package/mooho-base-admin-plus.min.js +2 -2
- package/package.json +2 -1
- package/public/web.config +37 -13
- package/src/components/view/view-form.vue +1 -1
- package/src/i18n/locale/en-US.js +1 -1
- package/src/i18n/locale/lang.js +1 -1
- package/src/i18n/locale/zh-CN.js +1 -1
- package/src/libs/request/index.js +2 -0
- package/vite.config.js +9 -1
package/history.md
CHANGED
|
@@ -193,3 +193,5 @@ mooho-base-admin-plus@2.10.19 - 解决标签控件值为null报错的bug
|
|
|
193
193
|
mooho-base-admin-plus@2.10.20 - 修复上一版本bug
|
|
194
194
|
mooho-base-admin-plus@2.10.21 - 请求头增加后端请求主机地址,避免因反向代理引发无法获取真实地址的问题
|
|
195
195
|
mooho-base-admin-plus@2.10.22 - 修复上一版本的bug
|
|
196
|
+
mooho-base-admin-plus@2.10.23 - 修复上一版本的bug
|
|
197
|
+
mooho-base-admin-plus@2.10.24 - 修复onBlur事件参数错误
|
|
@@ -19515,7 +19515,7 @@ service.interceptors.request.use(
|
|
|
19515
19515
|
let r = window.$mode === "development" ? Setting.apiBaseURL.dev : Setting.apiBaseURL.prd;
|
|
19516
19516
|
a.url = r + a.url;
|
|
19517
19517
|
let o = r;
|
|
19518
|
-
r.startsWith("/") && (o = window.location.protocol + "//" + window.location.hostname, (window.location.port || "").trim() && (o = o + ":" + window.location.port)), a.headers["Request-Host"] = o;
|
|
19518
|
+
r.startsWith("/") && (o = window.location.protocol + "//" + window.location.hostname, (window.location.port || "").trim() && (o = o + ":" + window.location.port), o = o + r), a.headers["Request-Host"] = o;
|
|
19519
19519
|
const s = util$2.cookies.get("token");
|
|
19520
19520
|
return a.headers.Authorization = "Bearer " + s, router && router.currentRoute && router.currentRoute.value && (a.headers["Frontend-Url"] = router.currentRoute.value.path), a;
|
|
19521
19521
|
},
|
|
@@ -42053,8 +42053,8 @@ const tableSetting = /* @__PURE__ */ _export_sfc(_sfc_main$p, [["render", _sfc_r
|
|
|
42053
42053
|
}
|
|
42054
42054
|
},
|
|
42055
42055
|
// 输入框失去焦点事件
|
|
42056
|
-
onBlur(a
|
|
42057
|
-
this.$emit("on-blur",
|
|
42056
|
+
onBlur(a) {
|
|
42057
|
+
this.$emit("on-blur", a);
|
|
42058
42058
|
},
|
|
42059
42059
|
// 获取数据类型
|
|
42060
42060
|
getDataType(a) {
|