123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218 |
- <template>
- <view class="flex-col" :style="{height: winHeight + 'px'}">
- <!-- #ifdef MP -->
- <view class="cart_nav">
- <nav-bar iconColor='#fff' ref="navBarRef" navTitle="游戏搭子" backgroundColor="#FF6702" :isBackgroundColor="false">
- </nav-bar>
- </view>
- <!-- #endif -->
- <view class='newsList tui-skeleton flex-col' style="background-color: #fff;flex: 1;">
- <view class='nav flex-around-center'>
- <view class='item flex-center' v-for="(item,index) in navList" :key="index" :class='active==item.id?"on":""' @click='tabSelect(item.id, index)'>
- <view class="line1">{{item.name}}</view>
- <view class='line' v-show="active==item.id"></view>
- </view>
- </view>
- <view class='list' style="flex: 1;">
- <template v-if="active == 1">
- </template>
- <template v-if="active == 2">
- </template>
- </view>
- </view>
- </view>
- </template>
- <script>
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2025 https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- import navBar from '@/components/navBar';
- import animationType from '@/utils/animationType.js'
- import tuiSkeleton from '@/components/base/tui-skeleton.vue';
- import {
- getAddressList
- } from '@/api/user.js';
- let app = getApp();
- export default {
- components: {
- tuiSkeleton,
- navBar
- },
- data() {
- return {
- winHeight: 0,
- isNodes: 0, //控制什么时候开始抓取元素节点,只要数值改变就重新抓取
- autoplay: true,
- navList: [{
- id: 1,
- name: '本校'
- }, {
- id: 2,
- name: '同城'
- }],
- active: 1,
- scrollLeft: 0,
- addressItem: {}
- };
- },
- onLoad() {
- let that = this;
- uni.getSystemInfo({
- success: function(res) {
- that.winHeight = res.windowHeight
- },
- });
- this.getaddressInfo()
- },
- /**
- * 生命周期函数--监听页面显示
- */
- onShow: function() {
- let that = this;
- uni.$on('addressItem', function(res) {
- that.$set(that, 'addressItem', res);
- })
- },
- methods: {
- tabSelect(active, e) {
- this.active = active;
- },
- /*
- * 获取默认收货地址或者获取某条地址信息
- */
- getaddressInfo: function() {
- getAddressList().then(res => {
- console.log('地址', res)
- if (res.code = 200) {
- if (res.data.length !== 0) {
- this.addressItem = res.data.find(item => item.isDefault === true) || {} // this.addressItem = res.data[0];
- } else {
- this.addressItem = {}
- }
- console.log('默认地址', this.addressItem)
- }
- })
- }
- }
- }
- </script>
- <style lang="scss">
- .courie {
- padding: 14rpx 24rpx 0 24rpx;
- font-weight: 500;
- font-size: 23rpx;
- color: $bg-color-primary;
- background-color: #fff;
- image {
- width: 46rpx;
- height: 46rpx;
- margin-right: 15rpx;
- }
- }
- .newsList .swiper {
- width: 100%;
- position: relative;
- box-sizing: border-box;
- padding: 0 30rpx;
- }
- .newsList .swiper swiper {
- width: 100%;
- height: 365rpx;
- position: relative;
- }
- .newsList .swiper .slide-image {
- width: 100%;
- height: 335rpx;
- border-radius: 14rpx;
- }
- // #ifdef MP-WEIXIN
- .newsList .swiper .wx-swiper-dot {
- width: 12rpx !important;
- height: 12rpx !important;
- border-radius: 0;
- transform: rotate(-45deg);
- transform-origin: 0 100%;
- }
- .newsList .swiper .wx-swiper-dot~.wx-swiper-dot {
- margin-left: 5rpx;
- }
- .newsList .swiper .wx-swiper-dots.wx-swiper-dots-horizontal {
- margin-bottom: -15rpx;
- }
- // #endif
- // #ifdef APP-PLUS || H5
- .newsList .swiper .uni-swiper-dot {
- width: 12rpx !important;
- height: 12rpx !important;
- border-radius: 0;
- transform: rotate(-45deg);
- transform-origin: 0 100%;
- }
- .newsList .swiper .uni-swiper-dot~.uni-swiper-dot {
- margin-left: 5rpx;
- }
- .newsList .swiper .uni-swiper-dots.uni-swiper-dots-horizontal {
- margin-bottom: -15rpx;
- }
- // #endif
- .newsList .nav {
- padding: 0 100rpx;
- width: 100%;
- height: 96rpx;
- white-space: nowrap;
- box-sizing: border-box;
- padding-top: 43rpx;
- border-top-right-radius: 23rpx;
- background-color: #fff;
- }
- .newsList .nav .item {
- // max-width: 156rpx;
- display: inline-block;
- font-size: 32rpx;
- color: #999;
- }
- .newsList .nav .item.on {
- font-weight: 600;
- font-size: 35rpx;
- color: #141414;
- }
- .newsList .nav .item~.item {
- margin-left: 46rpx;
- }
- .newsList .nav .item .line {
- // width: 24rpx;
- height: 10rpx;
- border-radius: 6rpx;
- margin: 10rpx auto 0 auto;
- background: linear-gradient( 90deg, #BC86FF 0%, #914CE7 100%);
- }
- .newsList .nav .item .line1 {
- font-weight: 500;
- font-size: 31rpx;
- color: #B2B2B2;
- }
- </style>
|