|
|
@@ -1,7 +1,7 @@
|
|
|
import React from 'react';
|
|
|
import { Form, Input, InputNumber, Space, Card, Select, Switch } from 'antd';
|
|
|
-import { SheetConfigProps } from '../../types.ts';
|
|
|
-import FieldMapping from './FieldMapping.tsx';
|
|
|
+import { SheetConfigProps } from '../../types';
|
|
|
+import FieldMapping from './FieldMapping';
|
|
|
|
|
|
const SheetConfig: React.FC<SheetConfigProps> = ({
|
|
|
config,
|
|
|
@@ -74,6 +74,14 @@ const SheetConfig: React.FC<SheetConfigProps> = ({
|
|
|
>
|
|
|
<Input />
|
|
|
</Form.Item>
|
|
|
+ <Form.Item
|
|
|
+ label="导出工作表名称"
|
|
|
+ name="exportSheetName"
|
|
|
+ rules={[{ required: false, message: '请输入导出工作表名称' }]}
|
|
|
+ style={{ marginBottom: '8px' }}
|
|
|
+ >
|
|
|
+ <Input placeholder="默认与工作表名称相同" />
|
|
|
+ </Form.Item>
|
|
|
<Form.Item
|
|
|
label="表头行号"
|
|
|
name="headerRowIndex"
|