personalFunction.vue 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <template>
  2. <!-- 个人功能 -->
  3. <view class="team">
  4. <text class="team-title">个人功能</text>
  5. <view class="function-team">
  6. <view class="icon-center" @click="toSetleIn">
  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" @click="toSetup">
  15. <image class="form-icon" src="../../../static/mine/321.png" mode="" ></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. toSetleIn(){
  34. uni.navigateTo({
  35. url:"/pageD/settleIn/settleIn"
  36. })
  37. }
  38. }
  39. }
  40. </script>
  41. <style lang="scss">
  42. .team{
  43. height: 110px;
  44. width: 100%;
  45. background-color: #fff;
  46. border-radius: 10px;
  47. margin-top: 10px;
  48. padding-top: 14px;
  49. .team-title{
  50. color: #222;
  51. font-size: 14px;
  52. font-weight: 600;
  53. display: block;
  54. margin-left: 10px;
  55. }
  56. .function-team{
  57. display: flex;
  58. flex-wrap: wrap;
  59. align-items: center;
  60. .icon-center{
  61. width: 18%;
  62. margin-top: 18px;
  63. display: flex;
  64. flex-wrap: wrap;
  65. padding: 0 10px;
  66. justify-content: center;
  67. flex-direction: column;
  68. align-items: center;
  69. }
  70. .form-icon{
  71. width: 24px;
  72. height: 24px;
  73. }
  74. .characters{
  75. color: #202020;
  76. font-size: 12px;
  77. margin-top: 10px;
  78. }
  79. }
  80. }
  81. </style>