27 lines
530 B
QML
27 lines
530 B
QML
import QtQuick
|
|
import QtQuick.Layouts
|
|
import QtQuick.Controls
|
|
import FluentUI.Controls
|
|
import FluentUI.impl
|
|
|
|
ColumnLayout {
|
|
spacing: 5
|
|
Button{
|
|
text: "运输成本分析"
|
|
onClicked: {
|
|
WindowRouter.go("/example",{type:"WindowType.Standard"})
|
|
}
|
|
}
|
|
Button{
|
|
text: "补能站整体规划"
|
|
}
|
|
Button{
|
|
text: "站内规划"
|
|
}
|
|
Rectangle{
|
|
Layout.fillHeight: true
|
|
Layout.fillWidth: true
|
|
color: 'green'
|
|
}
|
|
}
|