index.vue 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. <template>
  2. <view >
  3. <view>
  4. <mescroll-item ref="MescrollItem" :i="index" :index="tabIndex" :height="height" v-for="(tab,index) in tabsList" :key="index">
  5. </mescroll-item>
  6. </view>
  7. </view>
  8. </template>
  9. <script>
  10. import MescrollItem from "./module/mescrollUni-item.vue";
  11. import {
  12. getUserInfo,
  13. userEdit,
  14. getLogout
  15. } from '@/api/user.js';
  16. import {
  17. switchH5Login
  18. } from '@/api/api.js';
  19. import {
  20. toLogin
  21. } from '@/libs/login.js';
  22. import {
  23. mapGetters
  24. } from "vuex";
  25. import dayjs from "@/plugin/dayjs/dayjs.min.js";
  26. // #ifdef MP
  27. import authorize from '@/components/Authorize';
  28. // #endif
  29. import colors from '@/mixins/color.js';
  30. export default {
  31. components: {
  32. MescrollItem,
  33. // #ifdef APP-PLUS
  34. appUpdate,
  35. // #endif
  36. // #ifdef MP
  37. authorize
  38. // #endif
  39. },
  40. mixins: [colors],
  41. data () {
  42. return {
  43. height:'',
  44. tabIndex:0,
  45. tabsList:[{name:"我的客户"}]
  46. };
  47. },
  48. computed: mapGetters(['isLogin']),
  49. watch: {
  50. isLogin: {
  51. handler: function (newV, oldV) {
  52. if (newV) {
  53. }
  54. },
  55. deep: true
  56. }
  57. },
  58. onLoad () {
  59. },
  60. onShow(){
  61. let sysInfo = uni.getSystemInfoSync()
  62. this.height= sysInfo.windowHeight -(sysInfo.screenWidth/750) * (200) +'px';
  63. console.log(this.height)
  64. },
  65. methods: {
  66. swiperChange: function (e) {
  67. this.currentSwiper = e.detail.current
  68. }
  69. }
  70. }
  71. </script>
  72. <style scoped lang="scss">
  73. .cartcolor {
  74. color: var(--view-theme);
  75. border: 1px solid var(--view-theme);
  76. }
  77. .myclient_list {
  78. margin-top: 30rpx;
  79. width: 750rpx;
  80. height: 220rpx;
  81. padding: 30rpx;
  82. background: #FFFFFF;
  83. .myclient_list_name {
  84. margin-bottom: 15rpx;
  85. height: 44rpx;
  86. font-size: 28rpx;
  87. font-weight: 500;
  88. color: #111111;
  89. line-height: 44rpx;
  90. }
  91. .myclient_list_content {
  92. image {
  93. width: 24rpx;
  94. height: 24rpx;
  95. margin-right: 20rpx;
  96. }
  97. .phone {
  98. margin-bottom: 15rpx;
  99. height: 44rpx;
  100. font-size: 24rpx;
  101. font-weight: 400;
  102. color: #999999;
  103. line-height: 44rpx;
  104. }
  105. .time {
  106. height: 44rpx;
  107. font-size: 24rpx;
  108. font-weight: 400;
  109. color: #999999;
  110. line-height: 44rpx;
  111. }
  112. }
  113. }
  114. </style>