askbot-dragon 1.6.21-beta → 1.6.22-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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "askbot-dragon",
3
- "version": "1.6.21-beta",
3
+ "version": "1.6.22-beta",
4
4
  "scripts": {
5
5
  "serve": "vue-cli-service serve",
6
6
  "build": "vue-cli-service build",
@@ -687,15 +687,21 @@ export default {
687
687
  // this.currentPageAllLine[i].allLines.lines.push(item.extractInfo.lines)
688
688
  this.currentPageAllLine[i].allLines.push({
689
689
  pageCount: index,
690
- lines: item.extractInfo.lines
690
+ lines: item.extractInfo.lines ? item.extractInfo.lines : [{
691
+ content:"测试内容填充,不必理会",
692
+ location:item.extractInfo.location
693
+ }]
691
694
  })
692
695
  } else {
693
696
  this.currentPageAllLine.push({
694
697
  page: item.page,
695
698
  allLines: [{
696
- pageCount: index,
697
- lines: item.extractInfo.lines
698
- }],
699
+ pageCount: index,
700
+ lines: item.extractInfo.lines ? item.extractInfo.lines : [{
701
+ content:"测试内容填充,不必理会",
702
+ location:item.extractInfo.location
703
+ }]
704
+ }]
699
705
  })
700
706
  }
701
707
  })