Commit 0e8b026a by zhaochengxiang

流程详情

parent 7cf230fc
......@@ -51,4 +51,8 @@
.@{ant-prefix}-table-thead > tr > th {
background-color: #F2F5FC !important;
}
.@{ant-prefix}-table-thead > tr > th.highlight {
background-color: #FCEBED !important;
}
}
......@@ -44,7 +44,7 @@ const FC = (props) => {
</Space>
</div>
<div>
<div className='flex mt-3' style={{ justifyContent: 'center' }}>
<div className='flex my-3' style={{ justifyContent: 'center' }}>
<h3>模型评审流程</h3>
</div>
<Descriptions bordered size='small' column={2}>
......@@ -175,9 +175,16 @@ const List = React.forwardRef(function ({}, ref) {
)
},
{
title: '评审结论',
title: <span>
<span style={{
marginRight: 4,
color: '#ff4d4f',
}}>*</span>
评审结论
</span>,
dataIndex: 'result',
width: 120,
className: 'highlight',
render: (_, __, index) => (
<Form.Item name={`result${index}`}
rules={[{ required: true, message: '请选择评审结论!' }]}
......@@ -206,6 +213,7 @@ const List = React.forwardRef(function ({}, ref) {
{
title: '评审意见',
dataIndex: 'suggest',
className: 'highlight',
render: (_, __, index) => (
<Input.TextArea rows={1}
autoSize={{ minRows: 1, maxRows: 3 }}
......
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