feat
parent
ad7cad51a3
commit
7ff7cfcffd
|
|
@ -141,12 +141,11 @@ const InternalReviewContent = ({ readOnly, ...props }) => {
|
||||||
width: 120,
|
width: 120,
|
||||||
render: (val, _, idx) => (
|
render: (val, _, idx) => (
|
||||||
<Select
|
<Select
|
||||||
value={val}
|
value={val || 'conform_to'}
|
||||||
size="small"
|
size="small"
|
||||||
style={{ width: 130 }}
|
style={{ width: 130 }}
|
||||||
allowClear
|
allowClear
|
||||||
disabled={readOnly}
|
disabled={readOnly}
|
||||||
defaultValue={'conform_to'}
|
|
||||||
placeholder="请选择结论"
|
placeholder="请选择结论"
|
||||||
onChange={(v) => updateRow(idx, "reviewConclusion", v)}
|
onChange={(v) => updateRow(idx, "reviewConclusion", v)}
|
||||||
>
|
>
|
||||||
|
|
|
||||||
|
|
@ -140,10 +140,9 @@ const TechnicalReviewContent = ({ readOnly, ...props }) => {
|
||||||
width: 120,
|
width: 120,
|
||||||
render: (val, _, idx) => (
|
render: (val, _, idx) => (
|
||||||
<Select
|
<Select
|
||||||
value={val}
|
value={val || 'conform_to'}
|
||||||
size="small"
|
size="small"
|
||||||
style={{ width: 130 }}
|
style={{ width: 130 }}
|
||||||
defaultValue={'conform_to'}
|
|
||||||
allowClear
|
allowClear
|
||||||
disabled={readOnly}
|
disabled={readOnly}
|
||||||
placeholder="请选择结论"
|
placeholder="请选择结论"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue