Commit de6008e8 authored by 皮倩雯's avatar 皮倩雯

fix: '修改事件受理流程,辅助视图界面样式'

parent 66f20aef
Pipeline #43256 passed with stages
in 7 minutes 10 seconds
......@@ -367,7 +367,7 @@ const AddFlowsModal = props => {
<Drawer
title={type === 'add' ? '添加受理流程' : '编辑受理流程'}
visible={visible}
width="600px"
width="500px"
onClose={onClose}
destroyOnClose
footer={
......@@ -380,15 +380,11 @@ const AddFlowsModal = props => {
>
<Form form={form} labelCol={{ span: 7 }} style={{ overflowY: 'scroll' }}>
<Row>
<Col span={23}>
<Col span={24}>
{type === 'edit' ? (
<>
<Item label="受理流程" name="FlowName" labelCol={{ span: 4 }}>
<Select
placeholder="选择受理流程"
placeholder={selectValue}
disabled
>
<Select placeholder="选择受理流程" placeholder={selectValue} disabled>
{standingTable
? standingTable.map((item, index) => (
<Option key={index} value={item}>
......@@ -415,7 +411,7 @@ const AddFlowsModal = props => {
</>
)}
</Col>
<Col span={23}>
<Col span={24}>
<Item label="受理权限" name="Roles" labelCol={{ span: 4 }}>
<div className={styles.filed_listItem}>
<Input
......@@ -429,7 +425,7 @@ const AddFlowsModal = props => {
type="dashed"
onClick={() => pickFiled1('Roles')}
icon={<PlusOutlined style={{ marginTop: '5px' }} />}
style={{ marginLeft: '0.5rem', width: '4rem' }}
style={{ marginLeft: '5px', width: '58px' }}
/>
</div>
</Item>
......
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