dev_1.2
tangjie 2026-07-30 18:16:01 +08:00
parent ad7cad51a3
commit 7ff7cfcffd
2 changed files with 2 additions and 4 deletions

View File

@ -141,12 +141,11 @@ const InternalReviewContent = ({ readOnly, ...props }) => {
width: 120,
render: (val, _, idx) => (
<Select
value={val}
value={val || 'conform_to'}
size="small"
style={{ width: 130 }}
allowClear
disabled={readOnly}
defaultValue={'conform_to'}
placeholder="请选择结论"
onChange={(v) => updateRow(idx, "reviewConclusion", v)}
>

View File

@ -140,10 +140,9 @@ const TechnicalReviewContent = ({ readOnly, ...props }) => {
width: 120,
render: (val, _, idx) => (
<Select
value={val}
value={val || 'conform_to'}
size="small"
style={{ width: 130 }}
defaultValue={'conform_to'}
allowClear
disabled={readOnly}
placeholder="请选择结论"