mirror of
https://github.com/Qsgs-Fans/FreeKill.git
synced 2024-11-16 11:42:45 +08:00
54 lines
1.4 KiB
QML
54 lines
1.4 KiB
QML
|
import QtQuick 2.15
|
||
|
import QtQuick.Layouts 1.15
|
||
|
import QtQuick.Controls 2.0
|
||
|
import "RoomElement"
|
||
|
|
||
|
Item {
|
||
|
id: root
|
||
|
|
||
|
property bool loaded: false
|
||
|
|
||
|
ListView {
|
||
|
width: Math.floor(root.width / 98) * 98
|
||
|
height: parent.height
|
||
|
anchors.centerIn: parent
|
||
|
ScrollBar.vertical: ScrollBar {}
|
||
|
model: ListModel {
|
||
|
id: packages
|
||
|
}
|
||
|
|
||
|
delegate: ColumnLayout {
|
||
|
Text { text: Backend.translate(name) }
|
||
|
GridLayout {
|
||
|
columns: root.width / 98
|
||
|
Repeater {
|
||
|
model: JSON.parse(Backend.getGenerals(name))
|
||
|
GeneralCardItem {
|
||
|
autoBack: false
|
||
|
Component.onCompleted: {
|
||
|
let data = JSON.parse(Backend.getGeneralData(modelData));
|
||
|
name = modelData;
|
||
|
kingdom = data.kingdom;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
Button {
|
||
|
text: "Quit"
|
||
|
anchors.right: parent.right
|
||
|
onClicked: {
|
||
|
mainStack.pop();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function loadPackages() {
|
||
|
if (loaded) return;
|
||
|
let packs = JSON.parse(Backend.getAllGeneralPack());
|
||
|
packs.forEach((name) => packages.append({ name: name }));
|
||
|
loaded = true;
|
||
|
}
|
||
|
}
|