|
@@ -1,7 +1,13 @@
|
|
|
<template>
|
|
|
- <el-dialog title="重命名" :visible.sync="dialogVisible" width="480px" :close-on-click-modal="false">
|
|
|
+ <el-dialog title="修改标签" :visible.sync="dialogVisible" width="480px" :close-on-click-modal="false" custom-class="tagDialog">
|
|
|
<div>
|
|
|
- <el-input v-model="input" placeholder="请输入名称"></el-input>
|
|
|
+ <el-tag :key="tag" v-for="tag in dynamicTags" closable :disable-transitions="false" @close="handleClose(tag)">
|
|
|
+ {{tag}}
|
|
|
+ </el-tag>
|
|
|
+ <el-input class="input-new-tag" v-if="inputVisible" v-model="inputValue" ref="saveTagInput" size="small"
|
|
|
+ @keyup.enter.native="handleInputConfirm" @blur="handleInputConfirm" :maxlength="10">
|
|
|
+ </el-input>
|
|
|
+ <el-button v-else class="button-new-tag" size="small" @click="showInput">+ 添加</el-button>
|
|
|
</div>
|
|
|
<span slot="footer" class="dialog-footer">
|
|
|
<el-button @click="dialogVisible = false">取 消</el-button>
|
|
@@ -11,7 +17,7 @@
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-import { updateDraftsGraph, updatePubGraph } from "@/api/home"
|
|
|
+import { updatePubGraph } from "@/api/home"
|
|
|
export default {
|
|
|
props: {
|
|
|
isPub: {
|
|
@@ -22,38 +28,51 @@ export default {
|
|
|
data() {
|
|
|
return {
|
|
|
dialogVisible: false,
|
|
|
- input: '',
|
|
|
+ dynamicTags: [],
|
|
|
+ inputVisible: false,
|
|
|
+ inputValue: '',
|
|
|
data: {}
|
|
|
};
|
|
|
},
|
|
|
methods: {
|
|
|
showDialog(data) {
|
|
|
this.dialogVisible = true;
|
|
|
- this.input = data.name;
|
|
|
+ this.dynamicTags = JSON.parse(JSON.stringify(data.label)) || [];
|
|
|
this.data = data;
|
|
|
},
|
|
|
- // 确认修改
|
|
|
- confirm() {
|
|
|
- const newName = this.input.trim()
|
|
|
- if (!newName) {
|
|
|
- return
|
|
|
+ handleClose(tag) {
|
|
|
+ this.dynamicTags.splice(this.dynamicTags.indexOf(tag), 1);
|
|
|
+ },
|
|
|
+
|
|
|
+ showInput() {
|
|
|
+ this.inputVisible = true;
|
|
|
+ this.$nextTick(_ => {
|
|
|
+ this.$refs.saveTagInput.$refs.input.focus();
|
|
|
+ });
|
|
|
+ },
|
|
|
+
|
|
|
+ handleInputConfirm() {
|
|
|
+ const inputValue = this.inputValue;
|
|
|
+ if (inputValue) {
|
|
|
+ this.dynamicTags.push(inputValue);
|
|
|
}
|
|
|
+ this.inputVisible = false;
|
|
|
+ this.inputValue = '';
|
|
|
+ },
|
|
|
+ // 确认修改
|
|
|
+ confirm() {
|
|
|
const pa = {
|
|
|
content: [{
|
|
|
id: this.data.id,
|
|
|
graphId: this.data.graphId,
|
|
|
- name: newName
|
|
|
+ label: this.dynamicTags
|
|
|
}],
|
|
|
- projection: ['name']
|
|
|
+ projection: ['label']
|
|
|
}
|
|
|
if (this.isPub) { // 已发布
|
|
|
updatePubGraph(pa).then(res => {
|
|
|
this.updateCall(res)
|
|
|
})
|
|
|
- } else { // 未发布
|
|
|
- updateDraftsGraph(pa).then(res => {
|
|
|
- this.updateCall(res)
|
|
|
- })
|
|
|
}
|
|
|
},
|
|
|
// 更新成功回调
|
|
@@ -61,11 +80,35 @@ export default {
|
|
|
if (res.result == "success") {
|
|
|
this.dialogVisible = false;
|
|
|
this.$emit("updateSuc")
|
|
|
- this.$message.success('重命名成功');
|
|
|
+ this.$message.success('更新成功');
|
|
|
} else {
|
|
|
this.$message(res.message)
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
};
|
|
|
-</script>
|
|
|
+</script>
|
|
|
+<style lang="less" scoped>
|
|
|
+/deep/ .tagDialog {
|
|
|
+ /deep/ .el-dialog__header {
|
|
|
+ border-bottom: 1px solid #f0f1f2ff;
|
|
|
+ }
|
|
|
+ .el-tag {
|
|
|
+ margin: 0 10px 10px 0;
|
|
|
+ }
|
|
|
+ /deep/ .el-dialog__body {
|
|
|
+ max-height: 192px;
|
|
|
+ overflow: auto;
|
|
|
+ }
|
|
|
+ .button-new-tag {
|
|
|
+ height: 32px;
|
|
|
+ line-height: 30px;
|
|
|
+ padding-top: 0;
|
|
|
+ padding-bottom: 0;
|
|
|
+ }
|
|
|
+ .input-new-tag {
|
|
|
+ width: 90px;
|
|
|
+ vertical-align: top;
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|