cloud-web-corejs 1.0.148 → 1.0.150

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": "cloud-web-corejs",
3
3
  "private": false,
4
- "version": "1.0.148",
4
+ "version": "1.0.150",
5
5
  "scripts": {
6
6
  "dev": "vue-cli-service serve",
7
7
  "lint": "eslint --ext .js,.vue src",
@@ -168,6 +168,8 @@
168
168
  "src/store",
169
169
  "src/resources/js",
170
170
  "src/lang/index.js",
171
+ "src/lang/locale/en/login.js",
172
+ "src/lang/locale/zh/login.js",
171
173
  "src/layout",
172
174
  "src/filters",
173
175
  "src/router",
package/src/api/user.js CHANGED
@@ -89,3 +89,11 @@ export function getBdFlag(option) {
89
89
  ...option
90
90
  })
91
91
  }
92
+
93
+ export function getFileServerInfo(option){
94
+ return request({
95
+ url: USER_PREFIX + "/logic_param/getFileServerInfo",
96
+ method: "post",
97
+ ...option
98
+ })
99
+ }