mine.vue 2.0 KB

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