| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324 |
- <template>
- <common-wrapper :config="configData">
- <view class="signIn" :style="[signStyle]">
- <view
- v-if="dataConfig.styleConfig.tabVal"
- class="text-wrap acea-row row-middle"
- >
- <image
- src="@/static/images/sign-icon-04.png"
- mode="widthFix"
- class="image"
- ></image>
- <view class="text">
- <view class="name-wrap acea-row row-middle">
- <view class="name">{{ $t(`签到立即获取`) }}</view>
- <view class="num acea-row row-middle" :style="[numStyle]">
- <view
- class="inner acea-row row-middle"
- :class="{ opacity: !dataConfig.toneConfig.tabVal }"
- >
- <image
- src="@/static/images/sign-icon-01.png"
- mode="widthFix"
- class="icon"
- ></image>
- +{{ sign_give_point }}
- </view>
- </view>
- </view>
- <view
- >{{ $t(`连续签到`) }} {{ continuousSignDays || 0
- }}{{ $t(`天`) }}</view
- >
- </view>
- <view class="button" :style="[buttonStyle]" @click="goUserSgin">{{
- $t(`立即签到`)
- }}</view>
- </view>
- <view v-else class="week-wrap acea-row row-middle">
- <view class="week acea-row">
- <view
- v-for="(item, index) in signList"
- :key="index"
- class="item acea-row row-column row-center-wrapper"
- >
- <image
- v-if="item.is_sign"
- src="@/static/images/sign-icon-03.png"
- mode="widthFix"
- class="image"
- ></image>
- <image
- v-else-if="item.type == 1"
- src="@/static/images/sign-icon-01.png"
- mode="widthFix"
- class="image"
- ></image>
- <image
- v-else-if="item.type == 2"
- src="@/static/images/sign-icon-02.png"
- mode="widthFix"
- class="image"
- ></image>
- <view>{{ $t(`周`) }}{{ index | weekFormat }}</view>
- </view>
- </view>
- <view class="button" :style="[buttonStyle]" @click="goUserSgin">{{
- $t(`签到`)
- }}</view>
- </view>
- </view>
- </common-wrapper>
- </template>
- <script>
- import commonWrapper from "./commonWrapper.vue";
- import { getSign } from "@/api/api.js";
- export default {
- components: { commonWrapper },
- props: {
- dataConfig: {
- type: Object,
- default: () => {},
- },
- isSortType: {
- type: String | Number,
- default: 0,
- },
- },
- filters: {
- weekFormat: function (value) {
- return ["一", "二", "三", "四", "五", "六", "日"][value];
- },
- },
- data() {
- return {
- today: 0,
- signList: [],
- sign_give_point: 0,
- continuousSignDays: 0,
- nextContinuousSignRewardList: {},
- };
- },
- computed: {
- configData() {
- return {
- ...this.dataConfig,
- paddingConfig: this.dataConfig.paddingConfig || {
- isAll: false,
- valList: [
- {
- val: this.dataConfig.topConfig
- ? this.dataConfig.topConfig.val
- : 0,
- },
- {
- val: this.dataConfig.prConfig ? this.dataConfig.prConfig.val : 0,
- },
- {
- val: this.dataConfig.bottomConfig
- ? this.dataConfig.bottomConfig.val
- : 0,
- },
- {
- val: this.dataConfig.prConfig ? this.dataConfig.prConfig.val : 0,
- },
- ],
- },
- marginConfig: this.dataConfig.marginConfig || {
- isAll: false,
- valList: [
- {
- val: this.dataConfig.mbConfig ? this.dataConfig.mbConfig.val : 0,
- },
- {
- val: 0,
- },
- {
- val: 0,
- },
- {
- val: 0,
- },
- ],
- },
- };
- },
- buttonStyle() {
- let styleObject = {};
- if (this.dataConfig.toneConfig.tabVal) {
- styleObject[
- "background"
- ] = `linear-gradient(90deg, ${this.dataConfig.bntBgColor.color[0].item} 0%, ${this.dataConfig.bntBgColor.color[1].item} 100%)`;
- styleObject["color"] = this.dataConfig.bntTxtColor.color[0].item;
- }
- return styleObject;
- },
- signStyle() {
- let borderRadius = `${this.dataConfig.fillet.val * 2}rpx`;
- if (this.dataConfig.fillet.type) {
- borderRadius = `${this.dataConfig.fillet.valList[0].val * 2}rpx ${
- this.dataConfig.fillet.valList[1].val * 2
- }rpx ${this.dataConfig.fillet.valList[3].val * 2}rpx ${
- this.dataConfig.fillet.valList[2].val * 2
- }rpx`;
- }
- return {
- "border-radius": borderRadius,
- };
- },
- // signWrapStyle() {
- // return {
- // padding: `${this.dataConfig.topConfig.val * 2}rpx ${this.dataConfig.prConfig.val * 2}rpx ${this.dataConfig.bottomConfig.val * 2}rpx`,
- // 'margin-top': `${this.dataConfig.mbConfig.val * 2}rpx`,
- // background: this.dataConfig.bottomBgColor.color[0].item
- // };
- // },
- numStyle() {
- let styleObject = {};
- if (this.dataConfig.toneConfig.tabVal) {
- styleObject["background"] = this.dataConfig.labelBgColor.color[0].item;
- styleObject["color"] = this.dataConfig.labelTxtColor.color[0].item;
- }
- return styleObject;
- },
- },
- mounted() {
- const t = new Date();
- const d = t.getDay();
- this.today = d;
- this.getSign();
- },
- methods: {
- goUserSgin() {
- uni.navigateTo({
- url: "/pages/users/user_sgin/index",
- });
- },
- getSign() {
- getSign().then((res) => {
- this.continuousSignDays = res.data.continuousSignDays;
- this.sign_give_point = res.data.signGivePoint;
- this.signList = res.data.signList[0];
- });
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- .signIn {
- // padding: 24rpx;
- // border-radius: 0rpx 0rpx 16rpx 16rpx;
- // background: #ffffff;
- .week-wrap {
- height: 156rpx;
- // border-radius: 16rpx;
- // background: linear-gradient(to right, #ffe8f5, #f1fbfd);
- .week {
- flex: 1;
- font-weight: 500;
- font-size: 22rpx;
- line-height: 30rpx;
- color: #999999;
- .item {
- flex: 1;
- }
- .image {
- width: 48rpx;
- margin-bottom: 16rpx;
- }
- }
- .button {
- width: 88rpx;
- height: 48rpx;
- border-radius: 24rpx;
- margin: 0 20rpx;
- background: linear-gradient(
- 90deg,
- var(--view-theme) 0%,
- var(--view-gradient) 100%
- );
- text-align: center;
- font-size: 24rpx;
- line-height: 48rpx;
- color: #ffffff;
- }
- }
- .text-wrap {
- height: 140rpx;
- border-radius: 16rpx;
- background: #ffffff;
- .image {
- width: 88rpx;
- height: 88rpx;
- margin-left: 20rpx;
- }
- .text {
- flex: 1;
- padding: 0 20rpx;
- font-size: 24rpx;
- color: #999999;
- }
- .name-wrap {
- margin-bottom: 14rpx;
- }
- .name {
- font-weight: 500;
- font-size: 30rpx;
- color: #282828;
- }
- .num {
- border-radius: 16rpx;
- margin-left: 4rpx;
- background: var(--view-theme);
- font-size: 20rpx;
- line-height: 32rpx;
- color: var(--view-theme);
- .inner {
- height: 32rpx;
- padding: 0 6rpx 0 8rpx;
- border-radius: 16rpx;
- }
- .opacity {
- background: rgba(255, 255, 255, 0.9);
- }
- }
- .icon {
- width: 24rpx;
- height: 24rpx;
- }
- .button {
- width: 140rpx;
- height: 52rpx;
- border-radius: 26rpx;
- margin: 0 20rpx;
- background: linear-gradient(
- 90deg,
- var(--view-theme) 0%,
- var(--view-gradient) 100%
- );
- text-align: center;
- font-size: 24rpx;
- line-height: 52rpx;
- color: #ffffff;
- }
- }
- }
- </style>
|