| | |
| | | value={formData.type} |
| | | onChange={(e) => handleChange(+e.target.value, 'type')} |
| | | size="small" |
| | | dictTypeCode="sys_bill_type" |
| | | dictTypeCode="sys_order_type" |
| | | /> |
| | | |
| | | </Grid> |
| | | |
| | | {/* <Grid item xs={4}> |
| | | <TextField |
| | | label={translate('table.field.asnOrder.wkType')} |
| | | name="wkType" |
| | | value={formData.wkType} |
| | | onChange={handleChange} |
| | | variant="outlined" |
| | | size="small" |
| | | /> |
| | | </Grid> */} |
| | | <Grid item xs={4}> |
| | | <DictionarySelect |
| | | label={translate("table.field.asnOrder.wkType")} |
| | | name="wkType" |
| | | value={formData.wkType} |
| | | onChange={(e) => handleChange(+e.target.value, 'wkType')} |
| | | size="small" |
| | | dictTypeCode="sys_business_type" |
| | | /> |
| | | </Grid> |
| | | </Grid> |
| | | </Form> |
| | | </Box> |
| | |
| | | <DialogActions sx={{ position: 'sticky', bottom: 0, backgroundColor: 'background.paper', zIndex: 1000 }}> |
| | | <Toolbar sx={{ width: '100%', justifyContent: 'space-between' }} > |
| | | <Button onClick={handleSubmit} variant="contained" startIcon={<SaveIcon />}> |
| | | 确认 |
| | | {translate('toolbar.confirm')} |
| | | </Button> |
| | | </Toolbar> |
| | | </DialogActions> |