获取未绑卡信息优化

This commit is contained in:
caoqianming 2022-10-25 16:10:38 +08:00
parent b62f16c80e
commit ad026ef8d5
1 changed files with 2 additions and 5 deletions

View File

@ -75,11 +75,8 @@
methods: {
getBltList() {
let that = this;
that.$API.third.tdevice.list.req({ type: 30, page: 0 }).then((res) => {
that.tdevice = res;
that.bltList = res.filter((item) => {
return item.employee_ === null;
});
that.$API.third.tdevice.list.req({ type: 30, page: 0, state:'unused', query: '{id, code}'}).then((res) => {
that.bltList = res;
});
},