37 lines
725 B
QML
37 lines
725 B
QML
pragma Singleton
|
|
|
|
import QtQuick
|
|
import FluentUI
|
|
|
|
FluObject {
|
|
|
|
property var navigationView
|
|
|
|
FluPaneItemSeparator{}
|
|
|
|
FluPaneItem {
|
|
title: "我的收藏"
|
|
icon: FluentIcons.FavoriteList
|
|
onTap: {
|
|
navigationView.push("qrc:/AicsKnowledgeBase/qml/page/FavoritePage.qml")
|
|
}
|
|
}
|
|
|
|
FluPaneItem {
|
|
title: "浏览历史"
|
|
icon: FluentIcons.History
|
|
onTap: {
|
|
navigationView.push("qrc:/AicsKnowledgeBase/qml/page/HistoryPage.qml")
|
|
}
|
|
}
|
|
|
|
FluPaneItem {
|
|
title: "已下载"
|
|
icon: FluentIcons.Download
|
|
onTap: {
|
|
navigationView.push("qrc:/AicsKnowledgeBase/qml/page/LocalPage.qml")
|
|
}
|
|
}
|
|
|
|
}
|