123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420 |
- <template>
- <view class="container">
- <view class="banner">
- <image :src="fetch.config.home_top" mode="" class="bg"></image>
- <view class="intro" v-if="fetch.user.id <= 0">
- <view class="greet">您好,{{fetch.user.username}}</view>
- <view class="note">{{fetch.config.info}}</view>
- </view>
- </view>
- <view class="content">
- <view class="entrance" v-if="fetch.user.id > 0">
- <view class="item" @tap="user">
- <image :src="fetch.user.avatar" class="icon"></image>
- <view class="title">{{fetch.user.username}}</view>
- </view>
- <view class="item">
- <text class="title">{{fetch.score.name}}</text>
- <text class="value">{{fetch.score.score}}</text>
- </view>
- </view>
- <view class="entrance" v-if="fetch.user.id <= 0">
- <view class="item" @tap="login">
- <view class="title">快速登录</view>
- </view>
- </view>
- <view class="info" style="display: none;">
- <view class="integral_section">
- <view class="top">
- <text class="title">{{fetch.score.name}}</text>
- <text class="value">{{fetch.score.score}}</text>
- </view>
- <view class="bottom" v-if="fetch.score.info">
- {{fetch.score.info}}
- <view class="iconfont iconarrow-right"></view>
- </view>
- </view>
- <view class="qrcode_section" @tap="invite">
- <image src="/static/images/index/qrcode.png"></image>
- <text>身份证明</text>
- </view>
- </view>
- <view class="navigators" style="display: none;">
- <view class="left">
- <view class="grid flex-column just-content-center">
- <view class="d-flex align-items-center">
- <image src="/static/images/index/csc.png" class="mark-img"></image>
- <view class="font-size-sm text-color-base">小记商城</view>
- </view>
- <view class="text-color-assist" style="margin-left: 40rpx; font-size: 20rpx;">精美食品饰品,合起来买,更优惠~</view>
- </view>
- <view class="grid justify-content-end align-items-end">
- <image src="/static/images/index/yzclh.png" class="yzclh-img" mode="heightFix"></image>
- </view>
- </view>
- <view class="right">
- <view class="tea-activity" @tap="invite">
- <image src="/static/images/index/mcsb.png" class="mark-img"></image>
- <view>小记互助</view>
- <view class="right-img">
- <image src="/static/images/index/mcsb_bg.png" mode="widthFix"></image>
- </view>
- </view>
- <view class="member-gifts" @tap="packages">
- <image src="/static/images/index/hyjb.png" class="mark-img"></image>
- <view>小记联盟</view>
- <view class="right-img">
- <image src="/static/images/index/hyjb_bg.png" mode="widthFix"></image>
- </view>
- </view>
- </view>
- </view>
- <view class="member-news" v-if="fetch.xuanchuan.length > 0">
- <view class="header">
- <view class="title">小记宣传栏</view>
- <view class="iconfont iconRightbutton" style="display: none;"></view>
- </view>
- <view class="list">
- <swiper class="item" autoplay :interval="3000" indicator-dots>
- <swiper-item v-for="(v, k) in fetch.xuanchuan" :key="k" @click="xuanchuan(v.link)">
- <view class="item">
- <image :src="v.pic"></image>
- <view class="title">{{v.name}}</view>
- </view>
- </swiper-item>
- </swiper>
-
- </view>
- </view>
- <dever-share ref="share" :data="fetch.share" v-if="fetch.share"></dever-share>
- </view>
- </view>
- </template>
- <script>
- import deverShare from '@/lib/dever/components/share.vue';
- export default {
- data() {
- return {
- fetch : {
- user : {},
- config : {
- home_top : '',
- },
- score : {},
- xuanchuan : [],
- share : false,
- },
- }
- },
- components:{
- deverShare
- },
- onShow() {
- this.getData();
- },
- // 重新加载
- onPullDownRefresh: function() {
- this.getData();
- },
- methods: {
- getData : function() {
- this.Dever.get(this, 'app/collection/?l=api.home', {id:-1});
- },
- view : function(id) {
- this.Dever.location('dream/index?id=' + id);
- },
-
- xuanchuan : function(link) {
- this.Dever.location(link);
- },
-
- login : function() {
- this.Dever.location('user/login');
- },
-
- jiyi : function() {
- this.Dever.alert('敬请期待');
- },
-
- user : function() {
- this.Dever.location('user/index');
- },
-
- invite : function() {
- this.Dever.alert('敬请期待');
- },
- }
- }
- </script>
- <style lang="scss" scoped>
- /* #ifdef H5 */
- page {
- height: auto;
- min-height: 100%;
- }
- /* #endif */
- uni-page-body {
- background-color:#F1F8FA;
- }
- .banner {
- position: relative;
- width: 100%;
- height: 600rpx;
-
- .bg {
- width: 100%;
- height: 600rpx;
- }
-
- .intro {
- position: absolute;
- top: calc(50rpx + var(--status-bar-height));
- left: 40rpx;
- color: #FFFFFF;
- display: flex;
- flex-direction: column;
-
- .greet {
- font-size: $font-size-lg;
- margin-bottom: 10rpx;
- }
-
- .note {
- font-size: $font-size-sm;
- }
- }
- }
- .content {
- padding: 0 30rpx;
- }
- .entrance {
- position: relative;
- margin-top: -80rpx;
- margin-bottom: 30rpx;
- border-radius: 10rpx;
- background-color: #ffffff;
- box-shadow: $box-shadow;
- padding: 30rpx 0;
- display: flex;
- align-items: center;
- justify-content: center;
-
- .item {
- flex: 1;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- position: relative;
-
- &:nth-child(1):after {
- content: '';
- position: absolute;
- width: 1rpx;
- background-color: #ddd;
- right: 0;
- height: 100%;
- transform: scaleX(0.5) scaleY(0.8);
- }
-
- .icon {
- width: 84rpx;
- height: 84rpx;
- margin: 20rpx;
- }
-
- .title {
- font-size: 30rpx;
- color: $text-color-base;
- font-weight: 600;
- }
- }
- }
- .info {
- position: relative;
- margin-bottom: 30rpx;
- border-radius: 10rpx;
- background-color: #ffffff;
- box-shadow: $box-shadow;
- padding: 30rpx;
- display: flex;
- align-items: center;
- justify-content: center;
-
- .integral_section {
- flex: 1;
- display: flex;
- flex-direction: column;
- justify-content: center;
-
- .top {
- display: flex;
- align-items: center;
-
- .title {
- color: $text-color-base;
- font-size: $font-size-base;
- margin-right: 10rpx;
- }
- .value {
- font-size: 44rpx;
- font-weight: bold;
- }
- }
-
- .bottom {
- font-size: $font-size-sm;
- color: $text-color-assist;
- display: flex;
- align-items: center;
- }
- }
-
- .qrcode_section {
- color: $color-primary;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- font-size: $font-size-sm;
-
- image {
- width: 40rpx;
- height: 40rpx;
- margin-bottom: 10rpx;
- }
- }
- }
- .navigators {
- width: 100%;
- margin-bottom: 20rpx;
- border-radius: 10rpx;
- background-color: #ffffff;
- box-shadow: $box-shadow;
- padding: 20rpx;
- display: flex;
- align-items: stretch;
-
- .left {
- width: 340rpx;
- margin-right: 20rpx;
- display: flex;
- padding: 0 20rpx;
- flex-direction: column;
- font-size: $font-size-sm;
- color: $text-color-base;
- background-color: #F2F2E6;
-
- .grid {
- height: 50%;
- display: flex;
- }
- }
-
- .right {
- width: 290rpx;
- display: flex;
- flex-direction: column;
-
- .tea-activity, .member-gifts {
- width: 100%;
- display: flex;
- padding: 20rpx;
- font-size: $font-size-sm;
- color: $text-color-base;
- align-items: center;
- position: relative;
- }
-
- .tea-activity {
- background-color: #FDF3F2;
- margin-bottom: 20rpx;
- }
-
- .member-gifts {
- background-color: #FCF6D4;
- }
-
- .right-img {
- flex: 1;
- position: relative;
- margin-left: 20rpx;
- margin-right: -20rpx;
- margin-bottom: -20rpx;
- display: flex;
- align-items: flex-end;
-
- image {
- width: 100%;
- }
- }
- }
-
- .mark-img {
- width: 30rpx;
- height: 30rpx;
- margin-right: 10rpx;
- }
-
- .yzclh-img {
- height: 122.96rpx;
- width: 214.86rpx;
- }
- }
- .member-news {
- width: 100%;
- margin-bottom: 30rpx;
- .header {
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 20rpx 0;
-
- .title {
- font-size: $font-size-lg;
- font-weight: bold;
- }
-
- .iconfont {
- font-size: 52rpx;
- color: $text-color-assist;
- }
- }
-
- .list {
- width: 100%;
- display: flex;
- flex-direction: column;
-
- .item {
- width: 100%;
- height: 380rpx;
- position: relative;
-
- image {
- width: 100%;
- height: 100%;
- border-radius: 8rpx;
- }
-
- .title {
- position: relative;
- font-size: 32rpx;
- font-weight: 500;
- width: 100%;
- top: -70rpx;
- left: 16rpx;
- color: #ffffff;
- }
- }
- }
- }
- </style>
|