Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
CivManage
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ReactWeb5
CivManage
Commits
c1162135
Commit
c1162135
authored
Dec 05, 2022
by
皮倩雯
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: '宿主管理去掉代理配置模块'
parent
74849963
Pipeline
#64942
passed with stages
Changes
4
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
29 additions
and
25 deletions
+29
-25
AddModal.jsx
src/pages/bsmanager/workOrder/incident/AddModal.jsx
+3
-3
flowNode.jsx
src/pages/bsmanager/workOrder/workFlow/flowNode/flowNode.jsx
+12
-12
NodeEdit.jsx
...rkOrder/workFlow/flowNode/flowNodeComponents/NodeEdit.jsx
+12
-8
index.jsx
src/pages/platformCenter/hostmanager/index.jsx
+2
-2
No files found.
src/pages/bsmanager/workOrder/incident/AddModal.jsx
View file @
c1162135
...
...
@@ -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
,
...
...
src/pages/bsmanager/workOrder/workFlow/flowNode/flowNode.jsx
View file @
c1162135
...
...
@@ -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'
,
...
...
src/pages/bsmanager/workOrder/workFlow/flowNode/flowNodeComponents/NodeEdit.jsx
View file @
c1162135
...
...
@@ -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
:
'2
18
px'
}
}
style=
{
{
width
:
'2
09
px'
}
}
>
{
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
}
...
...
src/pages/platformCenter/hostmanager/index.jsx
View file @
c1162135
...
...
@@ -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
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment