|
@@ -4,7 +4,7 @@ import ImageLazy from "@/components/ImageLazy";
|
|
|
import LookModal from "@/components/LookObjTable/LookModal";
|
|
|
import { RootState } from "@/store";
|
|
|
import { object4infoOutAPI, returnObject4API } from "@/store/action/object4";
|
|
|
-import { statusObjCK } from "@/utils/dataChange";
|
|
|
+import { statusObjCK2 } from "@/utils/dataChange";
|
|
|
import history, { urlParameter } from "@/utils/history";
|
|
|
import { Button, message, Popconfirm, Table } from "antd";
|
|
|
import React, {
|
|
@@ -33,7 +33,7 @@ function LookObject4() {
|
|
|
const res1 = await object4infoOutAPI(id);
|
|
|
const info = res1.data.entity;
|
|
|
const list = res1.data.child;
|
|
|
- info.statusTxt = statusObjCK[info.status];
|
|
|
+ info.statusTxt = statusObjCK2[info.status];
|
|
|
dispatch({ type: "object4/getLookInfo", payload: { info, list } });
|
|
|
}, [dispatch]);
|
|
|
|