|
@@ -89,7 +89,7 @@ export class MyComponent implements OnInit {
|
|
|
this.getAgreement();
|
|
|
const data = await this.aiServ.getFansAndFollow(this.user.id);
|
|
|
// console.log(data);
|
|
|
- this.orderList = await this.aiServ.getOrderAnchor(null,10);
|
|
|
+ this.orderList = await this.aiServ.getOrderAnchor(null,10,'day');
|
|
|
console.log(this.orderList);
|
|
|
const { fans, follow } = data.data[0];
|
|
|
this.userObj = { fans, follow, friendly_degree: 0 };
|
|
@@ -259,4 +259,15 @@ export class MyComponent implements OnInit {
|
|
|
e.cancelBubble = true;
|
|
|
this.orderList = await this.aiServ.getOrderAnchor(null,10,type);
|
|
|
}
|
|
|
+ async toArticle(){
|
|
|
+ let query = new Parse.Query('Article');
|
|
|
+ query.equalTo('company', this.aiServ.company);
|
|
|
+ query.equalTo('isEnabled', true);
|
|
|
+ query.notEqualTo('isDeleted', true);
|
|
|
+ query.equalTo('type', 'promotion');
|
|
|
+ query.select('objectId');
|
|
|
+ let article = await query.first();
|
|
|
+ console.log(article?.id);
|
|
|
+ this.router.navigate(['webview',{id:article?.id}]);
|
|
|
+ }
|
|
|
}
|