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

fix: '宿主管理去掉代理配置模块'

parent 74849963
Pipeline #64942 passed with stages
......@@ -641,10 +641,10 @@ const AddModal = props => {
setIm(res.data.root.ImageExpression);
} else {
form.setFieldsValue({
ImageExpression: '',
ImageExpression: 'assets/images/caseCenter/events/通用问题1.png',
});
setImageUrl('');
setIm('');
setImageUrl('assets/images/caseCenter/events/通用问题1.png');
setIm('assets/images/caseCenter/events/通用问题1.png');
}
LoadEventFields({
eventTableName: res.data.root.TableName,
......
......@@ -174,13 +174,13 @@ const FlowNode = () => {
width: 100,
render: (text, record) => <span style={{ color: textStyleOne(text, record) }}>{text}</span>,
},
// {
// title: '节点类型',
// dataIndex: 'extendNodeType',
// align: 'center',
// width: 80,
// render: (text, record) => <span style={{ color: textStyleOne(text, record) }}>{text}</span>,
// },
{
title: '节点类型',
dataIndex: 'extendNodeType',
align: 'center',
width: 80,
render: (text, record) => <span style={{ color: textStyleOne(text, record) }}>{text}</span>,
},
{
title: '工单主表',
dataIndex: 'extendTableName',
......@@ -404,11 +404,11 @@ const FlowNode = () => {
align: 'center',
width: 100,
},
// {
// title: '节点类型',
// align: 'center',
// width: 80,
// },
{
title: '节点类型',
align: 'center',
width: 80,
},
{
title: '工单主表',
align: 'center',
......
......@@ -444,9 +444,9 @@ const NodeEdit = props => {
>
<Input placeholder="请输入节点别名" />
</Form.Item>
<Form.Item>
{/* <Form.Item name="NodeType" style={{ marginBottom: '10px' }}>
<Select placeholder="请选择节点类型">
<Form.Item label="节点类型">
<Form.Item name="NodeType" style={{ marginBottom: '10px' }}>
<Select placeholder="请选择节点类型" style={{ width: '334px' }}>
<Option value="办理">办理</Option>
<Option value="上报">上报</Option>
<Option value="分派">分派</Option>
......@@ -454,14 +454,13 @@ const NodeEdit = props => {
<Option value="办理关单">办理关单</Option>
</Select>
</Form.Item>
<Form.Item name="EditableLater" valuePropName="checked" style={{ marginBottom: 0 }}>
{/* <Form.Item name="EditableLater" valuePropName="checked" style={{ marginBottom: 0 }}>
<Checkbox>允许补正(事后修改)</Checkbox>
</Form.Item> */}
<Row span={24}>
<Col span={6} />
<Col span={9}>
<Form.Item name="Rollbackable" valuePropName="checked" style={{ marginBottom: 0 }}>
<Checkbox style={{ marginLeft: '10px' }}>允许回退至</Checkbox>
<Checkbox>允许回退至</Checkbox>
</Form.Item>
</Col>
<Col span={9}>
......@@ -469,7 +468,7 @@ const NodeEdit = props => {
<Select
disabled={isDisable}
placeholder="请选择回退节点"
style={{ width: '218px' }}
style={{ width: '209px' }}
>
{backNodes.map(item => (
<Option value={item.Name} key={item.ID}>
......@@ -482,7 +481,12 @@ const NodeEdit = props => {
</Row>
</Form.Item>
<Form.Item label="工单主表" name="TableName">
<Select placeholder="请选择工单主表" onChange={changTable} showSearch>
<Select
placeholder="请选择工单主表"
onChange={changTable}
showSearch
style={{ width: '100%' }}
>
{eventTable.map(item => (
<Option value={item.Name} key={item.ID}>
{item.Name}
......
......@@ -24,9 +24,9 @@ const HostManager = () => {
<TabPane tab="消息配置" key="3">
<MessageConfig />
</TabPane>
<TabPane tab="代理配置" key="4">
{/* <TabPane tab="代理配置" key="4">
<ProxyConfig />
</TabPane>
</TabPane> */}
<TabPane tab="网关配置" key="5">
<GateConfig />
</TabPane>
......
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