mine.vue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. <template>
  2. <!-- 我的 -->
  3. <view class="mine">
  4. <!-- 头部个人信息 -->
  5. <view class="mine-top">
  6. <image class="header-img"
  7. src="https://c-ssl.dtstatic.com/uploads/blog/202201/23/20220123222213_2899a.thumb.1000_0.jpeg" alt="" />
  8. <view class="user-info">
  9. <view class="name">姓名:张三</view>
  10. <text class="user-id">ID:123455</text>
  11. </view>
  12. <view class="user-home" >主页 <text class="home-right"></text> </view>
  13. </view>
  14. <!-- 头部个人信息 -->
  15. <!-- 余额组件 -->
  16. <MineMoney :isTeam="isTeam" />
  17. <!-- 余额组件 -->
  18. <!-- 商城订单 -->
  19. <MallOrderForm />
  20. <!-- 商城订单 -->
  21. <!-- 团长功能组件 -->
  22. <TeamFunction v-if="isTeam" />
  23. <!-- 团长功能组件 -->
  24. <!-- 非团长组件 -->
  25. <PersonalFunction v-else />
  26. <!-- 底部tab栏 -->
  27. <kj-tabbar :value1=4></kj-tabbar>
  28. <!-- 底部tab栏 -->
  29. </view>
  30. </template>
  31. <script>
  32. import MineMoney from './component/mineMoney.vue';
  33. import MallOrderForm from './component/mallOrderForm.vue';
  34. import TeamFunction from './component/teamFunction.vue';
  35. import PersonalFunction from './component/personalFunction.vue';
  36. export default {
  37. components:{
  38. MineMoney,
  39. MallOrderForm,
  40. TeamFunction,
  41. PersonalFunction
  42. },
  43. data() {
  44. return {
  45. isTeam:true,//用来判断当前用户是不是团长
  46. };
  47. },
  48. created() {
  49. //设置顶部标题栏颜色
  50. uni.setNavigationBarColor({
  51. frontColor: '#ffffff',
  52. backgroundColor: '#f4f4f4'
  53. })
  54. }
  55. }
  56. </script>
  57. <style lang="scss">
  58. .mine {
  59. padding-left: 10px;
  60. background-color: #f4f4f4;
  61. padding-right: 10px;
  62. }
  63. .mine-top {
  64. display: flex;
  65. align-items: center;
  66. position: relative;
  67. .header-img {
  68. height: 54px;
  69. width: 54px;
  70. border-radius: 50%;
  71. margin-right: 10px;
  72. }
  73. .user-info{
  74. .name{
  75. margin-bottom: 4px;
  76. color: #222;
  77. font-size: 18px;
  78. font-weight: 600;
  79. }
  80. .user-id{
  81. font-size: 12px;
  82. color: #333;
  83. }
  84. }
  85. .user-home {
  86. position: absolute;
  87. right: 0;
  88. width: 72px;
  89. height: 28px;
  90. background-color: #eee;
  91. text-align: center;
  92. font-size: 13px;
  93. font-size: #333;
  94. line-height: 28px;
  95. border-radius: 14px 0 0 14px;
  96. .home-right{
  97. display: inline-block;
  98. width: 10px;
  99. height: 10px;
  100. background-image: url('../../static/mine/right.png');
  101. background-size: 100% 100%;
  102. background-repeat: no-repeat;
  103. margin-right: 4px;
  104. }
  105. }
  106. }
  107. </style>