Jelajahi Sumber

fix: 删除多余页面

Cooklalala 1 bulan lalu
induk
melakukan
ab01f0b788
4 mengubah file dengan 0 tambahan dan 128 penghapusan
  1. TEMPAT SAMPAH
      src/assets/img/top_nav.png
  2. 0 16
      src/router/index.js
  3. 0 5
      src/views/Brand.vue
  4. 0 107
      src/views/Home.vue

TEMPAT SAMPAH
src/assets/img/top_nav.png


+ 0 - 16
src/router/index.js

@@ -16,22 +16,6 @@ const routes = [
     path: `/login`,
     redirect: `/`,
   },
-  {
-    path: `/home`,
-    name: `Home`,
-    component: () => import(`@/views/Home.vue`),
-    meta: {
-      title: `酷屏首页统计图`,
-    },
-  },
-  {
-    path: `/brand`,
-    name: `Brand`,
-    component: () => import(`@/views/Brand.vue`),
-    meta: {
-      title: `公司品牌介绍`,
-    },
-  },
   {
     path: `/page1`,
     name: `page1`,

+ 0 - 5
src/views/Brand.vue

@@ -1,5 +0,0 @@
-<template>
-  <div>
-    hello
-  </div>
-</template>

+ 0 - 107
src/views/Home.vue

@@ -1,107 +0,0 @@
-<!--
- 描述: 酷屏首页模板
- 作者: Jack Chen
- 日期: 2020-04-29
--->
-
-<template>
-  <div class="home-container">
-    <div class="wrap" ref="editor">
-      <div class="top"></div>
-
-      <sinan />
-      <seamless />
-      <pyramid />
-
-      <scrollArc />
-      <szBar />
-
-      <ringPin />
-      <rotateColorful />
-      <circleRunway />
-      <scanRadius />
-
-      <cakeLinkage />
-      <pyramidTrend />
-      <dynamicLine />
-
-      <staffMix />
-      <flashCloud />
-      <ringPie />
-      <colorfulRadar />
-
-      <dynamicList />
-      <bar3d />
-      <colorfulArea />
-
-      <rainbow />
-      <gauge />
-      <waterPolo />
-      <circleNesting />
-
-      <div class="divider"></div>
-    </div>
-  </div>
-</template>
-
-<script>
-import { screenSize } from '@/assets/js/utils'
-
-export default {
-  name: `Home`,
-  components: {},
-  data() {
-    return {}
-  },
-  computed: {},
-  created() {},
-  mounted() {
-    screenSize(this.$refs.editor)
-  },
-  methods: {},
-}
-</script>
-
-<style lang="less" scoped>
-.home-container {
-  position: absolute;
-  left: 0;
-  top: 0;
-  width: 100%;
-  height: 100%;
-  .wrap {
-    transform-origin: 0px 0px 0px;
-    background: url(../assets/img/bj.jpg) no-repeat;
-    background-size: contain;
-    background-position: 50% 0;
-    background-color: rgb(0, 0, 0);
-    min-width: auto;
-    width: 1920px;
-    min-height: auto;
-    height: 1080px;
-    overflow: auto;
-    .top {
-      position: absolute;
-      left: 0;
-      top: 0;
-      width: 100%;
-      height: 80px;
-      background-color: transparent;
-      background: url(../assets/img/top_nav.png) no-repeat;
-      background-position: 65% 0;
-      border: none;
-      overflow: hidden;
-    }
-    .divider {
-      position: absolute;
-      left: 50px;
-      top: 3253px;
-      width: 90%;
-      height: 50px;
-      width: 300px;
-      border: none;
-      background: transparent;
-    }
-  }
-}
-</style>