fix QueryPage equalsExample arg
This commit is contained in:
@ -1,13 +1,14 @@
|
||||
// pages/main/portfolio/index.ts
|
||||
|
||||
import config from "../../../config/index";
|
||||
import { JournalPage, JournalPageType } from "../../../types/Journal";
|
||||
import { QueryPage } from "../../../types/Model";
|
||||
import Events from "../../../utils/Events";
|
||||
import Time from "../../../utils/Time";
|
||||
import { Journal, JournalItemType } from "../journal/index";
|
||||
|
||||
interface IPortfolioData {
|
||||
page: QueryPage;
|
||||
page: JournalPage;
|
||||
list: Journal[];
|
||||
isFetching: boolean;
|
||||
isFinished: boolean;
|
||||
@ -19,7 +20,8 @@ Page({
|
||||
page: {
|
||||
index: 0,
|
||||
size: 8,
|
||||
likeMap: {
|
||||
type: JournalPageType.NORMAL,
|
||||
equalsExample: {
|
||||
type: "PORTFOLIO"
|
||||
}
|
||||
},
|
||||
@ -34,7 +36,8 @@ Page({
|
||||
page: {
|
||||
index: 0,
|
||||
size: 8,
|
||||
likeMap: {
|
||||
type: JournalPageType.NORMAL,
|
||||
equalsExample: {
|
||||
type: "PORTFOLIO"
|
||||
}
|
||||
},
|
||||
@ -105,7 +108,8 @@ Page({
|
||||
page: {
|
||||
index: this.data.page.index + 1,
|
||||
size: 8,
|
||||
likeMap: {
|
||||
type: JournalPageType.NORMAL,
|
||||
equalsExample: {
|
||||
type: "PORTFOLIO"
|
||||
}
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user