async printList(item) {
async printList(item) {
let res = new Promise(async (resolve, reject) => {
this.Print.printShow = true;
this.Print.printItem = item;
console.log(item)
await this.$nextTick(async el => {
await window.print()
});
resolve();
})
await res;
},