index.vue
718 字节
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
<template>
<view class="header-content">
<image class="header-logo-img" src="../../static/img/ccdg.png"></image>
<view class="header-info">
<view class="header-tip">彩店名称</view>
<view class="header-name">江西省鹰潭市</view>
</view>
</view>
</template>
<script>
</script>
<style>
.header-content {
background-color: #D23338;
width: 100vw;
height: 77px;
display: flex;
}
.header-logo-img {
margin: 16px;
width: 45px;
height: 45px;
border-radius: 45px;
background-color: #FFFFFF;
}
.header-info {
font-size: 16px;
color: #FFFFFF;
margin-top: 20px;
}
.header-tip {
}
.header-name {
font-size: 12px;
}
</style>