2023-06-21 21:33:52 +08:00
|
|
|
import QtQuick
|
|
|
|
import QtQuick.Layouts
|
|
|
|
import QtQuick.Window
|
|
|
|
import QtQuick.Controls
|
|
|
|
import QtQuick.Controls.Basic
|
2023-07-02 19:47:51 +08:00
|
|
|
import QtQuick.Dialogs
|
2023-06-21 21:33:52 +08:00
|
|
|
import FluentUI
|
2023-06-30 23:31:28 +08:00
|
|
|
import "qrc:///AicsKnowledgeBase/qml/component"
|
2023-07-05 21:14:33 +08:00
|
|
|
import "qrc:///AicsKnowledgeBase/qml/global"
|
2023-06-21 21:33:52 +08:00
|
|
|
|
2023-07-01 08:56:14 +08:00
|
|
|
FluArea {
|
2023-06-21 21:33:52 +08:00
|
|
|
property string url: ''
|
2023-07-02 15:58:02 +08:00
|
|
|
backgroundColor: "#f9f9f9"
|
2023-06-21 21:33:52 +08:00
|
|
|
|
|
|
|
Layout.fillWidth: true
|
|
|
|
Layout.fillHeight: true
|
|
|
|
paddings: 10
|
|
|
|
Layout.topMargin: 20
|
|
|
|
|
2023-07-01 08:56:14 +08:00
|
|
|
FluText {
|
2023-06-21 21:33:52 +08:00
|
|
|
Layout.topMargin: 20
|
2023-07-01 08:56:14 +08:00
|
|
|
text: ""
|
2023-06-21 21:33:52 +08:00
|
|
|
}
|
|
|
|
|
2023-07-05 13:58:03 +08:00
|
|
|
FileList {
|
|
|
|
autoRequest: true
|
2023-07-05 21:49:04 +08:00
|
|
|
width: parent.width
|
2023-07-05 13:58:03 +08:00
|
|
|
}
|
2023-06-21 21:33:52 +08:00
|
|
|
}
|