vue2-client 1.6.38 → 1.6.39

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/CHANGELOG.md CHANGED
@@ -1,6 +1,9 @@
1
1
  # Change Log
2
2
  > 所有关于本项目的变化都在该文档里。
3
3
 
4
+ **1.6.39 -2023-06-07 @江超**
5
+ - Login增加V2系统版本的兼容
6
+
4
7
  **1.6.38 -2023-05-30 @江超**
5
8
  - V3登录加密
6
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vue2-client",
3
- "version": "1.6.38",
3
+ "version": "1.6.39",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -88,6 +88,7 @@ export default {
88
88
  const name = this.form.getFieldValue('name')
89
89
  const password = this.form.getFieldValue('password')
90
90
  switch (this.compatible) {
91
+ case 'V2':
91
92
  case 'V3': {
92
93
  login(name, password).then(this.afterLogin).catch(msg => {
93
94
  this.error = msg