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