teamFunction.vue 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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" @click="toNextPage('/pageD/platformProducts/platformProducts')">
  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" @click="toNextPage('/pageD/commodityManage/commodityManage')">
  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" @click="toNextPage('/pageD/orderFormManage/orderFormManage')">
  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" @click="toNextPage('/pageD/afterSalesManage/afterSalesManage')">
  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" @click="toNextPage('/pageD/supplyChainGoods/supplyChainGoods')">
  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" @click="toNextPage('/pageD/resultFeedback/resultFeedback')">
  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" v-if="user_no !='19550568052'" @click="tokefu">
  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" @click="toNextPage('/pageC/accountSetup/accountSetup')">
  35. <image class="form-icon" src="../../../static/mine/321.png" mode=""></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. user_no: ''
  46. };
  47. },
  48. computed: {
  49. i18n() {
  50. return this.$t("index");
  51. },
  52. },
  53. created() {
  54. if (uni.getStorageSync('user_no')) {
  55. this.user_no = uni.getStorageSync('user_no')
  56. }
  57. },
  58. methods: {
  59. tokefu() {
  60. uni.navigateTo({
  61. url: '/pageA/service/service'
  62. })
  63. },
  64. toNextPage(url) {
  65. uni.navigateTo({
  66. url: url,
  67. });
  68. },
  69. },
  70. };
  71. </script>
  72. <style lang="scss">
  73. .team {
  74. width: 100%;
  75. background-color: #fff;
  76. border-radius: 10px;
  77. margin-top: 10px;
  78. padding-top: 14px;
  79. padding-bottom: 20px;
  80. .team-title {
  81. color: #222;
  82. font-size: 14px;
  83. font-weight: 600;
  84. display: block;
  85. margin-left: 10px;
  86. }
  87. .function-team {
  88. display: flex;
  89. flex-wrap: wrap;
  90. justify-content: space-around;
  91. align-items: center;
  92. .icon-center {
  93. width: 18%;
  94. margin-top: 18px;
  95. display: flex;
  96. flex-wrap: wrap;
  97. padding: 0 10px;
  98. justify-content: center;
  99. flex-direction: column;
  100. align-items: center;
  101. }
  102. .form-icon {
  103. width: 24px;
  104. height: 24px;
  105. }
  106. .characters {
  107. color: #202020;
  108. font-size: 12px;
  109. text-align: center;
  110. margin-top: 10px;
  111. }
  112. }
  113. }
  114. </style>