@@ -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();
+ }
+ })
});
},
/** 导出按钮操作 */
@@ -707,7 +707,6 @@ export default {
// 分项导出
handleSubItemExport(){
- console.log('分项导出点击了');
this.$confirm("是否确认导出分项所有账单明细数据项?","警告",{
confirmButtonText: "确定",