teamFunction.vue 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. <template>
  2. <!-- 团长功能 -->
  3. <view class="team">
  4. <text class="team-title">{{i18n.leaderunction}}</text>
  5. <view class="function-team">
  6. <view class="icon-center">
  7. <image class="form-icon" src="../../../static/mine/319.png" mode=""></image>
  8. <view class="characters">{{i18n.platform}}</view>
  9. </view>
  10. <view class="icon-center">
  11. <image class="form-icon" src='../../../static/mine/318.png' mode=""></image>
  12. <view class="characters">{{i18n.productManagement}}</view>
  13. </view>
  14. <view class="icon-center">
  15. <image class="form-icon" src="../../../static/mine/315.png" mode=""></image>
  16. <view class="characters">{{i18n.orderManagement}}</view>
  17. </view>
  18. <view class="icon-center">
  19. <image class="form-icon" src="../../../static/mine/320.png" mode=""></image>
  20. <view class="characters">{{i18n.afterSales}}</view>
  21. </view>
  22. <view class="icon-center">
  23. <image class="form-icon" src="../../../static/mine/316.png" mode=""></image>
  24. <view class="characters">{{i18n.supplyChain}}</view>
  25. </view>
  26. <view class="icon-center">
  27. <image class="form-icon" style="padding: 0 15px;" src="../../../static/mine/pc.png" mode=""></image>
  28. <view class="characters">{{i18n.PCEnd}}</view>
  29. </view>
  30. <view class="icon-center">
  31. <image class="form-icon" src="../../../static/mine/317.png" mode=""></image>
  32. <view class="characters">{{i18n.pontact}}</view>
  33. </view>
  34. <view class="icon-center">
  35. <image class="form-icon" src="../../../static/mine/321.png" mode="" @click="toSetup"></image>
  36. <view class="characters">{{i18n.accountSettings}}</view>
  37. </view>
  38. </view>
  39. </view>
  40. </template>
  41. <script>
  42. export default{
  43. data(){
  44. return{
  45. }
  46. },
  47. computed:{
  48. i18n(){
  49. return this.$t("index")
  50. },
  51. },
  52. methods:{
  53. toSetup(){
  54. uni.navigateTo({
  55. url:"/pageC/accountSetup/accountSetup"
  56. })
  57. }
  58. }
  59. }
  60. </script>
  61. <style lang="scss">
  62. .team{
  63. width: 100%;
  64. background-color: #fff;
  65. border-radius: 10px;
  66. margin-top: 10px;
  67. padding-top: 14px;
  68. padding-bottom: 20px;
  69. .team-title{
  70. color: #222;
  71. font-size: 14px;
  72. font-weight: 600;
  73. display: block;
  74. margin-left: 10px;
  75. }
  76. .function-team{
  77. display: flex;
  78. flex-wrap: wrap;
  79. justify-content: space-around;
  80. align-items: center;
  81. .icon-center{
  82. width: 18%;
  83. margin-top: 18px;
  84. display: flex;
  85. flex-wrap: wrap;
  86. padding: 0 10px;
  87. justify-content: center;
  88. flex-direction: column;
  89. align-items: center;
  90. }
  91. .form-icon{
  92. width: 24px;
  93. height: 24px;
  94. }
  95. .characters{
  96. color: #202020;
  97. font-size: 12px;
  98. margin-top: 10px;
  99. }
  100. }
  101. }
  102. </style>