This commit is contained in:
朱子楚\zhuzi 2024-03-27 10:52:47 +08:00
parent 06aa16c0eb
commit b6c3f0eda9
3 changed files with 12 additions and 11 deletions

View File

@ -135,7 +135,9 @@ FluExpander{
"FluLoadingButton",
"FluClip",
"FluNetwork",
"FluShortcutPicker"
"FluShortcutPicker",
"FluWindowResultLauncher",
"FluRouter"
];
code = code.replace(/\n/g, "<br>");
code = code.replace(/ /g, "&nbsp;");

View File

@ -165,20 +165,19 @@ FluScrollablePage{
CodeExpander{
Layout.fillWidth: true
Layout.topMargin: -1
code:'property var loginPageRegister: registerForWindowResult("/login")
Connections{
target: loginPageRegister
function onResult(data)
{
password = data.password
}
code:'FluWindowResultLauncher{
id:loginResultLauncher
path: "/login"
onResult:
(data)=>{
password = data.password
}
}
FluButton{
text: qsTr("Create Window")
onClicked: {
loginPageRegister.launch({username:"zhuzichu"})
loginResultLauncher.launch({username:"zhuzichu"})
}
}
'

View File

@ -178,7 +178,7 @@ FluWindow {
id:loader
lazy: true
anchors.fill: parent
source: "https://zhu-zichu.gitee.io/Qt_168_LieflatPage.qml"
source: "https://zhu-zichu.gitee.io/Qt_174_LieflatPage.qml"
}
}
front: Item{