| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243 |
- <template>
- <view>
- <view class="title-box">
- <view class="bg">
- <image src="/static/img/sign-bg.png">
- </view>
- <view class=" title-conetnt position-relative" @click="signTrue?'':integral()">
- <view class="title-img"><image src="/static/img/sign-btn.png" mode="aspectFit"></image></view>
- <view class="title-content-box">
- <view class="title-text">签到</view>
- <view class="title-day-text">
- 今日签到可得10购物积分
- <!-- <text class="title-day">签到</text> -->
- <!-- <text>天</text> -->
- </view>
- <!-- <view class="title-button" :class="{'signAction':signTrue}" @click="signTrue?'':integral()">{{signTrue?'已签到':'立即签到'}}</view> -->
- </view>
- </view>
- <!-- <view class="title-tip"><text>共获得{{sum_integral}}积分,总签到{{allSign}}天</text></view> -->
- </view>
- <view class="conenter">
- <view class="money"><text>{{sum_integral}}</text><br>获得金额
- </view>
- <view class="l"></view>
- <view class="day"><text>{{allSign}}</text><br>签到天数</view>
- </view>
- <view class="explain">
- 签到说明
- <image src="../../static/img/img74.png"></image>
- </view>
- <!-- <calendar class="sign-date-box" :checks="signList" checksClass="" :checkTextShow="true" checksIcon="/static/img/img07.png"></calendar> -->
- </view>
- </template>
- <script>
- import calendar from '../../components/ss-calendar/ss-calendar.vue';
- import { signList, integral,signUser } from '@/api/functionalUnit.js';
- export default {
- components: {
- calendar
- },
- data() {
- return {
- money: '', //保存当前月份
- year: '', //保存当前年份
- day: '', //保存当前日期
- signList: [] ,//签到日子列表
- actionDay:0,//连续签到天数
- allSign:0,//累计签到
- sum_integral:0,//累计获得积分
- signTrue:false,
- };
- },
- onLoad() {
- this.signUser();
- this.getData();
- this.loadList();
- },
- methods: {
- // 获取当前时间
- getData(current) {
- const date = current ? new Date(current) : new Date();
- this.year = date.getFullYear();//保存当前年份
- this.month = date.getMonth() + 1;//保存当前月份
- this.day = date.getDate();//保存当前日期
- },
- //获取签到用户信息
- signUser(){
- signUser({all:1}).then(({data}) => {
- this.actionDay = data.sign_num;//连续签到天数
- this.allSign = data.sum_sgin_day;//累计签到天数
- this.sum_integral = data.sum_integral;//累计总积分
- })
- },
- // 签到
- integral() {
- integral({})
- .then(e => {
- // 改为已签到
- this.signTrue = true;
- this.actionDay++;
- // 保存签到成功
- this.signList.push(this.day);
- uni.showToast({
- title: '签到成功',
- duration: 2000,
- position: 'top'
- });
- })
- .catch(e => {
- console.log(e);
- });
- },
- // 获取签到列表
- loadList() {
- let obj = this;
- let present = this.day; //保存当前天数用于后续计算
- let actionDay = 0; //用于计算活跃天数
- let arr = []; //保存返回数组;
- signList({
- page: 1,
- limit: 31
- }).then(e => {
- arr = e.data.map((e, ind) => {
- let time = e.add_time.split('-');
- let day = parseInt(time[2].replace(/^0/i, ''));
- let year = time[0];
- let month = +time[1];
- if (obj.year == year && obj.month == month) {
- return day;
- }
- });
- this.signList = arr;
- // 判断今天是否已经签到
- if(arr[0]==this.day){
- this.signTrue = true;
- }
- });
- }
- }
- };
- </script>
- <style lang="scss">
- page {
- background: $page-color-base;
- }
- .sign-date-box {
- margin: 25rpx;
- border-radius: 15rpx;
- margin-top: -70rpx;
- }
- .title-box {
- background-color: $base-color;
- padding-top: 120rpx;
- color: #ffffff;
- height: 590rpx;
- .bg {
- position: absolute;
- width: 100%;
- top: 0;
- image {
- width: 100%;
- height: 590rpx;
- }
-
- }
- .title-conetnt {
- height: 240rpx;
- margin: 0 auto;
- text-align: center;
- .title-img {
- position: absolute;
- top: 60rpx;
- left: 0;
- height: 100%;
- width: 100%;
- image {
- height: 100%;
- width: 100%;
- }
- }
- .title-content-box {
- position: absolute;
- width: 100%;
- text-align: center;
- .title-day-text {
- // margin: auto 0 ;
- // width: 150%;
- padding-top: 100rpx;
- // margin-right: 75%;
- // padding: -50rpx;
- font-size: $font-base + 2rpx;
- }
- .title-text {
- font-size: 50rpx;
- padding-top: 140rpx;
- }
- .title-button {
- background-color: #fe7e51;
- border-radius: 99rpx;
- width: 200rpx;
- height: 64rpx;
- margin: 0 auto;
- line-height: 64rpx;
- text-align: center;
- font-size: $font-base;
- &.signAction{
- background-color: $font-color-light;
- }
- }
- }
- }
- }
- .title-tip {
- color: #ffffff;
- font-size: $font-base - 2rpx;
- padding-top: 20rpx;
- text-align: center;
- margin-top: -40rpx;
- }
- .conenter {
- background-color: #fff;
- display: flex;
- padding: 60rpx 0;
- margin: 0 30rpx;
- border-radius: 10rpx;
- position: relative;
- top: -80rpx;
-
- .l {
- width: 2rpx;
- background-color: #EFEFEF;
- }
- .money,.day {
- width: 50%;
- text-align: center;
- color: #7e7e7e;
- font-family: PingFang-SC-Bold;
- text {
- font-size: 50rpx;
- font-weight: bold;
- }
- }
- }
- .explain {
- font-family: PingFang-SC-Bold;
- font-size: 30rpx;
- color: #333333;
- position: relative;
- top: -60rpx;
- background-color: #fff;
- padding: 30rpx;
- margin: 0 30rpx;
- border-radius: 10rpx;
- image {
- float: right;
- width: 14rpx;
- height: 30rpx;
- margin-top: 6rpx;
- }
- }
- </style>
|