Commit 8d364a46 by zhaochengxiang

模型编辑页面调整

parent ce8a601b
......@@ -144,7 +144,7 @@ const ImportActionHeader = (props) => {
labelAlign="left"
rules={[{ required: true, message: '请输入中文名称!' }]}
>
<Input />
<Input style={{ width: 200 }} />
</Form.Item>
</Col>
<Col span={8}>
......@@ -154,7 +154,7 @@ const ImportActionHeader = (props) => {
labelAlign="left"
rules={[{ required: true, message: '请输入英文名称!' }]}
>
<AutoComplete options={options} onSearch={onSearch} />
<AutoComplete options={options} onSearch={onSearch} style={{ width: 200 }} />
{/* <Input /> */}
</Form.Item>
</Col>
......@@ -165,7 +165,7 @@ const ImportActionHeader = (props) => {
labelAlign="left"
rules={[{ required: true, message: '请输入描述!' }]}
>
<Input />
<Input style={{ width: 200 }} />
</Form.Item>
</Col>
</Row>
......@@ -180,7 +180,7 @@ const ImportActionHeader = (props) => {
<ConstraintSelect
constraints={constraints}
onChange={onConstraintChange}
style={{ width: 150 }}
style={{ width: 200 }}
/>
</Form.Item>
</Col>
......@@ -194,7 +194,7 @@ const ImportActionHeader = (props) => {
<TemplateSelect
templates={templates}
onChange={onTemplateChange}
style={{ width: 150 }}
style={{ width: 200 }}
/>
</Form.Item>
</Col>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment