From ca9b2818344a782154aedc8a798c3da1738986b9 Mon Sep 17 00:00:00 2001 From: shijing Date: Tue, 20 Aug 2024 13:48:25 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E6=A3=80=E9=AA=8C=E7=AE=A1=E7=90=86?= =?UTF-8?q?=E7=9A=84=E6=A3=80=E9=AA=8C=E4=BA=BA=E6=9F=A5=E8=AF=A2=E6=9D=A1?= =?UTF-8?q?=E4=BB=B6=E5=85=A8=E9=83=A8=E7=94=A8posts=5F=5Fcode=5F=5Fcontai?= =?UTF-8?q?ns:=20"check"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/qm/behavior_form.vue | 2 +- src/views/qm/first_check.vue | 2 +- src/views/qm/productCheck.vue | 3 +-- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/src/views/qm/behavior_form.vue b/src/views/qm/behavior_form.vue index bc25f4c3..6b95f43b 100644 --- a/src/views/qm/behavior_form.vue +++ b/src/views/qm/behavior_form.vue @@ -388,7 +388,7 @@ export default { getUserList() { let that = this; this.$API.system.user.list - .req({ page: 0, posts__name: "检验" }) + .req({ page: 0, posts__code__contains: "check" }) .then((res) => { that.userList = res; }); diff --git a/src/views/qm/first_check.vue b/src/views/qm/first_check.vue index 8257e605..aefbb318 100644 --- a/src/views/qm/first_check.vue +++ b/src/views/qm/first_check.vue @@ -280,7 +280,7 @@ export default { getUserList() { let that = this; this.$API.system.user.list - .req({ page: 0, posts__name: "检验" }) + .req({ page: 0, posts__code__contains: "check" }) .then((res) => { that.userList = res.results; }); diff --git a/src/views/qm/productCheck.vue b/src/views/qm/productCheck.vue index 1a79c1f0..1888a5ce 100644 --- a/src/views/qm/productCheck.vue +++ b/src/views/qm/productCheck.vue @@ -336,8 +336,7 @@ export default { getUserList() { let that = this; this.$API.system.user.list - // .req({ page: 0, posts__name: "检验" }) - .req({ page: 0 }) + .req({ page: 0, posts__code__contains: "check" }) .then((res) => { that.userList = res; });