Commit cc7f2fcf329177be5d97621daf671ed25e5d0db1

Authored by sanmu
1 parent 9373e3f1

up

dist/index.html
... ... @@ -5,8 +5,8 @@
5 5 <link rel="icon" href="/favicon.ico">
6 6 <meta name="viewport" content="width=device-width, initial-scale=1.0">
7 7 <title>Vite App</title>
8   - <script type="module" crossorigin src="/assets/index-2b52aa89.js"></script>
9   - <link rel="stylesheet" href="/assets/index-b84503aa.css">
  8 + <script type="module" crossorigin src="/assets/index-2c017680.js"></script>
  9 + <link rel="stylesheet" href="/assets/index-e124e07b.css">
10 10 </head>
11 11 <body>
12 12 <div id="app"></div>
... ...
src/components/Footer.vue
1 1 <template>
2   - <div class="tw-bottom-0 tw-leading-10 tw-h-10 tw-text-center tw-w-full tw-pt-[100px]">
3   - <!-- 备案:xxxxs -->
  2 + <div class="bg-grey-darken-3 tw-flex tw-pt-[32px] tw-pb-[32px]">
  3 + <v-container>
  4 + <v-row>
  5 + <v-col>
  6 + <b>Solution</b>
  7 + <p><router-link to="/equipment">Lab Device</router-link></p>
  8 + <p><router-link to="/customize">Customized BatterTesting</router-link></p>
  9 + <p><router-link to="/pack">Pack</router-link></p>
  10 + </v-col>
  11 + <v-col>
  12 + <b>Online Product</b>
  13 + <p><router-link to="/products">Material Reagents</router-link></p>
  14 + <p><router-link to="/equipment">Lab Device</router-link></p>
  15 + </v-col>
  16 + <v-col>
  17 + <b>About</b>
  18 + <p><router-link to="/about">About us</router-link></p>
  19 + </v-col>
  20 + <v-col>
  21 + <b>Contact us</b>
  22 + <p>contact@canrd.com</p>
  23 + </v-col>
  24 + </v-row>
  25 + </v-container>
4 26 </div>
5 27 </template>
6 28  
7 29 <script setup lang="ts"></script>
8 30  
9   -<style lang="less" scoped></style>
  31 +<style>
  32 +b {
  33 + margin-bottom: 12px;
  34 + display: block;
  35 +}
  36 +p {
  37 + cursor: pointer;
  38 + margin-bottom: 8px;
  39 +}
  40 +p a:hover {
  41 + color: #e0e0e0;
  42 +}
  43 +</style>
... ...