Browse Source

- 修复 新增/修改用户例外报错的问题

master
2183691628 2 years ago
parent
commit
79f7303064
2 changed files with 8 additions and 5 deletions
  1. +3
    -2
      README.md
  2. +5
    -3
      src/views/off-limits-manage/user-exception/index.vue

+ 3
- 2
README.md View File

@@ -1,7 +1,7 @@
<!-- <!--
* @Date: 2021-11-29 11:14:13 * @Date: 2021-11-29 11:14:13
* @LastEditors: JinxuChen * @LastEditors: JinxuChen
* @LastEditTime: 2021-12-21 11:18:11
* @LastEditTime: 2021-12-21 15:53:58
* @FilePath: \GpsCardAdmin\README.md * @FilePath: \GpsCardAdmin\README.md
* @description: * @description:
--> -->
@@ -104,4 +104,5 @@ FEATURE
IMPROVEMENT IMPROVEMENT
- 优化 首页样式 - 优化 首页样式
- 统一 输入框长度 - 统一 输入框长度
- 统一 状态判断
- 统一 状态判断
- 修复 新增/修改用户例外报错的问题

+ 5
- 3
src/views/off-limits-manage/user-exception/index.vue View File

@@ -1,7 +1,7 @@
<!-- <!--
* @Date: 2021-11-30 09:44:24 * @Date: 2021-11-30 09:44:24
* @LastEditors: JinxuChen * @LastEditors: JinxuChen
* @LastEditTime: 2021-12-21 11:51:10
* @LastEditTime: 2021-12-21 15:57:01
* @FilePath: \GpsCardAdmin\src\views\off-limits-manage\user-exception\index.vue * @FilePath: \GpsCardAdmin\src\views\off-limits-manage\user-exception\index.vue
* @description: * @description:
--> -->
@@ -229,7 +229,8 @@ export default {
status: this.form.status, status: this.form.status,
glat: 0, glat: 0,
glng: 0, glng: 0,
address: "",
type: 'user',
address: this.form.content,
postCode: "" postCode: ""
}; };
this.$refs[formName].validate(valid => { this.$refs[formName].validate(valid => {
@@ -275,7 +276,8 @@ export default {
status: this.form.status, status: this.form.status,
glat: 0, glat: 0,
glng: 0, glng: 0,
address: "",
type: 'user',
address: this.form.content,
postCode: "" postCode: ""
}; };
this.$refs[formName].validate(valid => { this.$refs[formName].validate(valid => {


Loading…
Cancel
Save