personalFunction.vue 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <template>
  2. <!-- 个人功能 -->
  3. <view class="team">
  4. <text class="team-title">个人功能</text>
  5. <view class="function-team">
  6. <view class="icon-center">
  7. <image class="form-icon" src="../../../static/mine/322.png" mode=""></image>
  8. <view class="characters">成为团长</view>
  9. </view>
  10. <view class="icon-center">
  11. <image class="form-icon" src="../../../static/mine/317.png" mode=""></image>
  12. <view class="characters">联系客服</view>
  13. </view>
  14. <view class="icon-center">
  15. <image class="form-icon" src="../../../static/mine/321.png" mode="" @click="toSetup"></image>
  16. <view class="characters">账号设置</view>
  17. </view>
  18. </view>
  19. </view>
  20. </template>
  21. <script>
  22. export default {
  23. data(){
  24. return{
  25. }
  26. },
  27. methods:{
  28. toSetup(){
  29. uni.navigateTo({
  30. url:"/pageC/accountSetup/accountSetup"
  31. })
  32. }
  33. }
  34. }
  35. </script>
  36. <style lang="scss">
  37. .team{
  38. height: 110px;
  39. width: 100%;
  40. background-color: #fff;
  41. border-radius: 10px;
  42. margin-top: 10px;
  43. padding-top: 14px;
  44. .team-title{
  45. color: #222;
  46. font-size: 14px;
  47. font-weight: 600;
  48. display: block;
  49. margin-left: 10px;
  50. }
  51. .function-team{
  52. display: flex;
  53. flex-wrap: wrap;
  54. align-items: center;
  55. .icon-center{
  56. width: 18%;
  57. margin-top: 18px;
  58. display: flex;
  59. flex-wrap: wrap;
  60. padding: 0 10px;
  61. justify-content: center;
  62. flex-direction: column;
  63. align-items: center;
  64. }
  65. .form-icon{
  66. width: 24px;
  67. height: 24px;
  68. }
  69. .characters{
  70. color: #202020;
  71. font-size: 12px;
  72. margin-top: 10px;
  73. }
  74. }
  75. }
  76. </style>