personalFunction.vue 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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
  8. class="form-icon"
  9. src="../../../static/mine/322.png"
  10. mode=""
  11. ></image>
  12. <view class="characters">成为团长</view>
  13. </view>
  14. <view class="icon-center">
  15. <image
  16. class="form-icon"
  17. src="../../../static/mine/317.png"
  18. mode=""
  19. ></image>
  20. <view class="characters">联系客服</view>
  21. </view>
  22. <view class="icon-center" @click="toSetup">
  23. <image
  24. class="form-icon"
  25. src="../../../static/mine/321.png"
  26. mode=""
  27. ></image>
  28. <view class="characters">账号设置</view>
  29. </view>
  30. </view>
  31. </view>
  32. </template>
  33. <script>
  34. export default {
  35. data() {
  36. return {};
  37. },
  38. methods: {
  39. toSetup() {
  40. uni.navigateTo({
  41. url: "/pageC/accountSetup/accountSetup",
  42. });
  43. },
  44. toSetleIn() {
  45. uni.$u.http.post(`/api/merchant/status`).then((res) => {
  46. console.log(res);
  47. if (res.status == 1 || res.status == 0) {
  48. uni.navigateTo({
  49. url: "/pageD/resultFeedback/resultFeedback",
  50. });
  51. } else {
  52. uni.navigateTo({
  53. url: "/pageD/settleIn/settleIn",
  54. });
  55. }
  56. });
  57. },
  58. },
  59. };
  60. </script>
  61. <style lang="scss">
  62. .team {
  63. height: 110px;
  64. width: 100%;
  65. background-color: #fff;
  66. border-radius: 10px;
  67. margin-top: 10px;
  68. padding-top: 14px;
  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. align-items: center;
  80. .icon-center {
  81. width: 18%;
  82. margin-top: 18px;
  83. display: flex;
  84. flex-wrap: wrap;
  85. padding: 0 10px;
  86. justify-content: center;
  87. flex-direction: column;
  88. align-items: center;
  89. }
  90. .form-icon {
  91. width: 24px;
  92. height: 24px;
  93. }
  94. .characters {
  95. color: #202020;
  96. font-size: 12px;
  97. margin-top: 10px;
  98. }
  99. }
  100. }
  101. </style>