默认提交
Showing
4 changed files
with
22 additions
and
7 deletions
... | @@ -4,10 +4,19 @@ module.exports = { | ... | @@ -4,10 +4,19 @@ module.exports = { |
4 | ], | 4 | ], |
5 | sourceType: 'unambiguous', | 5 | sourceType: 'unambiguous', |
6 | plugins: [ | 6 | plugins: [ |
7 | ['import', { | 7 | [ |
8 | libraryName: 'vant', | 8 | 'import', { |
9 | libraryDirectory: 'es', | 9 | libraryName: 'vant', |
10 | style: true | 10 | libraryDirectory: 'es', |
11 | }, 'vant'] | 11 | style: true |
12 | }, 'vant' | ||
13 | ], | ||
14 | [ | ||
15 | "component", | ||
16 | { | ||
17 | "libraryName": "element-ui", | ||
18 | "styleLibraryName": "theme-chalk" | ||
19 | } | ||
20 | ] | ||
12 | ] | 21 | ] |
13 | } | 22 | } | ... | ... |
... | @@ -51,11 +51,11 @@ | ... | @@ -51,11 +51,11 @@ |
51 | <div class="public"> | 51 | <div class="public"> |
52 | <div class="tit">{{$t('footer.qrcode')}}</div> | 52 | <div class="tit">{{$t('footer.qrcode')}}</div> |
53 | <div @click="qrcodeVisible = !qrcodeVisible" v-if="qrcodeVisible" class="qrcode-wrap"> | 53 | <div @click="qrcodeVisible = !qrcodeVisible" v-if="qrcodeVisible" class="qrcode-wrap"> |
54 | <img @mouseout="onOutHandler($event)" src="@/assets/images/home/qrcode.png" alt=""> | 54 | <img @mouseout="onOutHandler($event)" src="@/assets/images/home/qrcode.png" alt=""> |
55 | <div class="c1">{{$t('footer.qrcodeBot')}}</div> | 55 | <div class="c1">{{$t('footer.qrcodeBot')}}</div> |
56 | </div> | 56 | </div> |
57 | <template v-else> | 57 | <template v-else> |
58 | <img @click="qrcodeVisible = !qrcodeVisible" @mouseover="onOverHandler($event)" @mouseout="onOutHandler($event)" class="icon pointer" src="@/assets/images/home/footer-icon-1.png" alt=""> | 58 | <img @click="qrcodeVisible = !qrcodeVisible" @mouseover="onOverHandler($event)" @mouseout="onOutHandler($event)" class="icon pointer" src="@/assets/images/home/footer-icon-1.png" alt=""> |
59 | <img class="icon pointer" src="@/assets/images/home/footer-icon-2.png" alt=""> | 59 | <img class="icon pointer" src="@/assets/images/home/footer-icon-2.png" alt=""> |
60 | <img class="icon pointer" src="@/assets/images/home/footer-icon-3.png" alt=""> | 60 | <img class="icon pointer" src="@/assets/images/home/footer-icon-3.png" alt=""> |
61 | </template> | 61 | </template> | ... | ... |
... | @@ -23,6 +23,10 @@ import { | ... | @@ -23,6 +23,10 @@ import { |
23 | Vue.use(Collapse).use(CollapseItem); | 23 | Vue.use(Collapse).use(CollapseItem); |
24 | Vue.use(Icon); | 24 | Vue.use(Icon); |
25 | 25 | ||
26 | |||
27 | // import { Button } from 'element-ui'; | ||
28 | // Vue.use(Button) | ||
29 | |||
26 | import Mock from './mock' | 30 | import Mock from './mock' |
27 | Mock.bootstrap(); | 31 | Mock.bootstrap(); |
28 | 32 | ... | ... |
src/styles/element-variables.scss
0 → 100644
-
Please register or sign in to post a comment