|
@@ -54,12 +54,14 @@ setSlidePosition() {
|
|
|
|
|
|
async searchProducts(event: any) {
|
|
|
this.searchTerm = event.detail.value.toLowerCase();
|
|
|
+ console.log('搜索词:', this.searchTerm);
|
|
|
+
|
|
|
if (this.searchTerm) {
|
|
|
this.products = this.allCards.filter(product =>
|
|
|
- product.get('topic').toLowerCase().includes(this.searchTerm) ||
|
|
|
+ product.get('username').toLowerCase().includes(this.searchTerm) ||
|
|
|
product.get('title').toLowerCase().includes(this.searchTerm) ||
|
|
|
product.get('category').toLowerCase().includes(this.searchTerm) ||
|
|
|
- product.get('content')[0].toLowerCase().includes(this.searchTerm)
|
|
|
+ product.get('content2')[0].toLowerCase().includes(this.searchTerm)
|
|
|
);
|
|
|
} else {
|
|
|
this.products = [...this.allCards]; // 如果搜索词为空,则显示所有科普信息
|
|
@@ -67,7 +69,7 @@ setSlidePosition() {
|
|
|
}
|
|
|
|
|
|
isModalOpen = false;
|
|
|
- currentProduct: any; // 当前选择的科普信息
|
|
|
+ currentProduct: any;
|
|
|
|
|
|
openDetailModal(product?: any) {
|
|
|
this.isModalOpen = true;
|
|
@@ -81,52 +83,55 @@ setSlidePosition() {
|
|
|
|
|
|
|
|
|
|
|
|
- type:"hotdot"|"export" = "hotdot"
|
|
|
+ type:"短篇小说"|"工具箱" = "短篇小说"
|
|
|
content = ''
|
|
|
constructor(
|
|
|
private modalCtrl:ModalController,
|
|
|
private router:Router,
|
|
|
) {
|
|
|
this.user = new CloudUser();
|
|
|
- // this.loadCards(); // 初始化时加载所有科普信息
|
|
|
+ this.loadmyCards(); // 初始化时加载所有科普信息
|
|
|
}
|
|
|
|
|
|
cards: Array<CloudObject> = [];
|
|
|
mycards: Array<CloudObject> = []; // 当前显示的分类卡片
|
|
|
myCards: Array<CloudObject> = [];
|
|
|
async typeChange(ev: any) {
|
|
|
- this.type = ev?.detail?.value || ev?.value || 'hotdot';
|
|
|
+ this.type = ev?.detail?.value || ev?.value || '短篇小说';
|
|
|
console.log(this.type);
|
|
|
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 loadmyCards() {
|
|
|
let user = new CloudUser();
|
|
|
const query = new CloudQuery('NovelAriticle');
|
|
|
+ if(user.id == this.admin){
|
|
|
+ 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);
|
|
|
+
|
|
|
+ }else{
|
|
|
query.equalTo("user",user?.id)
|
|
|
console.log("user",user.id)
|
|
|
- this.myCards = await query.find();
|
|
|
- console.log(this.myCards);
|
|
|
- this.mycards = this.myCards.filter((card) => card.get('category').toLowerCase().includes(this.type));
|
|
|
- console.log(this.mycards);
|
|
|
-
|
|
|
+ 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);
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- openAiKnowledge(){
|
|
|
- this.router.navigate(['tabs/ai-knowledge']);
|
|
|
- }
|
|
|
+
|
|
|
ngOnInit() {
|
|
|
this.loadmyCards();
|
|
|
}
|