mo 3 роки тому
батько
коміт
e0fd4ab5c0

+ 5 - 0
src/router/routes-admin.ts

@@ -13,6 +13,11 @@ export default [
     path: '/home',
     path: '/home',
     name: 'home',
     name: 'home',
     component: () => import('@/views/home/index')
     component: () => import('@/views/home/index')
+  },
+  {
+    path: '/downLoad',
+    name: 'downLoad',
+    component: () => import('@/views/downLoad/index')
   }
   }
   // {
   // {
   //   path: '/',
   //   path: '/',

BIN
src/views/downLoad/images/demo.png


BIN
src/views/downLoad/images/downBg.png


BIN
src/views/downLoad/images/finch.png


+ 10 - 0
src/views/downLoad/index.module.less

@@ -0,0 +1,10 @@
+.bgWhite {
+  background: url(./images/downBg.png) no-repeat cover;
+  .container {
+    width: 1200px;
+    .finch {
+      width: 155px;
+      height: 194px;
+    }
+  }
+}

+ 20 - 0
src/views/downLoad/index.tsx

@@ -0,0 +1,20 @@
+// import { PaperClipIcon } from '@heroicons/vue/solid'
+import { defineComponent } from 'vue'
+import styles from './index.module.less'
+import finch from './images/finch.png'
+import demo from './images/demo.png'
+export default defineComponent({
+  name: 'downLoad',
+  render() {
+    return (
+      <div class={styles.bgWhite}>
+        <div class={styles.container}>
+          <div class="imgWrap">
+            <img src={demo} alt="" />
+            <img src={finch} class={styles.finch} alt="" />
+          </div>
+        </div>
+      </div>
+    )
+  }
+})