diff --git a/README.md b/README.md index dd87587..2d6a97f 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ @@ -89,4 +89,10 @@ FIX ## v1.0.9F `2021年12月15日` FEATURE -- 修改 通用例外和用户例外状态选择方式 \ No newline at end of file +- 修改 通用例外和用户例外状态选择方式 + + +## v1.1.0F +`2021年12月16日` +FEATURE +- 修改 用户例外搜索功能,可根据imei搜索 \ No newline at end of file diff --git a/src/utils/model.js b/src/utils/model.js index aa843d7..31cadb6 100644 --- a/src/utils/model.js +++ b/src/utils/model.js @@ -1,8 +1,8 @@ /* * @Date: 2021-11-30 15:09:25 * @LastEditors: JinxuChen - * @LastEditTime: 2021-12-14 09:28:08 + * @LastEditTime: 2021-12-16 10:23:05 * @FilePath: \GpsCardAdmin\src\utils\model.js * @description: 版本号 */ -export const VersionModel = '1.0.9'; \ No newline at end of file +export const VersionModel = '1.1.0'; \ No newline at end of file diff --git a/src/views/off-limits-manage/user-exception/index.vue b/src/views/off-limits-manage/user-exception/index.vue index a184a00..d652ed0 100644 --- a/src/views/off-limits-manage/user-exception/index.vue +++ b/src/views/off-limits-manage/user-exception/index.vue @@ -1,7 +1,7 @@ @@ -202,14 +202,7 @@ export default { placeholder: '请输入内容' }; }, - watch: { - searchValue(value) { - if (value === "") { - this.form.imei = ""; - this.getList(); - } - } - }, + watch: {}, methods: { // 清空表单 resetForm() { @@ -380,8 +373,8 @@ export default { pageNumber: this.page, begNumber: this.limit, 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 => { this.list = res.data.map(m => {