teamFunction.vue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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/319.png" mode=""></image>
  8. <view class="characters">平台商品库</view>
  9. </view>
  10. <view class="icon-center">
  11. <image class="form-icon" src='../../../static/mine/318.png' mode=""></image>
  12. <view class="characters">商品管理</view>
  13. </view>
  14. <view class="icon-center">
  15. <image class="form-icon" src="../../../static/mine/315.png" mode=""></image>
  16. <view class="characters">订单管理</view>
  17. </view>
  18. <view class="icon-center">
  19. <image class="form-icon" src="../../../static/mine/320.png" mode=""></image>
  20. <view class="characters">售后管理</view>
  21. </view>
  22. <view class="icon-center">
  23. <image class="form-icon" src="../../../static/mine/316.png" mode=""></image>
  24. <view class="characters">供应链商品</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">PC端</view>
  29. </view>
  30. <view class="icon-center">
  31. <image class="form-icon" src="../../../static/mine/317.png" mode=""></image>
  32. <view class="characters">联系客服</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">账号设置</view>
  37. </view>
  38. </view>
  39. </view>
  40. </template>
  41. <script>
  42. export default{
  43. data(){
  44. return{
  45. }
  46. },
  47. methods:{
  48. toSetup(){
  49. uni.navigateTo({
  50. url:"/pageC/accountSetup/accountSetup"
  51. })
  52. }
  53. }
  54. }
  55. </script>
  56. <style lang="scss">
  57. .team{
  58. height: 170px;
  59. width: 100%;
  60. background-color: #fff;
  61. border-radius: 10px;
  62. margin-top: 10px;
  63. padding-top: 14px;
  64. .team-title{
  65. color: #222;
  66. font-size: 14px;
  67. font-weight: 600;
  68. display: block;
  69. margin-left: 10px;
  70. }
  71. .function-team{
  72. display: flex;
  73. flex-wrap: wrap;
  74. justify-content: space-around;
  75. align-items: center;
  76. .icon-center{
  77. width: 18%;
  78. margin-top: 18px;
  79. display: flex;
  80. flex-wrap: wrap;
  81. padding: 0 10px;
  82. justify-content: center;
  83. }
  84. .form-icon{
  85. width: 24px;
  86. height: 24px;
  87. }
  88. .characters{
  89. color: #202020;
  90. font-size: 12px;
  91. margin-top: 10px;
  92. }
  93. }
  94. }
  95. </style>