Преглед изворни кода

Merge branch 'bugfix-user-exeception' into develop

master
2183691628 пре 2 година
родитељ
комит
731a430f2f
2 измењених фајлова са 9 додато и 7 уклоњено
  1. +3
    -2
      README.md
  2. +6
    -5
      src/views/off-limits-manage/user-exception/index.vue

+ 3
- 2
README.md Прегледај датотеку

@@ -1,7 +1,7 @@
<!--
* @Date: 2021-11-29 11:14:13
* @LastEditors: JinxuChen
* @LastEditTime: 2021-12-28 10:38:12
* @LastEditTime: 2021-12-28 16:57:21
* @FilePath: \GpsCardAdmin\README.md
* @description:
-->
@@ -135,4 +135,5 @@ FIX
## v1.1.5F
`2021年12月28日`
FEA
- 修改 增加/修改通用例外接口
- 修改 增加/修改通用例外接口
- 修改 增加/修改用户例外接口

+ 6
- 5
src/views/off-limits-manage/user-exception/index.vue Прегледај датотеку

@@ -1,7 +1,7 @@
<!--
* @Date: 2021-11-30 09:44:24
* @LastEditors: JinxuChen
* @LastEditTime: 2021-12-23 15:45:42
* @LastEditTime: 2021-12-28 17:00:02
* @FilePath: \GpsCardAdmin\src\views\off-limits-manage\user-exception\index.vue
* @description:
-->
@@ -198,7 +198,8 @@ export default {
}
]
},
placeholder: '请输入内容'
placeholder: '请输入内容',
postCode: '000000', //默认参数,邮编,传给后台的默认参数
};
},
watch: {},
@@ -231,7 +232,7 @@ export default {
glng: 0,
type: 'user',
address: this.form.content,
postCode: ""
postCode: this.postCode
};
this.$refs[formName].validate(valid => {
if (valid) {
@@ -278,7 +279,7 @@ export default {
glng: 0,
type: 'user',
address: this.form.content,
postCode: ""
postCode: this.postCode
};
this.$refs[formName].validate(valid => {
if (valid) {
@@ -347,7 +348,7 @@ export default {
glat: 0,
glng: 0,
address: "",
postCode: ""
postCode: this.postCode
};
if (this.model != "") {
APIExceptionGen.changeRecognitionGen(reqBody).then(res => {


Loading…
Откажи
Сачувај