You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
503 B
34 lines
503 B
<template>
|
|
<view class="header-content">
|
|
<text class="iconfont icon-bangzhu" ></text>
|
|
帮助
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name:'Header',
|
|
components: {
|
|
},
|
|
data() {
|
|
return {
|
|
};
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style scoped>
|
|
.header-content{
|
|
display: flex;
|
|
padding: 61.11rpx 41.66rpx 0 41.66rpx;
|
|
justify-content: flex-end;
|
|
font-size: 27.77rpx;
|
|
line-height: 27.77rpx;
|
|
color: #fff;
|
|
}
|
|
.icon-bangzhu{
|
|
margin-top: 1.38rpx;
|
|
margin-right: 11.11rpx;
|
|
color: #fff;
|
|
}
|
|
</style>
|