tangjie 2026-08-03 15:45:58 +08:00
parent 6d6b3e14ad
commit 9c33047c27
3 changed files with 6 additions and 4 deletions

View File

@ -12,8 +12,8 @@ module.exports = {
// 可通过环境变量覆盖: SAFETY_EVAL_API_HOST=http://192.168.x.x:8095
// API_HOST: "https://gbs-gateway.qhdsafety.com",
API_HOST: "http://192.168.0.134",
//API_HOST: "http://192.168.0.150", //太浅
// API_HOST: "http://192.168.0.134",
API_HOST: "http://192.168.0.150", //太浅
// API_HOST: "http://192.168.0.152",
//API_HOST: "http://192.168.0.103", //huwei
},

View File

@ -57,6 +57,7 @@ const InternalReviewContent = ({ readOnly, ...props }) => {
setRows(
reviewItems.map((item) => ({
...item,
reviewConclusion: item.reviewConclusion || "conform_to",
_key: item.id || item.reviewDimensionCode,
})),
);
@ -141,7 +142,7 @@ const InternalReviewContent = ({ readOnly, ...props }) => {
width: 120,
render: (val, _, idx) => (
<Select
value={val || 'conform_to'}
value={val}
size="small"
style={{ width: 130 }}
allowClear

View File

@ -55,6 +55,7 @@ const TechnicalReviewContent = ({ readOnly, ...props }) => {
setRows(
reviewItems.map((item) => ({
...item,
reviewConclusion: item.reviewConclusion || "conform_to",
_key: item.id || item.reviewDimensionCode,
})),
);
@ -140,7 +141,7 @@ const TechnicalReviewContent = ({ readOnly, ...props }) => {
width: 120,
render: (val, _, idx) => (
<Select
value={val || 'conform_to'}
value={val}
size="small"
style={{ width: 130 }}
allowClear