1.修复部分bug

zhairh
x_z 2 years ago
parent 4bcd4fe31f
commit 30ea52acc1

@ -34,3 +34,11 @@ export function statDetailProducts(query) {
}); });
} }
export function clearAllProducts(data) {
return axios({
url: "/spms/prein/inv/products/clearAll",
method: "post",
data: data
});
}

@ -786,10 +786,13 @@ export default {
customClass: 'messageIndex' customClass: 'messageIndex'
}); });
} else { } else {
this.$message({ this.$alert(response.message, '提示', {
type: 'error', confirmButtonText: '确定',
message: "提交失败!" + this.editTitle, type: 'warning',
customClass: 'messageIndex' closeOnClickModal: true,
callback: action => {
this.$refs.inputRef.focus();
}
}); });
} }
} }

Loading…
Cancel
Save