|
@@ -90,9 +90,9 @@ const ContentAreaLarge = () => {
|
|
positionRef.current = selectedBodyPosition;
|
|
positionRef.current = selectedBodyPosition;
|
|
|
|
|
|
return (
|
|
return (
|
|
- <Row className="w-full p-1">
|
|
|
|
- <Col span={20}>
|
|
|
|
- <Row gutter={16} className="h-full">
|
|
|
|
|
|
+ <Row className="w-full p-1" style={{ height: '100%', display: 'flex' }}>
|
|
|
|
+ <Col span={20} style={{ display: 'flex', flexDirection: 'column' }}>
|
|
|
|
+ <Row gutter={16} style={{ flex: 1, minHeight: 0, display: 'flex' }}>
|
|
<Col span={4} className="flex flex-col">
|
|
<Col span={4} className="flex flex-col">
|
|
<BodyPositionList layout="vertical"></BodyPositionList>
|
|
<BodyPositionList layout="vertical"></BodyPositionList>
|
|
</Col>
|
|
</Col>
|
|
@@ -101,7 +101,10 @@ const ContentAreaLarge = () => {
|
|
</Col>
|
|
</Col>
|
|
</Row>
|
|
</Row>
|
|
</Col>
|
|
</Col>
|
|
- <Col span={4}>
|
|
|
|
|
|
+ <Col
|
|
|
|
+ span={4}
|
|
|
|
+ style={{ height: '100%', overflowY: 'auto', flexShrink: 0 }}
|
|
|
|
+ >
|
|
<Row gutter={16} align="middle">
|
|
<Row gutter={16} align="middle">
|
|
<Col span={productName === 'DROS' ? 9 : 24}>
|
|
<Col span={productName === 'DROS' ? 9 : 24}>
|
|
<Select
|
|
<Select
|
|
@@ -253,25 +256,37 @@ const ContentAreaLarge = () => {
|
|
/>
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
- <Flex align="center" justify="start" gap="middle" wrap>
|
|
|
|
|
|
+ <div>
|
|
|
|
+ <label
|
|
|
|
+ style={{ display: 'block', marginBottom: 4, fontSize: '12px' }}
|
|
|
|
+ >
|
|
|
|
+ 曝光模式
|
|
|
|
+ </label>
|
|
<Select
|
|
<Select
|
|
placeholder="选择曝光模式"
|
|
placeholder="选择曝光模式"
|
|
value={currentExposureMode}
|
|
value={currentExposureMode}
|
|
onChange={handleExposureModeChange}
|
|
onChange={handleExposureModeChange}
|
|
- style={{ width: '2rem' }}
|
|
|
|
|
|
+ style={{ width: '100%', marginBottom: 8 }}
|
|
>
|
|
>
|
|
<Select.Option value="mAs">mAs</Select.Option>
|
|
<Select.Option value="mAs">mAs</Select.Option>
|
|
<Select.Option value="time">time</Select.Option>
|
|
<Select.Option value="time">time</Select.Option>
|
|
</Select>
|
|
</Select>
|
|
-
|
|
|
|
|
|
+ </div>
|
|
|
|
+ <div>
|
|
|
|
+ <label
|
|
|
|
+ style={{ display: 'block', marginBottom: 4, fontSize: '12px' }}
|
|
|
|
+ >
|
|
|
|
+ AEC
|
|
|
|
+ </label>
|
|
<Switch
|
|
<Switch
|
|
checkedChildren="开启AEC"
|
|
checkedChildren="开启AEC"
|
|
unCheckedChildren="关闭AEC"
|
|
unCheckedChildren="关闭AEC"
|
|
checked={isAECEnabled}
|
|
checked={isAECEnabled}
|
|
onChange={handleAECChange}
|
|
onChange={handleAECChange}
|
|
- style={{ width: '1.5rem' }}
|
|
|
|
|
|
+ style={{ marginBottom: 8 }}
|
|
/>
|
|
/>
|
|
-
|
|
|
|
|
|
+ </div>
|
|
|
|
+ <Flex align="center" justify="start" gap="middle" wrap>
|
|
<Button
|
|
<Button
|
|
style={{ width: '1.5rem', height: '1.5rem' }}
|
|
style={{ width: '1.5rem', height: '1.5rem' }}
|
|
icon={
|
|
icon={
|