xia 4 年之前
父节点
当前提交
c5a423cf95
共有 3 个文件被更改,包括 8 次插入24 次删除
  1. 8 9
      src/router/async.ts
  2. 0 15
      src/views/operation/index.vue
  3. 0 0
      src/views/put/landing/edit.vue

+ 8 - 9
src/router/async.ts

@@ -56,7 +56,14 @@ const LandingAddPage: RouteConfig = {
   hidden: true,
   component: () => import("@/views/put/landing/add.vue")
 };
-
+export const Operation: RouteConfig = {
+  name: "Operation",
+  path: "/Operation",
+  meta: {
+    title: "落地页编辑",
+  },
+  component: () => import("@/views/landing/landing/edit.vue"),
+};
 const PutLog: RouteConfig = {
   name: "PutLog",
   path: "log",
@@ -87,14 +94,6 @@ const PutAdGroup: RouteConfig = {
   component: () => import("@/views/put/ad-group.vue")
 };
 
-export const Operation: RouteConfig = {
-  name: "Operation",
-  path: "/Operation",
-  meta: {
-    title: "落地页编辑",
-  },
-  component: () => import("@/views/operation/editcontent.vue"),
-};
 const PutAdAcountL: RouteConfig = {
   name: "PutAdAcountL",
   path: "/put/datas/count",

+ 0 - 15
src/views/operation/index.vue

@@ -1,15 +0,0 @@
-<template>
-  <router-view></router-view>
-</template>
-
-<script lang="ts">
-import { defineComponent } from "vue";
-
-import useStore from "@/hooks/useStore";
-
-const OperationIndex = defineComponent({
-  setup() {},
-});
-
-export default OperationIndex;
-</script>

src/views/operation/editcontent.vue → src/views/put/landing/edit.vue