Commit f3e3976e authored by 程恺文's avatar 程恺文

流程节点去掉验证

parent e21180e6
Pipeline #78393 passed with stages
# PUBLIC_PATH = reactOMS, 默认转发 /cityinterface # PUBLIC_PATH = reactOMS, 默认转发 /cityinterface
PROXY=/PandaGIS:http://192.168.12.149:8400;/PandaWorkFlow:http://192.168.12.149:8400;/PandaCore:http://192.168.12.149:8400;/Cityinterface:http://192.168.12.149:8400;/PandaOMS:http://192.168.12.149:8400;/Publish:http://192.168.12.149:8400;/Web4:http://192.168.12.149:8400;/CityTemp:http://192.168.12.149:8400 PROXY=/PandaGIS:http://192.168.10.167:8072;/PandaWorkFlow:http://192.168.10.167:8072;/PandaCore:http://192.168.10.167:8072;/Cityinterface:http://192.168.10.167:8072;/PandaOMS:http://192.168.10.167:8072;/Publish:http://192.168.10.167:8072;/Web4:http://192.168.10.167:8072;/CityTemp:http://192.168.10.167:8072
# PROXY=/Cityinterface:http://192.168.12.121:8082;/PandaOMS:http://192.168.12.121:8082;/Web4:http://192.168.12.121:8082;/CityTemp:http://192.168.12.121:8082 # PROXY=/Cityinterface:http://192.168.12.121:8082;/PandaOMS:http://192.168.12.121:8082;/Web4:http://192.168.12.121:8082;/CityTemp:http://192.168.12.121:8082
# 可设置第二个代理,test为转发前缀,后面为代理转发的地址 # 可设置第二个代理,test为转发前缀,后面为代理转发的地址
# PROXY2 = test : http://localhost:8006/ # PROXY2 = test : http://localhost:8006/
......
...@@ -107,6 +107,7 @@ ...@@ -107,6 +107,7 @@
"cross-env": "5.0.0", "cross-env": "5.0.0",
"crypto-js": "^4.1.1", "crypto-js": "^4.1.1",
"dragm": "^0.0.5", "dragm": "^0.0.5",
"echarts-for-react": "^3.0.2",
"express": "4.16.4", "express": "4.16.4",
"fontfaceobserver": "2.1.0", "fontfaceobserver": "2.1.0",
"gojs": "2.1.49", "gojs": "2.1.49",
......
...@@ -70,7 +70,7 @@ const NodeModal = props => { ...@@ -70,7 +70,7 @@ const NodeModal = props => {
return; return;
} }
if (!obj.Fields) { if (!obj.Fields&&editMsg.NodeType==1) {
message.error('请选择编辑字段'); message.error('请选择编辑字段');
return; return;
} }
......
...@@ -435,7 +435,8 @@ const ConfigNodeMsg = (props, ref) => { ...@@ -435,7 +435,8 @@ const ConfigNodeMsg = (props, ref) => {
) : ( ) : (
'' ''
)} )}
<span style={{ marginRight: '4px', color: 'red' }}>*</span> <span style={{ marginRight: '4px', color: 'red' }}>{
editMsg.NodeType === '1'?'*':''}</span>
<span>字段编辑</span> <span>字段编辑</span>
</div> </div>
} }
......
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