1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
| <template>
| <view class="BottomColumn flex flex-center">
| <view class="Bbar flex">
| <img style="display: block;margin-right: .22rem;width: .52rem;height: .52rem;" src="@/static/image/logo.png" alt="" srcset="" />
| <view class="font-family" style="color: #2C2C2C; font-size: .14rem;line-height: normal;font-weight: 600;">
| <view class="">
| 92017中国中医科学院中医药信息研究所版权所有京ICP备业方安大业方业方
| </view>
| <view class="">地址:北京市东城区东直门内南小街16号邮编:100700
| 电话:8610-64089611Email:tcmbase@126.com</view>
| </view>
| </view>
| </view>
| </template>
|
| <script>
| export default {
| name:"footer",
| data() {
| return {
|
| };
| }
| }
| </script>
|
| <style scoped>
| .BottomColumn {
| position: fixed;
| left: 0px;
| bottom: 0px;
| padding: .19rem 0;
| width: 100%;
| background-color: #e6eff8;
| font-size: 10px;
| color: #000;
|
| .Bbar {
| img {
| width: 60rpx;
| height: 60rpx;
| border-radius: 50%;
| }
| }
| }
| </style>
|
|