haiwei-ui 1.4.4 → 1.4.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "haiwei-ui",
3
- "version": "1.4.4",
3
+ "version": "1.4.5",
4
4
  "description": "HaiWei前端组件库",
5
5
  "author": "Eric",
6
6
  "license": "ISC",
@@ -300,6 +300,11 @@ export default {
300
300
  ...mapState('app/user', { token: 'token' }),
301
301
  uploadUrl() {
302
302
  let baseURL = this.$http?.axios?.defaults?.baseURL || window.__HAIWEI_API_BASE_URL__ || '/api'
303
+
304
+ console.log('this.$http?.axios?.defaults?.baseURL', this.$http?.axios?.defaults?.baseURL);
305
+ console.log('window.__HAIWEI_API_BASE_URL__', window.__HAIWEI_API_BASE_URL__);
306
+ console.log('baseURL', baseURL);
307
+
303
308
  if (!baseURL.endsWith('/')) {
304
309
  baseURL += '/'
305
310
  }