Compare commits
No commits in common. "691012903a4c32392c90d51237c952deba6c1e23" and "8bd68cb3ec8612f36ccdae5a9d6cfa8a3d1a5521" have entirely different histories.
691012903a
...
8bd68cb3ec
|
@ -101,8 +101,9 @@ FluWindow {
|
||||||
Connections {
|
Connections {
|
||||||
target: SignalFileOperation
|
target: SignalFileOperation
|
||||||
function onOpen(file) {
|
function onOpen(file) {
|
||||||
stack_view.clear()
|
stack_view.push(file_view, {
|
||||||
stack_view.push(file_view, {knowledgeFileId: file})
|
"knowledgeFileId": file
|
||||||
|
})
|
||||||
}
|
}
|
||||||
function onOpenNote(note) {
|
function onOpenNote(note) {
|
||||||
stack_view.push(note_view, {
|
stack_view.push(note_view, {
|
||||||
|
|
|
@ -131,8 +131,12 @@ FluArea {
|
||||||
console.log(content_area.type)
|
console.log(content_area.type)
|
||||||
}
|
}
|
||||||
|
|
||||||
FluText {
|
FluIconButton {
|
||||||
font.pointSize: 12
|
iconSize: 12
|
||||||
|
iconSource: FluentIcons.Back
|
||||||
|
onClicked: {
|
||||||
|
emit: SignalFileOperation.back()
|
||||||
|
}
|
||||||
Layout.margins: -5
|
Layout.margins: -5
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -18,12 +18,6 @@ FluArea {
|
||||||
property string noteTitle
|
property string noteTitle
|
||||||
property string noteContent
|
property string noteContent
|
||||||
|
|
||||||
Component.onCompleted: {
|
|
||||||
noteTitle = Qt.binding(function() {
|
|
||||||
return input_title.text
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
FluScrollablePage {
|
FluScrollablePage {
|
||||||
id: edit_page
|
id: edit_page
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
|
@ -31,15 +25,13 @@ FluArea {
|
||||||
topPadding: 5
|
topPadding: 5
|
||||||
rightPadding: 5
|
rightPadding: 5
|
||||||
bottomPadding: 0
|
bottomPadding: 0
|
||||||
RowLayout {
|
FluIconButton {
|
||||||
FluIconButton {
|
iconSize: 12
|
||||||
iconSize: 12
|
iconSource: FluentIcons.Back
|
||||||
iconSource: FluentIcons.Back
|
onClicked: {
|
||||||
onClicked: {
|
emit: SignalFileOperation.back()
|
||||||
emit: SignalFileOperation.back()
|
|
||||||
}
|
|
||||||
Layout.margins: -5
|
|
||||||
}
|
}
|
||||||
|
Layout.margins: -5
|
||||||
}
|
}
|
||||||
Item {
|
Item {
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
|
@ -55,42 +47,18 @@ FluArea {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
FluTextBox {
|
FluTextBox {
|
||||||
id: input_title
|
|
||||||
padding: 10
|
padding: 10
|
||||||
placeholderText:"单行输入框"
|
placeholderText:"单行输入框"
|
||||||
implicitWidth: parent.width
|
implicitWidth: parent.width
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Item {
|
||||||
|
Layout.fillWidth: true
|
||||||
|
implicitHeight: parent.height
|
||||||
|
Layout.fillWidth: true
|
||||||
|
NoteEditPage {
|
||||||
|
|
||||||
|
|
||||||
FluText {
|
|
||||||
padding: 10
|
|
||||||
text: "内容"
|
|
||||||
font {
|
|
||||||
pointSize: 15
|
|
||||||
bold: true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
NoteEditPage {
|
|
||||||
id: text_view
|
|
||||||
noteId: "255454"
|
|
||||||
width: parent.width
|
|
||||||
height: width*9/16
|
|
||||||
}
|
|
||||||
|
|
||||||
RowLayout {
|
|
||||||
Layout.alignment: Qt.AlignCenter
|
|
||||||
Layout.topMargin: 10
|
|
||||||
FluFilledButton {
|
|
||||||
text: "上传"
|
|
||||||
onClicked: {
|
|
||||||
console.log(noteTitle)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
FluButton {
|
|
||||||
text: "取消"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,7 +11,6 @@ FluArea {
|
||||||
paddings: 0
|
paddings: 0
|
||||||
backgroundColor: "#f9f9f9"
|
backgroundColor: "#f9f9f9"
|
||||||
property string noteId: "234"
|
property string noteId: "234"
|
||||||
Layout.fillWidth: true
|
|
||||||
|
|
||||||
FluScrollablePage {
|
FluScrollablePage {
|
||||||
id: edit_page
|
id: edit_page
|
||||||
|
@ -154,7 +153,7 @@ FluArea {
|
||||||
property bool isPreviewShowing: true
|
property bool isPreviewShowing: true
|
||||||
|
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
implicitHeight: width * 8/16
|
implicitHeight: 300
|
||||||
|
|
||||||
ScrollView {
|
ScrollView {
|
||||||
id: edit_show_view
|
id: edit_show_view
|
||||||
|
|
Loading…
Reference in New Issue