Commit 8d364a46 by zhaochengxiang

模型编辑页面调整

parent ce8a601b
...@@ -144,7 +144,7 @@ const ImportActionHeader = (props) => { ...@@ -144,7 +144,7 @@ const ImportActionHeader = (props) => {
labelAlign="left" labelAlign="left"
rules={[{ required: true, message: '请输入中文名称!' }]} rules={[{ required: true, message: '请输入中文名称!' }]}
> >
<Input /> <Input style={{ width: 200 }} />
</Form.Item> </Form.Item>
</Col> </Col>
<Col span={8}> <Col span={8}>
...@@ -154,7 +154,7 @@ const ImportActionHeader = (props) => { ...@@ -154,7 +154,7 @@ const ImportActionHeader = (props) => {
labelAlign="left" labelAlign="left"
rules={[{ required: true, message: '请输入英文名称!' }]} rules={[{ required: true, message: '请输入英文名称!' }]}
> >
<AutoComplete options={options} onSearch={onSearch} /> <AutoComplete options={options} onSearch={onSearch} style={{ width: 200 }} />
{/* <Input /> */} {/* <Input /> */}
</Form.Item> </Form.Item>
</Col> </Col>
...@@ -165,7 +165,7 @@ const ImportActionHeader = (props) => { ...@@ -165,7 +165,7 @@ const ImportActionHeader = (props) => {
labelAlign="left" labelAlign="left"
rules={[{ required: true, message: '请输入描述!' }]} rules={[{ required: true, message: '请输入描述!' }]}
> >
<Input /> <Input style={{ width: 200 }} />
</Form.Item> </Form.Item>
</Col> </Col>
</Row> </Row>
...@@ -180,7 +180,7 @@ const ImportActionHeader = (props) => { ...@@ -180,7 +180,7 @@ const ImportActionHeader = (props) => {
<ConstraintSelect <ConstraintSelect
constraints={constraints} constraints={constraints}
onChange={onConstraintChange} onChange={onConstraintChange}
style={{ width: 150 }} style={{ width: 200 }}
/> />
</Form.Item> </Form.Item>
</Col> </Col>
...@@ -194,7 +194,7 @@ const ImportActionHeader = (props) => { ...@@ -194,7 +194,7 @@ const ImportActionHeader = (props) => {
<TemplateSelect <TemplateSelect
templates={templates} templates={templates}
onChange={onTemplateChange} onChange={onTemplateChange}
style={{ width: 150 }} style={{ width: 200 }}
/> />
</Form.Item> </Form.Item>
</Col> </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