Explorar el Código

home: feat> 标签修改

haojianlong hace 4 años
padre
commit
d2309180a4

+ 1 - 1
src/components/homeView/rename.vue

@@ -61,7 +61,7 @@ export default {
       if (res.result == "success") {
         this.dialogVisible = false;
         this.$emit("updateSuc")
-        this.$message.success('重命名成功');
+        this.$message.success('更新成功');
       } else {
         this.$message(res.message)
       }

+ 61 - 18
src/components/homeView/tagDialog.vue

@@ -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>

+ 10 - 6
src/components/homeView/topoImageCard.vue

@@ -21,7 +21,7 @@
             </span>
             <el-dropdown-menu slot="dropdown">
               <template v-for="t in moreList">
-                <el-dropdown-item :key="t.name" :command="t.name" v-if="dropdownItemShow(t, data)">{{t.label}}</el-dropdown-item>
+                <el-dropdown-item :key="t.name" :command="t.name" v-if="dropdownItemShow(t)">{{t.label}}</el-dropdown-item>
               </template>
             </el-dropdown-menu>
           </el-dropdown>
@@ -46,15 +46,19 @@ export default {
     isRecycle: {
       type: Boolean,
       default: false
+    },
+    isPub: {
+      type: Number,
+      default: 0
     }
   },
   data() {
     return {
       moreList: [
         { name: 'rename', label: '重命名', show: 'any' }, // 类型为 未发布/已发布 时出现
-        { name: 'publish', label: '发布', show: false }, // 类型为 未发布 时出现
-        { name: 'download', label: '下载', show: true }, // 类型为 已发布 时出现
-        { name: 'editTag', label: '修改标签', show: true }, // 类型为 已发布 时出现
+        { name: 'publish', label: '发布', show: 0 }, // 类型为 未发布 时出现
+        { name: 'download', label: '下载', show: 1 }, // 类型为 已发布 时出现
+        { name: 'editTag', label: '修改标签', show: 1 }, // 类型为 已发布 时出现
         { name: 'moveTo', label: '移动到', show: 'any' }, // 类型为 未发布/已发布 时出现
         { name: 'delete', label: '删除', show: 'any' }, // 类型为 未发布/已发布 时出现
         { name: 'recover', label: '恢复', show: 'isRecycle' },  // 类型为 回收站 时出现
@@ -65,8 +69,8 @@ export default {
   },
   methods: {
     // 显示下拉框内容选项判断
-    dropdownItemShow(item, data) {
-      return (!this.isRecycle && (item.show == 'any' || item.show == data.pub)) || (this.isRecycle && item.show == "isRecycle")
+    dropdownItemShow(item) {
+      return (!this.isRecycle && (item.show == 'any' || item.show == this.isPub)) || (this.isRecycle && item.show == "isRecycle")
     },
     // 复选框改变时
     changeCheck() {

+ 1 - 1
src/views/home.vue

@@ -43,7 +43,7 @@
         </div>
         <div class="main-body" :class="{'no-data': !cardList.length}">
           <template v-for="t in cardList">
-            <topoImageCard :data="t" :key="t.id" @changeCheck="changeCheck" @rename="rename" @publishSuc="updateSuc" @moveTo="moveTo"
+            <topoImageCard :isPub="isPub" :data="t" :key="t.id" @changeCheck="changeCheck" @rename="rename" @publishSuc="updateSuc" @moveTo="moveTo"
               @delete="deleteGraph" @editTag="editTag"></topoImageCard>
           </template>
           <div v-if="!cardList.length" style="margin-top: 112px;">