personalFunction.vue 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <template>
  2. <view class="team">
  3. <text class="team-title">个人功能</text>
  4. <view class="function-team">
  5. <view class="icon-center">
  6. <image class="form-icon" src="../../../static/mine/322.png" mode=""></image>
  7. <view class="characters">成为团长</view>
  8. </view>
  9. <view class="icon-center">
  10. <image class="form-icon" src="../../../static/mine/317.png" mode=""></image>
  11. <view class="characters">联系客服</view>
  12. </view>
  13. <view class="icon-center">
  14. <image class="form-icon" src="../../../static/mine/321.png" mode=""></image>
  15. <view class="characters">账号设置</view>
  16. </view>
  17. </view>
  18. </view>
  19. </template>
  20. <script>
  21. </script>
  22. <style lang="scss">
  23. .team{
  24. height: 110px;
  25. width: 100%;
  26. background-color: #fff;
  27. border-radius: 10px;
  28. margin-top: 10px;
  29. padding-top: 14px;
  30. .team-title{
  31. color: #222;
  32. font-size: 14px;
  33. font-weight: 600;
  34. display: block;
  35. margin-left: 10px;
  36. }
  37. .function-team{
  38. display: flex;
  39. flex-wrap: wrap;
  40. align-items: center;
  41. .icon-center{
  42. width: 18%;
  43. margin-top: 18px;
  44. display: flex;
  45. flex-wrap: wrap;
  46. padding: 0 10px;
  47. justify-content: center;
  48. }
  49. .form-icon{
  50. width: 24px;
  51. height: 24px;
  52. }
  53. .characters{
  54. color: #202020;
  55. font-size: 12px;
  56. margin-top: 10px;
  57. }
  58. }
  59. }
  60. </style>