mine.vue 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. <template>
  2. <!-- 我的 -->
  3. <view class="mine">
  4. <!-- 头部个人信息 -->
  5. <view class="mine-top">
  6. <image class="header-img" :src="userInformation.avatar" alt="" />
  7. <view class="user-info">
  8. <view class="name">{{ userInformation.nickname }}</view>
  9. <text class="user-id">ID:{{ userInformation.id }}</text>
  10. </view>
  11. <view v-if="isTeam" class="user-home" @click="toHome"
  12. >{{ i18n.homepage }} <text class="home-right"></text>
  13. </view>
  14. </view>
  15. <!-- 头部个人信息 -->
  16. <!-- 余额组件 -->
  17. <MineMoney :isTeam="isTeam" :userInformation="userInformation" />
  18. <!-- 余额组件 -->
  19. <!-- 商城订单 -->
  20. <MallOrderForm />
  21. <!-- 商城订单 -->
  22. <!-- 团长功能组件 -->
  23. <TeamFunction v-if="userInformation.merchant" />
  24. <!-- 团长功能组件 -->
  25. <!-- 非团长组件 -->
  26. <PersonalFunction v-else />
  27. <!-- 底部tab栏 -->
  28. <kj-tabbar :value1="4"></kj-tabbar>
  29. <!-- 底部tab栏 -->
  30. </view>
  31. </template>
  32. <script>
  33. import MineMoney from "./component/mineMoney.vue";
  34. import MallOrderForm from "./component/mallOrderForm.vue";
  35. import TeamFunction from "./component/teamFunction.vue";
  36. import PersonalFunction from "./component/personalFunction.vue";
  37. export default {
  38. components: {
  39. MineMoney,
  40. MallOrderForm,
  41. TeamFunction,
  42. PersonalFunction,
  43. },
  44. computed: {
  45. i18n() {
  46. return this.$t("index");
  47. },
  48. },
  49. data() {
  50. return {
  51. isTeam: true, //用来判断当前用户是不是团长
  52. userInformation: {},
  53. };
  54. },
  55. onShow() {
  56. this.getUserInfo();
  57. },
  58. methods: {
  59. toHome() {
  60. uni.navigateTo({
  61. url: `/pageD/homepage/homepage?page=false&merchant_id=${this.userInformation.merchant.id}`,
  62. });
  63. },
  64. getUserInfo() {
  65. uni.$u.http.get(`/api/member/info`).then((res) => {
  66. this.userInformation = res;
  67. uni.setStorage({
  68. key: "user_info",
  69. data: this.userInformation,
  70. });
  71. });
  72. },
  73. },
  74. created() {
  75. //设置顶部标题栏颜色
  76. uni.setNavigationBarColor({
  77. frontColor: "#ffffff",
  78. backgroundColor: "#f4f4f4",
  79. });
  80. },
  81. };
  82. </script>
  83. <style lang="scss">
  84. .mine {
  85. padding-left: 10px;
  86. background-color: #f4f4f4;
  87. padding-right: 10px;
  88. position: relative;
  89. }
  90. .mine-top {
  91. display: flex;
  92. align-items: center;
  93. .header-img {
  94. height: 54px;
  95. width: 54px;
  96. border-radius: 50%;
  97. margin-right: 10px;
  98. }
  99. .user-info {
  100. .name {
  101. margin-bottom: 4px;
  102. color: #222;
  103. font-size: 18px;
  104. font-weight: 600;
  105. }
  106. .user-id {
  107. font-size: 12px;
  108. color: #333;
  109. }
  110. }
  111. .user-home {
  112. position: absolute;
  113. right: 0;
  114. min-width: 72px;
  115. height: 28px;
  116. background-color: #eee;
  117. text-align: center;
  118. font-size: 13px;
  119. font-size: #333;
  120. line-height: 28px;
  121. border-radius: 14px 0 0 14px;
  122. .home-right {
  123. display: inline-block;
  124. width: 10px;
  125. height: 10px;
  126. background-image: url("../../static/mine/right.png");
  127. background-size: 100% 100%;
  128. background-repeat: no-repeat;
  129. // margin-right: 4px;
  130. }
  131. }
  132. }
  133. </style>