cl
2026-04-13 b3fb3db3341ea98dac914f62dc94e59fe37e6b3f
rsf-admin/src/page/histories/asnOrderLog/AsnOrderLogEdit.jsx
@@ -29,7 +29,7 @@
const FormToolbar = () => {
    return (
        <Toolbar sx={{ justifyContent: 'end' }}>
            <SaveButton />
           <></>
        </Toolbar>
    )
}
@@ -54,12 +54,23 @@
                // validate={(values) => { }}
                >
                    <Grid container width={{ xs: '100%', xl: '80%' }} rowSpacing={3} columnSpacing={3}>
                        <Grid item xs={24} md={12}>
                        <Grid item xs={24} md={12} sx={{
                            "& .MuiFormLabel-root.MuiInputLabel-root.Mui-disabled":{
                            bgcolor : 'white',
                            WebkitTextFillColor: "rgba(0, 0, 0)"
                            },
                            "& .MuiInputBase-input.MuiFilledInput-input.Mui-disabled":{
                            bgcolor : 'white',
                            WebkitTextFillColor: "rgba(0, 0, 0)"
                            }
                        }}>
                            <Typography variant="h6" gutterBottom>
                                {translate('common.edit.title.main')}
                            </Typography>
                            <Stack direction='row' gap={2}>
                                <TextInput
                                disableUnderline
                                    label="table.field.asnOrderLog.code"
                                    source="code"
                                    parse={v => v}
@@ -78,14 +89,14 @@
                                />
                                <TextInput
                                    label="table.field.asnOrderLog.type"
                                    source="type"
                                    source="type$"
                                    readOnly
                                    parse={v => v}
                                    validate={required()}
                                />
                                <TextInput
                                    label="table.field.asnOrderLog.wkType"
                                    source="wkType"
                                    source="wkType$"
                                    readOnly
                                    parse={v => v}
                                    validate={required()}
@@ -115,6 +126,7 @@
                                    readOnly
                                    source="arrTime"
                                />
                                {/* 质检上报状态
                                <SelectInput
                                    label="table.field.asnOrderLog.ntyStatus"
                                    source="ntyStatus"
@@ -126,6 +138,7 @@
                                    ]}
                                    validate={required()}
                                />
                                */}
                            </Stack>
                        </Grid>
                    </Grid>