|
@@ -65,6 +65,7 @@ export default {
|
|
{ name: 'editTag', label: '修改标签', show: 1 }, // 类型为 已发布 时出现
|
|
{ name: 'editTag', label: '修改标签', show: 1 }, // 类型为 已发布 时出现
|
|
{ name: 'moveTo', label: '移动到', show: 'any' }, // 类型为 未发布/已发布 时出现
|
|
{ name: 'moveTo', label: '移动到', show: 'any' }, // 类型为 未发布/已发布 时出现
|
|
{ name: 'delete', label: '删除', show: 'any' }, // 类型为 未发布/已发布 时出现
|
|
{ name: 'delete', label: '删除', show: 'any' }, // 类型为 未发布/已发布 时出现
|
|
|
|
+ { name: 'editGraph', label: '编辑', show: 'any' }, // 类型为 未发布/已发布 时出现
|
|
{ name: 'recover', label: '恢复', show: 'isRecycle' }, // 类型为 回收站 时出现
|
|
{ name: 'recover', label: '恢复', show: 'isRecycle' }, // 类型为 回收站 时出现
|
|
{ name: 'deleteRecycle', label: '永久删除', show: 'isRecycle' }, // 类型为 回收站 时出现
|
|
{ name: 'deleteRecycle', label: '永久删除', show: 'isRecycle' }, // 类型为 回收站 时出现
|
|
],
|
|
],
|
|
@@ -97,6 +98,10 @@ export default {
|
|
case "deleteRecycle":
|
|
case "deleteRecycle":
|
|
this.$emit(command, this.data)
|
|
this.$emit(command, this.data)
|
|
break;
|
|
break;
|
|
|
|
+ case "editGraph":
|
|
|
|
+ // 进入编辑
|
|
|
|
+ this.$emit("toEdit", this.data)
|
|
|
|
+ break;
|
|
case "publish":
|
|
case "publish":
|
|
publishGraph(pa).then(res => {
|
|
publishGraph(pa).then(res => {
|
|
if (res.result == "success") {
|
|
if (res.result == "success") {
|