|
@@ -88,7 +88,7 @@ content = ''
|
|
|
private router:Router,
|
|
|
) {
|
|
|
this.user = new CloudUser();
|
|
|
- this.loadCards(); // 初始化时加载所有科普信息
|
|
|
+ // this.loadCards(); // 初始化时加载所有科普信息
|
|
|
}
|
|
|
|
|
|
cards: Array<CloudObject> = [];
|
|
@@ -97,18 +97,18 @@ content = ''
|
|
|
async typeChange(ev: any) {
|
|
|
this.type = ev?.detail?.value || ev?.value || 'hotdot';
|
|
|
console.log(this.type);
|
|
|
- await this.loadCards(); // 重新加载卡片
|
|
|
+ await this.loadmyCards(); // 重新加载卡片
|
|
|
}
|
|
|
|
|
|
- async loadCards() {
|
|
|
- const query = new CloudQuery('NovelAriticle');
|
|
|
- // this.content = '',
|
|
|
- this.allCards = await query.find();
|
|
|
- console.log(this.allCards);
|
|
|
- this.cards = this.allCards.filter((card) => card.get('category').toLowerCase().includes(this.type));
|
|
|
- console.log(this.cards);
|
|
|
+ // async loadCards() {
|
|
|
+ // const query = new CloudQuery('NovelAriticle');
|
|
|
+ // // this.content = '',
|
|
|
+ // this.allCards = await query.find();
|
|
|
+ // console.log(this.allCards);
|
|
|
+ // this.cards = this.allCards.filter((card) => card.get('category').toLowerCase().includes(this.type));
|
|
|
+ // console.log(this.cards);
|
|
|
|
|
|
- }
|
|
|
+ // }
|
|
|
async loadmyCards() {
|
|
|
let user = new CloudUser();
|
|
|
const query = new CloudQuery('NovelAriticle');
|