|
@@ -272,6 +272,7 @@ export default {
|
|
|
this.ADDEQUIPITEM(item);
|
|
|
}
|
|
|
});
|
|
|
+ console.log('anchorList',anchorList)
|
|
|
parse.relations.forEach((t) => {
|
|
|
// 设置锚点
|
|
|
if (t.anchor1Id) {
|
|
@@ -288,10 +289,10 @@ export default {
|
|
|
t.startAnchor = startAnc || null;
|
|
|
}
|
|
|
}
|
|
|
- if (t.anchor12d) {
|
|
|
+ if (t.anchor2Id) {
|
|
|
let endAnc = null;
|
|
|
anchorList.forEach((aItem) => {
|
|
|
- if (aItem.id == t.anchor12d) {
|
|
|
+ if (aItem.id == t.anchor2Id) {
|
|
|
endAnc = aItem;
|
|
|
}
|
|
|
});
|