askbot-dragon 1.7.19-beta → 1.7.20-beta
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -699,14 +699,20 @@ export default {
|
|
|
699
699
|
// this.currentPageAllLine[i].allLines.lines.push(item.extractInfo.lines)
|
|
700
700
|
this.currentPageAllLine[i].allLines.push({
|
|
701
701
|
pageCount: index,
|
|
702
|
-
lines: item.extractInfo.lines
|
|
702
|
+
lines: item.extractInfo.lines ? item.extractInfo.lines : [{
|
|
703
|
+
content:"测试内容填充,不必理会",
|
|
704
|
+
location:item.extractInfo.location
|
|
705
|
+
}]
|
|
703
706
|
})
|
|
704
707
|
} else {
|
|
705
708
|
this.currentPageAllLine.push({
|
|
706
709
|
page: item.page,
|
|
707
710
|
allLines: [{
|
|
708
711
|
pageCount: index,
|
|
709
|
-
lines: item.extractInfo.lines
|
|
712
|
+
lines: item.extractInfo.lines ? item.extractInfo.lines : [{
|
|
713
|
+
content:"测试内容填充,不必理会",
|
|
714
|
+
location:item.extractInfo.location
|
|
715
|
+
}]
|
|
710
716
|
}],
|
|
711
717
|
})
|
|
712
718
|
}
|