|
|
@@ -350,7 +350,7 @@ export default {
|
|
|
|
|
|
//节点的单个校验未通过
|
|
|
let invalidNodes =allNodes.filter(it => {
|
|
|
- if (it.getAttrs()?.body?.stroke === 'red') {
|
|
|
+ if (!it.getData().isValid) {
|
|
|
this.$Message.warning('[' + it.getData()?.nodeName + '] 节点设置有误,请检查')
|
|
|
return true
|
|
|
}
|
|
|
@@ -559,7 +559,8 @@ export default {
|
|
|
background: #E9F1FF;
|
|
|
height: 100%;
|
|
|
width: 40%;
|
|
|
- border: solid 1px #E9F1FF;
|
|
|
+ border: solid 2px #E9F1FF;
|
|
|
+ border-right: none;
|
|
|
border-top-left-radius: 10px;
|
|
|
border-bottom-left-radius: 10px;
|
|
|
display: flex;
|
|
|
@@ -572,7 +573,8 @@ export default {
|
|
|
background: #fff;
|
|
|
height: 100%;
|
|
|
/*width: 60%;*/
|
|
|
- border: solid 1px #fff;
|
|
|
+ border: solid 2px #fff;
|
|
|
+ border-left: none;
|
|
|
border-top-right-radius: 10px;
|
|
|
border-bottom-right-radius: 10px;
|
|
|
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1);
|