瀏覽代碼

新增编辑按钮

YaolongHan 4 年之前
父節點
當前提交
7e3396e29a

+ 2 - 4
src/components/editview/rightPropertyBar.vue

@@ -1,7 +1,7 @@
 <!--右侧属性栏-->
 <!--右侧属性栏-->
 <template>
 <template>
   <div class="right-property-bar">
   <div class="right-property-bar">
-     <property></property>
+    <property></property>
   </div>
   </div>
 </template>
 </template>
 <script>
 <script>
@@ -11,9 +11,7 @@ export default {
     property,
     property,
   },
   },
   data() {
   data() {
-    return {
-
-    };
+    return {};
   },
   },
 };
 };
 </script>
 </script>

+ 13 - 1
src/components/editview/rightPropertyBar/graphPaper.vue

@@ -2,6 +2,18 @@
   <div id="paper">
   <div id="paper">
     <div class="title">背景</div>
     <div class="title">背景</div>
     <ul>
     <ul>
+      <!-- <li>
+        <div class="property">
+          <div class="color-box">
+            <span>页面尺寸</span>
+            <el-button-group>
+              <el-button type="primary" icon="el-icon-edit"></el-button>
+              <el-button type="primary" icon="el-icon-share"></el-button>
+              <el-button type="primary" icon="el-icon-delete"></el-button>
+            </el-button-group>
+          </div>
+        </div>
+      </li> -->
       <li>
       <li>
         <div class="property">
         <div class="property">
           <div class="color-box">
           <div class="color-box">
@@ -55,7 +67,7 @@ li {
 }
 }
 #paper {
 #paper {
   .title {
   .title {
-   height: 47px;
+    height: 47px;
     border-bottom: 1px solid #979797;
     border-bottom: 1px solid #979797;
     color: #646c73;
     color: #646c73;
     font-size: 16px;
     font-size: 16px;

+ 1 - 0
src/components/homeView/leftAsideTree.vue

@@ -2,6 +2,7 @@
 <template>
 <template>
   <div class="left-aside">
   <div class="left-aside">
     <el-tree
     <el-tree
+      default-expand-all
       :data="treeData"
       :data="treeData"
       :props="defaultProps"
       :props="defaultProps"
       accordion
       accordion

+ 5 - 0
src/components/homeView/topoImageCard.vue

@@ -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") {