AicsKnowledgeBase_client/AicsKnowledgeBase/qml/MainWindow.qml

128 lines
3.0 KiB
QML
Raw Normal View History

2023-06-18 00:06:24 +08:00
import QtQuick
import QtQuick.Layouts
import QtQuick.Window
import QtQuick.Controls
import QtQuick.Controls.Basic
import FluentUI
import org.wangwenx190.FramelessHelper
2023-06-21 21:33:52 +08:00
import "qrc:///AicsKnowledgeBase/qml/global"
2023-06-30 21:30:04 +08:00
import "qrc:///AicsKnowledgeBase/qml/page"
2023-06-18 00:06:24 +08:00
FluWindow {
id: window
2023-06-21 21:33:52 +08:00
width: 1000
height: 640
2023-06-18 00:06:24 +08:00
FluAppBar {
id: title_bar
title: window.title
anchors {
left: parent.left
right: parent.right
top: parent.top
2023-06-21 21:33:52 +08:00
leftMargin: 35
2023-06-18 00:06:24 +08:00
}
}
2023-06-30 18:37:17 +08:00
RowLayout {
anchors.top: parent.top
anchors.right: parent.right
anchors.rightMargin: 140
height: 44
layoutDirection: Qt.RightToLeft
2023-06-30 23:31:28 +08:00
// Rectangle{
// anchors.fill: parent
// color: "red"
// }
Rectangle {
2023-06-30 18:37:17 +08:00
color: FluColors.White
radius: 50
width: 32
height: 32
}
Text {
2023-06-30 23:31:28 +08:00
Layout.margins: {
right: 10
}
2023-06-30 18:37:17 +08:00
text: "用户名"
}
2023-07-01 08:56:14 +08:00
Image {
height: 30
source: "qrc:/AicsKnowledgeBase/res/transfer.svg"
}
2023-06-30 18:37:17 +08:00
}
2023-06-21 21:33:52 +08:00
RowLayout {
anchors.fill: parent
FluNavigationView {
id: nav_view
Layout.fillHeight: true
Layout.preferredWidth: 400
Layout.bottomMargin: 4
z: 999
items: NavItems
footerItems: FooterItems
topPadding: 5
displayMode: FluNavigationView.Compact
logo: "qrc:/AicsKnowledgeBase/res/logo.png"
title: "智能客服知识库"
Behavior on rotation {
NumberAnimation {
duration: 167
}
}
transformOrigin: Item.Center
Component.onCompleted: {
NavItems.navigationView = nav_view
FooterItems.navigationView = nav_view
setCurrentIndex(0)
}
2023-06-18 00:06:24 +08:00
}
2023-06-30 23:31:28 +08:00
ContentPage {
2023-06-30 21:30:04 +08:00
Layout.fillHeight: true
2023-06-30 23:31:28 +08:00
Layout.fillWidth: true
Layout.topMargin: 45
Layout.bottomMargin: 4
Layout.rightMargin: 4
2023-06-30 21:30:04 +08:00
}
2023-06-30 23:31:28 +08:00
2023-06-30 21:30:04 +08:00
/*
2023-06-21 21:33:52 +08:00
FluArea {
Layout.fillHeight: true
Layout.fillWidth: true
paddings: 10
Layout.topMargin: 45
Layout.bottomMargin: 4
Layout.rightMargin: 4
FluText {
Layout.topMargin: 20
text: "Content"
}
2023-06-30 21:30:04 +08:00
}*/
2023-06-21 21:33:52 +08:00
}
2023-06-18 00:06:24 +08:00
FramelessHelper {
id: framless_helper
onReady: {
setTitleBarItem(title_bar)
moveWindowToDesktopCenter()
setHitTestVisible(title_bar.minimizeButton())
setHitTestVisible(title_bar.maximizeButton())
setHitTestVisible(title_bar.closeButton())
title_bar.maximizeButton.visible = true
// window.backgroundVisible = false
window.show()
}
}
}