|
@@ -1096,9 +1096,12 @@ export default {
|
|
|
cancelButtonText: "取消",
|
|
|
type: "warning",
|
|
|
}).then(() => {
|
|
|
- delWarehousebills(ids);
|
|
|
- this.msgSuccess("删除成功");
|
|
|
- this.getList();
|
|
|
+ delWarehousebills(ids).then((res) => {
|
|
|
+ if (res.code === 200) {
|
|
|
+ this.msgSuccess("删除成功");
|
|
|
+ this.getList();
|
|
|
+ }
|
|
|
+ })
|
|
|
});
|
|
|
},
|
|
|
/** 导出按钮操作 */
|