Browse Source

添加了移动图标,移动成功提示

cxmo 1 year ago
parent
commit
8883f13dbe
1 changed files with 8 additions and 1 deletions
  1. 8 1
      src/views/semantics_manage/documentPage.vue

+ 8 - 1
src/views/semantics_manage/documentPage.vue

@@ -55,6 +55,12 @@
                     style="width: 14px; height: 14px; margin-right: 5px"
                     @click.stop="clickNodeHandle('edit', data)"
                   />
+                  <img
+                    :src="require('@/assets/img/data_m/move_ico.png')"
+                    alt="" v-if="node.level === 2"
+                    style="width: 14px; height: 14px; margin-right: 5px"
+                    @click.stop="clickNodeHandle('del', data)"
+                  />
                   <img
                     :src="require('@/assets/img/set_m/del.png')"
                     alt=""
@@ -381,7 +387,8 @@ export default {
                 nodeKeyId:`children_${moveParams.SaDocId}`},
                 {
                     level:2
-                })
+            })
+            this.$message.success('移动成功')
         })
     },
   },