瀏覽代碼

url 中文传参转码encodeURI

haojianlong 4 年之前
父節點
當前提交
027a59e5b6
共有 3 個文件被更改,包括 21 次插入8 次删除
  1. 7 1
      src/components/homeView/createGraphDialog.vue
  2. 1 1
      src/components/homeView/topoImageCard.vue
  3. 13 6
      src/views/home.vue

+ 7 - 1
src/components/homeView/createGraphDialog.vue

@@ -119,7 +119,13 @@ export default {
         if (res.result == "success") {
           this.outerVisible = false;
           this.$message.success('创建成功');
-          this.$emit("createSuc", res.entityList)
+          this.$router.push({
+            name: 'Editer', query: {
+              graphId: res.entityList[0].graphId,
+              id: res.entityList[0].id,
+              categoryName: encodeURI(this.buttonStr)
+            }
+          })
         } else {
           this.$message(res.message)
         }

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

@@ -105,7 +105,7 @@ export default {
     },
     // 进入编辑页面
     toEdit() {
-      this.$router.push({ name: 'Editer', query: { graphId: this.data.graphId, id: this.data.id } })
+      this.$emit("toEdit", this.data)
     }
   },
 };

+ 13 - 6
src/views/home.vue

@@ -51,7 +51,7 @@
           <div class="has-data-body" v-if="cardList.length">
             <template v-for="t in cardList">
               <topoImageCard :isPub="isPub" :data="t" :key="t.id" @changeCheck="changeCheck" @rename="rename" @publishSuc="updateSuc" @moveTo="moveTo"
-                @delete="deleteGraph" @editTag="editTag"></topoImageCard>
+                @delete="deleteGraph" @editTag="editTag" @toEdit="toEdit"></topoImageCard>
             </template>
           </div>
           <div class="no-data-body" v-else style="margin-top: 112px;">
@@ -63,7 +63,7 @@
     </el-container>
 
     <!-- 创建弹框 -->
-    <createGraphDialog ref="createGraphDialog" @createSuc="createSuc"></createGraphDialog>
+    <createGraphDialog ref="createGraphDialog"></createGraphDialog>
     <!-- 重命名 -->
     <rename ref="rename" :isPub="isPub" @updateSuc="updateSuc"></rename>
     <!-- 移动到 -->
@@ -119,6 +119,7 @@ export default {
       curCategory: {}, // 当前选中的树节点
       noTreeFlag: true, // 左侧树是否有数据-默认有
       popVisible: false,
+      categoryName: '', // 跳转编辑页面时分类名称
     };
   },
   methods: {
@@ -188,6 +189,7 @@ export default {
     // 选中节点变化
     changeNode(data) {
       this.curCategory = data;
+      this.categoryName = data.name;
       this.queryGraph()
     },
     // 发布修改
@@ -212,10 +214,15 @@ export default {
       this.$refs.leftAsideTree.getCategoryGraph();
     },
     // 新建拓扑图成功
-    createSuc(list) {
-      if (list.length) {
-        this.$router.push({ name: 'Editer', query: { graphId: list[0].graphId, id: list[0].id } })
-      }
+    toEdit(data) {
+      this.$router.push({
+        name: 'Editer',
+        query: {
+          graphId: data.graphId,
+          id: data.id,
+          categoryName: encodeURI(this.categoryName)
+        }
+      })
     },
     /////////////////接口
     // 查询图形信息