Commit 1f95e398 authored by FE-安焕焕's avatar FE-安焕焕 👣

修改发货订单的导出时间

parent eae364ac
...@@ -298,7 +298,7 @@ const TableList = props => { ...@@ -298,7 +298,7 @@ const TableList = props => {
onClick={() => { onClick={() => {
if (ref.current) { if (ref.current) {
const obj = { ...ref.current.getFieldsValue(), logisticsStatus: props.type || 1 }; const obj = { ...ref.current.getFieldsValue(), logisticsStatus: props.type || 1 };
obj.startTime = obj.startTime && moment(obj.start).format('YYYY-MM-DD'); obj.startTime = obj.startTime && moment(obj.startTime).format('YYYY-MM-DD');
obj.endTime = obj.endTime && moment(obj.endTime).format('YYYY-MM-DD'); obj.endTime = obj.endTime && moment(obj.endTime).format('YYYY-MM-DD');
downOrder(obj); downOrder(obj);
} }
......
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