fix:检验管理的检验人查询条件全部用posts__code__contains: "check"

This commit is contained in:
shijing 2024-08-20 13:48:25 +08:00
parent 20890b5532
commit ca9b281834
3 changed files with 3 additions and 4 deletions

View File

@ -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;
});

View File

@ -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;
});

View File

@ -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;
});