Compare commits
No commits in common. "b67075a3ba4d373403037ba9ac53945a20046d79" and "b6627ccd2cb6894eb07370a542f11cafcf813cb3" have entirely different histories.
b67075a3ba
...
b6627ccd2c
|
@ -164,8 +164,47 @@ Item {
|
|||
}
|
||||
}
|
||||
}
|
||||
UploadButton {
|
||||
FluButton {
|
||||
id: uploadIcon
|
||||
Layout.alignment: Qt.AlignRight
|
||||
text: "上传"
|
||||
onClicked: function () {
|
||||
console.log("click")
|
||||
fileDialog.open()
|
||||
}
|
||||
FileDialog {
|
||||
id: fileDialog
|
||||
onAccepted: function () {
|
||||
let name = FileTransferManager.getFileName(
|
||||
selectedFile)
|
||||
const size = FileTransferManager.getFileSize(
|
||||
selectedFile)
|
||||
const md5 = FileTransferManager.getFileMd5(
|
||||
selectedFile)
|
||||
if (size <= 0 || md5 === '')
|
||||
return
|
||||
var body = {
|
||||
"name": name,
|
||||
"brief": "brief",
|
||||
"size": size,
|
||||
"md5": md5,
|
||||
"tags": [],
|
||||
"parentId": header.items.length !== 0 ? header.items[header.items.length - 1].uuid : null
|
||||
}
|
||||
console.log("begin")
|
||||
Request.post("knowledge/file",
|
||||
JSON.stringify(body),
|
||||
function (res, data) {
|
||||
console.log(res)
|
||||
console.log(data)
|
||||
FileTransferManager.upload(
|
||||
selectedFile, data.id,
|
||||
data.ticket, name)
|
||||
}, function (res, data) {
|
||||
console.log(res)
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
RowLayout {
|
||||
|
|
|
@ -84,8 +84,17 @@ FluArea {
|
|||
}
|
||||
}
|
||||
|
||||
ColumnLayout {
|
||||
id: row
|
||||
anchors.fill: parent
|
||||
anchors.margins: 10
|
||||
spacing: 10
|
||||
|
||||
ColumnLayout {
|
||||
id: clickable
|
||||
anchors.fill: parent
|
||||
MouseArea {
|
||||
anchors.fill: row
|
||||
anchors.fill: parent
|
||||
acceptedButtons: Qt.LeftButton | Qt.RightButton
|
||||
onDoubleClicked: {
|
||||
fileItem.parent.doubleClicked()
|
||||
|
@ -96,11 +105,6 @@ FluArea {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
ColumnLayout {
|
||||
id: clickable
|
||||
anchors.fill: row
|
||||
|
||||
RowLayout {
|
||||
id: titleRow
|
||||
Image {
|
||||
|
@ -157,13 +161,6 @@ FluArea {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
ColumnLayout {
|
||||
id: row
|
||||
anchors.fill: parent
|
||||
anchors.margins: 10
|
||||
spacing: 10
|
||||
|
||||
RowLayout {
|
||||
visible: !fileItem.isDir
|
||||
Repeater {
|
||||
|
|
|
@ -16,29 +16,27 @@ Rectangle {
|
|||
radius: 5
|
||||
clip: true
|
||||
|
||||
ListModel {
|
||||
id: tagListModel
|
||||
}
|
||||
ListModel { id: tagListModel }
|
||||
property ListModel tagList: tagListModel
|
||||
property var tagMap:[]
|
||||
property var presetsTags:[]
|
||||
property var presetsTagsItem:[]
|
||||
|
||||
Component.onCompleted: {
|
||||
Request.get("tag?name", function (result, data) {
|
||||
Request.get("tag?name",
|
||||
function(result, data){
|
||||
// console.log("success")
|
||||
// console.log(result)
|
||||
// console.log(data.length)
|
||||
for(var i =0;i<data.length;i++){
|
||||
tagMap.push(data[i])
|
||||
tagMap.push([data[i].id,data[i].name])
|
||||
presetsTags.push(data[i].name)
|
||||
presetsTagsItem.push({
|
||||
"title": data[i].name
|
||||
})
|
||||
presetsTagsItem.push({title:data[i].name})
|
||||
}
|
||||
// console.log(tagMap)
|
||||
// console.log(presetsTags)
|
||||
}, function (p1, p2) {// console.log("failure")
|
||||
},function (p1, p2) {
|
||||
// console.log("failure")
|
||||
// console.log(p1)
|
||||
// console.log(p2)
|
||||
})
|
||||
|
@ -64,9 +62,7 @@ Rectangle {
|
|||
tagListModel.remove(index)
|
||||
})
|
||||
|
||||
item.tag = Qt.binding(function () {
|
||||
return tag
|
||||
})
|
||||
item.tag = Qt.binding(function(){return tag})
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -81,6 +77,7 @@ Rectangle {
|
|||
anchors.verticalCenter: parent.verticalCenter
|
||||
width: parent.width
|
||||
|
||||
|
||||
placeholderText: "按回车键Enter创建标签"
|
||||
Layout.preferredWidth: 300
|
||||
//items:[{title:"前端"},{title:"后端"},{title:"数据库"}]
|
||||
|
@ -95,18 +92,14 @@ Rectangle {
|
|||
if (text.length === 0)
|
||||
return
|
||||
|
||||
var tagId
|
||||
for (var i = 0; i < tagMap.length; i++) {
|
||||
if (tagMap[i].name === text) {
|
||||
tagListModel.append({
|
||||
"tag": text,
|
||||
"id": tagMap[i].id
|
||||
})
|
||||
if(presetsTags.indexOf(text) === -1){
|
||||
text = ""
|
||||
return
|
||||
}
|
||||
tagListModel.append({"tag": text})
|
||||
//console.log(tagListModel.get(0))
|
||||
text = ""
|
||||
}
|
||||
}
|
||||
}
|
||||
Keys.onPressed: {
|
||||
if (event.key === Qt.Key_Backspace) {
|
||||
if (text.length === 0 && tagListModel.count) {
|
||||
|
@ -118,10 +111,11 @@ Rectangle {
|
|||
}
|
||||
}
|
||||
|
||||
property Component tagItem: Rectangle {
|
||||
property Component tagItem:
|
||||
Rectangle {
|
||||
id: rootTagItem
|
||||
property alias tag: tagText.text
|
||||
signal closeClicked
|
||||
signal closeClicked()
|
||||
|
||||
width: content.width
|
||||
height: 25
|
||||
|
@ -142,10 +136,7 @@ Rectangle {
|
|||
anchors.verticalCenter: parent.verticalCenter
|
||||
height: rootTagItem.height
|
||||
|
||||
Item {
|
||||
width: 5
|
||||
height: 1
|
||||
}
|
||||
Item { width: 5; height: 1 }
|
||||
|
||||
Text {
|
||||
id: tagText
|
||||
|
@ -155,11 +146,7 @@ Rectangle {
|
|||
color: "white"
|
||||
}
|
||||
|
||||
Item {
|
||||
visible: mouseArea.hovered
|
||||
width: 5
|
||||
height: 1
|
||||
}
|
||||
Item { visible: mouseArea.hovered; width: 5; height: 1 }
|
||||
|
||||
Item {
|
||||
anchors.verticalCenter: parent.verticalCenter
|
||||
|
@ -167,15 +154,11 @@ Rectangle {
|
|||
height: rootTagItem.height
|
||||
visible: mouseArea.hovered
|
||||
Behavior on width {
|
||||
NumberAnimation {
|
||||
duration: 100
|
||||
}
|
||||
NumberAnimation {duration: 100}
|
||||
}
|
||||
|
||||
Behavior on visible {
|
||||
NumberAnimation {
|
||||
duration: 100
|
||||
}
|
||||
NumberAnimation {duration: 100}
|
||||
}
|
||||
|
||||
Rectangle {
|
||||
|
@ -206,11 +189,9 @@ Rectangle {
|
|||
}
|
||||
}
|
||||
|
||||
Item {
|
||||
width: 5
|
||||
height: 1
|
||||
}
|
||||
Item { width: 5; height: 1 }
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -14,8 +14,7 @@ FluButton {
|
|||
text: "上传"
|
||||
onClicked: function () {
|
||||
console.log("click")
|
||||
//fileDialog.open()
|
||||
popup.open()
|
||||
fileDialog.open()
|
||||
}
|
||||
FileDialog {
|
||||
id: fileDialog
|
||||
|
@ -53,7 +52,7 @@ FluButton {
|
|||
}
|
||||
}
|
||||
|
||||
Column {
|
||||
Row {
|
||||
id: content
|
||||
topPadding: 14
|
||||
leftPadding: 20
|
||||
|
@ -69,9 +68,6 @@ FluButton {
|
|||
width: parent.width - parent.leftPadding - parent.rightPadding
|
||||
placeholderText: "请输入简介"
|
||||
}
|
||||
Tag {
|
||||
id: tags
|
||||
}
|
||||
}
|
||||
|
||||
Rectangle {
|
||||
|
@ -110,13 +106,6 @@ FluButton {
|
|||
Layout.fillHeight: true
|
||||
text: "上传"
|
||||
onClicked: {
|
||||
for (var i = 0; i < tags.tagList.count; i++) {
|
||||
console.log(tags.tagList.get(i).tag)
|
||||
console.log(tags.tagList.get(i).id)
|
||||
}
|
||||
|
||||
return
|
||||
|
||||
popup.close()
|
||||
let name = FileTransferManager.getFileName(
|
||||
currentSelectedFile)
|
||||
|
|
|
@ -11,7 +11,7 @@ FileTransferListModel::FileTransferListModel(QObject *parent)
|
|||
m_roleName.insert(kSpeedRole, "speed");
|
||||
m_roleName.insert(kPausedRole, "paused");
|
||||
|
||||
//m_data.append({true, "id", "name", 30, 100, 30});
|
||||
m_data.append({true, "id", "name", 30, 100, 30});
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue