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

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

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