图形数据显示规则的BUG
This commit is contained in:
parent
449b5cc2ec
commit
196b49c68e
@ -4069,18 +4069,18 @@ var Designer = {
|
||||
}
|
||||
}
|
||||
var key = q.name;
|
||||
if (specialShapeConfig == undefined || specialShapeConfig.length == 0) {
|
||||
if (specialShapeConfig == undefined) {
|
||||
if (commonShapeConfig != undefined && commonShapeConfig[key] != undefined) {
|
||||
commonShapeConfig = commonShapeConfig[key];
|
||||
this.handleShapeConfigData(commonShapeConfig, q, attributesJsonArray);
|
||||
}
|
||||
} else {
|
||||
if (commonShapeConfig == undefined || commonShapeConfig.length == 0) {
|
||||
if (commonShapeConfig == undefined) {
|
||||
this.handleShapeConfigData(Utils.copy(specialShapeConfig), q, attributesJsonArray);
|
||||
} else {
|
||||
commonShapeConfig = commonShapeConfig[key];
|
||||
var tempCommonShapeConfig = [];
|
||||
if (commonShapeConfig != undefined && commonShapeConfig.length > 0) {
|
||||
if (commonShapeConfig != undefined) {
|
||||
var dataArray = [];
|
||||
var tempArray = [];
|
||||
for (i = 0; i < commonShapeConfig.length; i++) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user