From dc051f7259cba24371a0a797d50578ab7f02e974 Mon Sep 17 00:00:00 2001 From: 2183691628 <2183691628@qq.com> Date: Thu, 16 Dec 2021 10:24:33 +0800 Subject: [PATCH] =?UTF-8?q?-=20=E4=BF=AE=E6=94=B9=20=E7=94=A8=E6=88=B7?= =?UTF-8?q?=E4=BE=8B=E5=A4=96=E6=90=9C=E7=B4=A2=E5=8A=9F=E8=83=BD=EF=BC=8C?= =?UTF-8?q?=E5=8F=AF=E6=A0=B9=E6=8D=AEimei=E6=90=9C=E7=B4=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 10 ++++++++-- src/utils/model.js | 4 ++-- .../off-limits-manage/user-exception/index.vue | 15 ++++----------- 3 files changed, 14 insertions(+), 15 deletions(-) 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 => {