Commit ff14b7fe authored by krysent's avatar krysent

new

parent 5075c95d
......@@ -247,7 +247,11 @@ function Outstore(props) {
key: "documentsState",
search: false,
render: (_, row) => {
return "已完成";
if (row?.documentsState == "2") {
return "已完成";
} else {
return "已关单";
}
},
},
];
......
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