This commit is contained in:
zhuzichu
2023-06-28 13:13:39 +08:00
parent 90943674b3
commit 192c65a510
7 changed files with 140 additions and 84 deletions

View File

@ -19,7 +19,7 @@ endif()
file(TO_CMAKE_PATH "/" PATH_SEPARATOR)
#设置版本号
add_definitions(-DVERSION=1,3,6,2)
add_definitions(-DVERSION=1,3,7,0)
find_package(Qt6 REQUIRED COMPONENTS Quick)

View File

@ -5,76 +5,80 @@ import QtQuick.Window
import FluentUI
import "qrc:///example/qml/component"
FluScrollablePage{
FluPage{
title:"Pivot"
Component.onDestruction: {
console.debug("------------------------->")
}
FluArea{
Layout.fillWidth: true
Layout.topMargin: 20
height: 400
paddings: 10
// title:"Pivot"
FluPivot{
anchors.fill: parent
currentIndex: 2
FluPivotItem{
title:"All"
contentItem:FluText{
text:"All emails go here."
}
}
FluPivotItem{
title:"Unread"
contentItem:FluText{
text:"Unread emails go here."
}
}
FluPivotItem{
title:"Flagged"
contentItem:FluText{
text:"Flagged emails go here."
}
}
FluPivotItem{
title:"Urgent"
contentItem:FluText{
text:"Urgent emails go here."
}
}
}
}
CodeExpander{
Layout.fillWidth: true
Layout.topMargin: -1
code:'FluPivot{
anchors.fill: parent
FluPivotItem:{
text:"All"
contentItem: FluText{
text:"All emails go here."
}
}
FluPivotItem:{
text:"Unread"
contentItem: FluText{
text:"Unread emails go here."
}
}
FluPivotItem:{
text:"Flagged"
contentItem: FluText{
text:"Flagged emails go here."
}
}
FluPivotItem:{
text:"Urgent"
contentItem: FluText{
text:"Urgent emails go here."
}
}
}
'
}
// FluArea{
// Layout.fillWidth: true
// Layout.topMargin: 20
// height: 400
// paddings: 10
// FluPivot{
// anchors.fill: parent
// currentIndex: 2
// FluPivotItem{
// title:"All"
// contentItem:FluText{
// text:"All emails go here."
// }
// }
// FluPivotItem{
// title:"Unread"
// contentItem:FluText{
// text:"Unread emails go here."
// }
// }
// FluPivotItem{
// title:"Flagged"
// contentItem:FluText{
// text:"Flagged emails go here."
// }
// }
// FluPivotItem{
// title:"Urgent"
// contentItem:FluText{
// text:"Urgent emails go here."
// }
// }
// }
// }
// CodeExpander{
// Layout.fillWidth: true
// Layout.topMargin: -1
// code:'FluPivot{
// anchors.fill: parent
// FluPivotItem:{
// text:"All"
// contentItem: FluText{
// text:"All emails go here."
// }
// }
// FluPivotItem:{
// text:"Unread"
// contentItem: FluText{
// text:"Unread emails go here."
// }
// }
// FluPivotItem:{
// text:"Flagged"
// contentItem: FluText{
// text:"Flagged emails go here."
// }
// }
// FluPivotItem:{
// text:"Urgent"
// contentItem: FluText{
// text:"Urgent emails go here."
// }
// }
//}
//'
// }
}

View File

@ -13,8 +13,26 @@ FluContentPage{
loadData(1,1000)
}
Component.onDestruction: {
console.debug("T_TableView已经销毁")
Component{
id:com_action
Item{
RowLayout{
anchors.centerIn: parent
FluButton{
text:"删除"
onClicked: {
table_view.closeEditor()
tableModel.removeRow(row)
}
}
FluFilledButton{
text:"编辑"
onClicked: {
showSuccess(JSON.stringify(tableModel.getRow(row)))
}
}
}
}
}
function loadData(page,count){
@ -47,7 +65,8 @@ FluContentPage{
nickname: getRandomNickname(),
height:40,
minimumHeight:40,
maximumHeight:200
maximumHeight:200,
action:com_action
})
}
table_view.dataSource = dataSource
@ -116,6 +135,13 @@ FluContentPage{
width:100,
minimumWidth:80,
maximumWidth:200
},
{
title: '操作',
dataIndex: 'action',
width:160,
minimumWidth:160,
maximumWidth:160
}
]
}