123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- <template>
- <Index v-show="value==0"/>
- <User v-show="value==1"/>
- <uv-tabbar :border="false" :value="value" @change="index=>value = index">
- <uv-tabbar-item @click="value==0" text="首页" icon="home" iconSize="30"></uv-tabbar-item>
- <uv-tabbar-item @click="value==1" text="我的" icon="account" iconSize="30"></uv-tabbar-item>
- </uv-tabbar>
- </template>
- <script setup>
- import {ref} from 'vue'
- import Index from '@/pages/index/index.vue'
- import User from '@/pages/user/index.vue'
- const value=ref(0)
- </script>
- <style lang="less">
- page {
- background-color: #fff;
- overflow: hidden;
- }
- .zp-swiper-super.data-v-bd8ff6a5 {
- background-color: rgb(244, 245, 249);
- }
- .search {
- margin: 20rpx 20rpx 0 20rpx;
- }
- .zp-swiper-container-fixed.data-v-bd8ff6a5 {
- // top: 100rpx !important;
- }
- swiper {
- min-height: 95vh;
- // overflow-y:auto;
- }
- .yiqijie{
- width: 280rpx;
- height: 90rpx;
- background-color: #2d8cf0;
- position: absolute;
- bottom: 250rpx !important;
- right: 50%;
- transform: translate(50%, 50%);
- border-radius: 50rpx;
- line-height: 90rpx;
- text-align: center;
- color: #fff;
- font-size: 35rpx;
- z-index: 99999;
- }
- .jie_card {
- width: 94%;
- margin: 30rpx auto;
- height: 270rpx;
- border-radius: 20rpx;
- background-color: #fff;
- // padding: 10rpx 0;
- }
- .tihuan_box {
- width: 84%;
- height: 500rpx;
- padding: 30rpx;
- background-color: #fff;
- margin: 30% auto;
- border-radius: 20rpx;
- }
- .jie_card_title {
- width: 100%;
- height: 84rpx;
- line-height: 84rpx;
- }
- .jie_swiper {
- // min-height: 1000rpx;
- background-color: rgb(244, 245, 249);
- }
- .jie_card_title_text {
- margin-left: 15rpx;
- line-height: center;
- // color: #606266;
- font-size: 28rpx;
- }
- .jie_tags {
- float: right;
- background-color: #E1F3D8;
- width: 104rpx;
- height: 42rpx;
- margin-top: 22rpx;
- border-radius: 23rpx 0 0 23rpx;
- font-size: 25rpx;
- padding-left: 10rpx;
- line-height: 40rpx;
- color: #529B2E;
- }
- .jie_tags2 {
- color: #B88230;
- background-color: #FAECD8;
- }
- .jie_contend {
- margin-left: 15rpx;
- margin-top: 15rpx;
- float: left;
- font-size: 31rpx;
- line-height: 42rpx;
- }
- .jie_contend_text {
- margin-bottom: 10rpx;
- }
- .jie_contend_text1 {
- color: #606266;
- }
- .jie_contend_text2 {
- color: #000;
- }
- .jie_card_ztai {
- width: 134rpx;
- height: 134rpx;
- background-color: #F89898;
- border-radius: 50%;
- line-height: 134rpx;
- float: right;
- color: #fff;
- font-size: 32rpx;
- text-align: center;
- margin-top: 25rpx;
- margin-right: 40rpx;
- }
- .jie_card_ztai2 {
- background-color: #A0CFFF;
- }
- </style>
|