1.点击立即处理,移除已经提交的单据

fengcang
x_z 3 years ago
parent 22d0c351a1
commit b8e07300c5

@ -625,8 +625,15 @@ export default {
.then((response) => {
if (response.code == 20000) {
this.$message.success(response.data);
this.getList();
for (let i = 0; i < this.list.length; i++) {
if (this.list[i].id === idQuery.orderId) {
this.list.splice(i, 1);
break;
}
}
this.loading = false;
} else {
this.loading = false
this.$message.error(response.message);
}
})

Loading…
Cancel
Save