智慧画屏客户端
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

3 years ago
  1. <template>
  2. <view class="header-content">
  3. <text class="iconfont icon-bangzhu" ></text>
  4. 帮助
  5. </view>
  6. </template>
  7. <script>
  8. export default {
  9. name:'Header',
  10. components: {
  11. },
  12. data() {
  13. return {
  14. };
  15. },
  16. };
  17. </script>
  18. <style scoped>
  19. .header-content{
  20. display: flex;
  21. padding: 61.11rpx 41.66rpx 0 41.66rpx;
  22. justify-content: flex-end;
  23. font-size: 27.77rpx;
  24. line-height: 27.77rpx;
  25. color: #fff;
  26. }
  27. .icon-bangzhu{
  28. margin-top: 1.38rpx;
  29. margin-right: 11.11rpx;
  30. color: #fff;
  31. }
  32. </style>