|
@@ -161,10 +161,16 @@ class PublicSummary extends Component {
|
|
|
dataIndex: "status",
|
|
|
key: "status",
|
|
|
width: 40,
|
|
|
- render: (text) => (
|
|
|
- <Tag color={getClockState(text).color}>
|
|
|
- {getClockState(text).title}
|
|
|
- </Tag>
|
|
|
+ render: (text, record) => (
|
|
|
+ <div style={{ display: "flex", flexDirection: "row" }}>
|
|
|
+ <Tag color={getClockState(text).color}>
|
|
|
+ {getClockState(text).title}
|
|
|
+ </Tag>
|
|
|
+ {record.updateStatus == 1 && <Tag color="#1E90FF">改</Tag>}
|
|
|
+ </div>
|
|
|
+ // <Tag color={getClockState(text).color}>
|
|
|
+ // {getClockState(text).title}
|
|
|
+ // </Tag>
|
|
|
),
|
|
|
},
|
|
|
{
|