af-mobile-client-vue3 1.0.96 → 1.0.98

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,7 +1,7 @@
1
1
  {
2
2
  "name": "af-mobile-client-vue3",
3
3
  "type": "module",
4
- "version": "1.0.96",
4
+ "version": "1.0.98",
5
5
  "description": "Vue + Vite component lib",
6
6
  "license": "MIT",
7
7
  "engines": {
@@ -31,6 +31,7 @@
31
31
  "echarts": "^5.6.0",
32
32
  "lodash-es": "^4.17.21",
33
33
  "nprogress": "^0.2.0",
34
+ "ol": "^10.5.0",
34
35
  "pinia": "^3.0.2",
35
36
  "pinia-plugin-persistedstate": "^4.2.0",
36
37
  "qs": "^6.14.0",
@@ -135,7 +135,7 @@ class Http {
135
135
 
136
136
  constructor(config: AxiosRequestConfig) {
137
137
  Http.axiosConfigDefault = config
138
- Http.axiosInstance = Axios.create(config)
138
+ Http.axiosInstance = axios.create(config)
139
139
  this.httpInterceptorsRequest()
140
140
  this.httpInterceptorsResponse()
141
141
  }