图形数据显示规则的BUG

This commit is contained in:
qinoy 2023-02-15 17:40:16 +08:00
parent 449b5cc2ec
commit 196b49c68e

View File

@ -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++) {