index.vue 718 字节
<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>