Compare commits
2 Commits
86c94c6c75
...
163c07f7b7
Author | SHA1 | Date |
---|---|---|
|
163c07f7b7 | |
|
ca2ac72fa8 |
|
@ -37,7 +37,7 @@ FluScrollablePage{
|
|||
positiveText:"确定"
|
||||
onPositiveClicked:{
|
||||
showSuccess("点击确定按钮")
|
||||
}
|
||||
}
|
||||
}
|
||||
dialog.open()'
|
||||
}
|
||||
|
@ -159,6 +159,7 @@ FluScrollablePage{
|
|||
positiveText:"确定"
|
||||
onPositiveClicked:{
|
||||
showSuccess("点击确定按钮")
|
||||
}
|
||||
}
|
||||
dialog.open()'
|
||||
}
|
||||
|
|
|
@ -37,7 +37,7 @@ FluScrollablePage{
|
|||
positiveText:"确定"
|
||||
onPositiveClicked:{
|
||||
showSuccess("点击确定按钮")
|
||||
}
|
||||
}
|
||||
}
|
||||
dialog.open()'
|
||||
}
|
||||
|
@ -159,6 +159,7 @@ FluScrollablePage{
|
|||
positiveText:"确定"
|
||||
onPositiveClicked:{
|
||||
showSuccess("点击确定按钮")
|
||||
}
|
||||
}
|
||||
dialog.open()'
|
||||
}
|
||||
|
|
|
@ -192,6 +192,7 @@ void Log::setup(const QString &app,int level)
|
|||
qInfo()<<"===================================================";
|
||||
qInfo()<<"[AppName]"<<g_app;
|
||||
qInfo()<<"[AppVersion]"<<APPLICATION_VERSION;
|
||||
qInfo()<<"[QtVersion]"<<QT_VERSION_STR;
|
||||
#ifdef WIN32
|
||||
qInfo()<<"[ProcessId]"<<QString::number(_getpid());
|
||||
#else
|
||||
|
|
|
@ -532,12 +532,13 @@ Rectangle {
|
|||
syncView: table_view
|
||||
clip: true
|
||||
model: TableModel{
|
||||
TableModelColumn {}
|
||||
id:model_rows
|
||||
TableModelColumn { display: "rowIndex" }
|
||||
}
|
||||
Connections{
|
||||
target: table_model
|
||||
function onRowCountChanged(){
|
||||
header_vertical.model.rows = table_model.rows
|
||||
model_rows.rows = Array.from({length: table_model.rows.length}, (_, i) => ({rowIndex:i+1}));
|
||||
}
|
||||
}
|
||||
onContentYChanged:{
|
||||
|
@ -592,7 +593,7 @@ Rectangle {
|
|||
FluText{
|
||||
id:row_text
|
||||
anchors.centerIn: parent
|
||||
text: row + 1
|
||||
text: model.display
|
||||
}
|
||||
MouseArea{
|
||||
id:item_control_mouse
|
||||
|
|
|
@ -533,12 +533,13 @@ Rectangle {
|
|||
syncView: table_view
|
||||
clip: true
|
||||
model: TableModel{
|
||||
TableModelColumn {}
|
||||
id:model_rows
|
||||
TableModelColumn { display: "rowIndex" }
|
||||
}
|
||||
Connections{
|
||||
target: table_model
|
||||
function onRowCountChanged(){
|
||||
header_vertical.model.rows = table_model.rows
|
||||
model_rows.rows = Array.from({length: table_model.rows.length}, (_, i) => ({rowIndex:i+1}));
|
||||
}
|
||||
}
|
||||
onContentYChanged:{
|
||||
|
@ -593,7 +594,7 @@ Rectangle {
|
|||
FluText{
|
||||
id:row_text
|
||||
anchors.centerIn: parent
|
||||
text: row + 1
|
||||
text: model.display
|
||||
}
|
||||
MouseArea{
|
||||
id:item_control_mouse
|
||||
|
|
Loading…
Reference in New Issue