Commit 56ce24b5 authored by TZW's avatar TZW

ddd

parent 6786a15d
This diff is collapsed.
......@@ -134,6 +134,7 @@ const TagView = ({ children, home }) => {
setrefresh(true);
};
console.log(tagList);
return (
<>
<RouteContext.Consumer>
......
......@@ -409,6 +409,9 @@ function getcolumns(setdrawer) {
key: 'checkStartTime',
hideInForm: true,
hideInSearch: true,
render: (text, row, _, action) => {
return <span>{row.checkStartTime}</span>;
},
},
{
title: '关单时间',
......
......@@ -227,7 +227,7 @@ function getcolumns(setdrawer) {
hideInForm: true,
valueType: 'dateTimeRange',
render: (text, row) => {
return <span>{row?.createTimes}</span>;
return <span style={{ fontSize: 14 }}>{row?.createTimes}</span>;
},
},
{
......
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