123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- <template>
- <view >
- <view>
- <mescroll-item ref="MescrollItem" :i="index" :index="tabIndex" :height="height" v-for="(tab,index) in tabsList" :key="index">
- </mescroll-item>
- </view>
- </view>
- </template>
- <script>
- import MescrollItem from "./module/mescrollUni-item.vue";
- import {
- getUserInfo,
- userEdit,
- getLogout
- } from '@/api/user.js';
- import {
- switchH5Login
- } from '@/api/api.js';
- import {
- toLogin
- } from '@/libs/login.js';
- import {
- mapGetters
- } from "vuex";
- import dayjs from "@/plugin/dayjs/dayjs.min.js";
- // #ifdef MP
- import authorize from '@/components/Authorize';
- // #endif
- import colors from '@/mixins/color.js';
- export default {
- components: {
- MescrollItem,
- // #ifdef APP-PLUS
- appUpdate,
- // #endif
- // #ifdef MP
- authorize
- // #endif
- },
- mixins: [colors],
- data () {
- return {
- height:'',
- tabIndex:0,
- tabsList:[{name:"我的客户"}]
- };
- },
- computed: mapGetters(['isLogin']),
- watch: {
- isLogin: {
- handler: function (newV, oldV) {
- if (newV) {
- }
- },
- deep: true
- }
- },
- onLoad () {
- },
- onShow(){
- let sysInfo = uni.getSystemInfoSync()
- this.height= sysInfo.windowHeight -(sysInfo.screenWidth/750) * (200) +'px';
- console.log(this.height)
- },
- methods: {
- swiperChange: function (e) {
- this.currentSwiper = e.detail.current
- }
- }
- }
- </script>
- <style scoped lang="scss">
- .cartcolor {
- color: var(--view-theme);
- border: 1px solid var(--view-theme);
- }
- .myclient_list {
- margin-top: 30rpx;
- width: 750rpx;
- height: 220rpx;
- padding: 30rpx;
- background: #FFFFFF;
- .myclient_list_name {
- margin-bottom: 15rpx;
- height: 44rpx;
- font-size: 28rpx;
- font-weight: 500;
- color: #111111;
- line-height: 44rpx;
- }
- .myclient_list_content {
- image {
- width: 24rpx;
- height: 24rpx;
- margin-right: 20rpx;
- }
- .phone {
- margin-bottom: 15rpx;
- height: 44rpx;
- font-size: 24rpx;
- font-weight: 400;
- color: #999999;
- line-height: 44rpx;
- }
- .time {
- height: 44rpx;
- font-size: 24rpx;
- font-weight: 400;
- color: #999999;
- line-height: 44rpx;
- }
- }
- }
- </style>
|