Commit ee66ee81 authored by chenqikuai's avatar chenqikuai

fix

parent ba0f05a4
......@@ -167,7 +167,11 @@ const checkModifiedAndToast = (cb: any) => {
};
const handleClose = () => {
checkModifiedAndToast(() => router.push("/tracingManagement"));
checkModifiedAndToast(() => {
setTimeout(() => {
router.push("/tracingManagement");
}, 10);
});
};
const initBaseProof = async () => {
const ret = await $ajax({
......
......@@ -239,6 +239,7 @@ import ProofTable from "./components/ProofTable/index.vue";
import CopyGoods from "./components/CopyGoods/index.vue";
import DeleteGoods from "./components/DeleteGoods/index.vue";
import Increment from "./components/Increment/index.vue";
import { globalState } from "@/store/state";
import {
syButton,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment