|
@@ -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-15 16:43:36 |
|
|
|
|
|
|
|
|
* @LastEditTime: 2021-12-16 10:20:45 |
|
|
* @FilePath: \GpsCardAdmin\src\views\off-limits-manage\user-exception\index.vue |
|
|
* @FilePath: \GpsCardAdmin\src\views\off-limits-manage\user-exception\index.vue |
|
|
* @description: |
|
|
* @description: |
|
|
--> |
|
|
--> |
|
@@ -202,14 +202,7 @@ export default { |
|
|
placeholder: '请输入内容' |
|
|
placeholder: '请输入内容' |
|
|
}; |
|
|
}; |
|
|
}, |
|
|
}, |
|
|
watch: { |
|
|
|
|
|
searchValue(value) { |
|
|
|
|
|
if (value === "") { |
|
|
|
|
|
this.form.imei = ""; |
|
|
|
|
|
this.getList(); |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
watch: {}, |
|
|
methods: { |
|
|
methods: { |
|
|
// 清空表单 |
|
|
// 清空表单 |
|
|
resetForm() { |
|
|
resetForm() { |
|
@@ -380,8 +373,8 @@ export default { |
|
|
pageNumber: this.page, |
|
|
pageNumber: this.page, |
|
|
begNumber: this.limit, |
|
|
begNumber: this.limit, |
|
|
type: "system", |
|
|
type: "system", |
|
|
imei: this.form.imei, |
|
|
|
|
|
keyword: this.searchValue |
|
|
|
|
|
|
|
|
imei: this.searchValue.length === 15 ? this.searchValue : "", |
|
|
|
|
|
keyword: this.searchValue.length === 15 ? "" :this.searchValue |
|
|
}; |
|
|
}; |
|
|
APIExceptionUser.getRecognitionUser(reqBody).then(res => { |
|
|
APIExceptionUser.getRecognitionUser(reqBody).then(res => { |
|
|
this.list = res.data.map(m => { |
|
|
this.list = res.data.map(m => { |
|
|