askbot-dragon 0.7.77 → 0.7.78
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
|
@@ -297,15 +297,19 @@ export default {
|
|
|
297
297
|
let groupNumber = this.aiGuide.content.groupNumber;
|
|
298
298
|
|
|
299
299
|
this.totalPage = Math.ceil(len / groupNumber);
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
300
|
+
if (this.aiGuide.content.groupVisible) {
|
|
301
|
+
arr = list.slice(
|
|
302
|
+
(this.activePage - 1) * groupNumber,
|
|
303
|
+
this.activePage * groupNumber
|
|
304
|
+
);
|
|
305
|
+
} else {
|
|
306
|
+
arr = list;
|
|
307
|
+
}
|
|
304
308
|
}
|
|
305
309
|
return arr;
|
|
306
310
|
},
|
|
307
311
|
sendAiGuideInfo(recommendType, cell) {
|
|
308
|
-
console.log("组件-312-
|
|
312
|
+
console.log("组件-312-3", recommendType, cell);
|
|
309
313
|
this.$emit('sendAiGuide', recommendType, cell);
|
|
310
314
|
},
|
|
311
315
|
},
|