Commit fdd01c14 by zhaochengxiang

重点关注

parent a5d65a17
...@@ -943,10 +943,14 @@ const ImportActionTable = (props) => { ...@@ -943,10 +943,14 @@ const ImportActionTable = (props) => {
}, },
}} }}
rowClassName={(record, index) => { rowClassName={(record, index) => {
if (type==='model' && record.modelingTemplateTag && record.modelingTemplateTag!=={}) { if (type==='model' && record?.modelingTemplateTag && record?.modelingTemplateTag!=={}) {
return 'editable-row template-highlight-row'; return 'editable-row template-highlight-row';
} }
if (type==='model' && record?.needAttention) {
return 'editable-row attention-row';
}
return 'editable-row'; return 'editable-row';
}} }}
onRow={(record, index) => { onRow={(record, index) => {
......
...@@ -16,4 +16,10 @@ ...@@ -16,4 +16,10 @@
background-color: #e7f7ff !important; background-color: #e7f7ff !important;
} }
} }
.attention-row {
.yy-table-cell {
background-color: #FAC7CD !important;
}
}
} }
\ No newline at end of file
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