123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- <route lang="json5" type="page">
- {
- layout: 'default',
- style: {
- navigationBarTitleText: 'Mission Center',
- navigationBarBackgroundColor: '#fff',
- },
- }
- </route>
- <script lang="ts" setup>
- import { ref } from 'vue'
- import { todayDetail } from '@/api/mine'
- import { toPage } from '@/utils/page'
- defineOptions({
- name: 'MissionCenter', // 任务中心
- })
- const dailyMission = [
- {
- name: 'Invite Friends Earn Cash',
- description: 'Unlimited rewards',
- icon: '/static/icons/invite-friends.png',
- url: '/pages/referEarn/referEarn',
- },
- {
- name: 'Open Group Buy',
- description: 'Win group opening rewards',
- icon: '/static/icons/open-group-buy.png',
- url: '/pages/index/index',
- },
- {
- name: 'Join Group Buy',
- description: 'Win group opening rewards',
- icon: '/static/icons/join-group-buy.png',
- url: '/pages/index/index',
- },
- ]
- // 当前签到天数
- const currentDay = ref(3)
- // 今日是否已签到
- const hasSignedToday = ref(false)
- // 签到方法
- function signIn() {
- if (hasSignedToday.value)
- return
- hasSignedToday.value = true
- // 如果是新的一天,增加签到天数
- if (currentDay.value < 7) {
- currentDay.value++
- }
- // 这里可以添加签到请求逻辑
- }
- async function getSignList() {
- const res = await todayDetail()
- console.log(res)
- }
- onLoad(() => {
- getSignList()
- })
- </script>
- <template>
- <view class="px-24rpx py-20rpx">
- <view class="mb-34rpx rounded-16rpx bg-white p-24rpx">
- <view class="mb-40rpx flex items-center before:h-45rpx before:w-8rpx before:rounded-4rpx before:bg-#FF3778 before:content-empty">
- <text class="ml-10rpx text-32rpx">
- Continuous sign in to receive rewards
- </text>
- </view>
- <!-- 七天签到日历 -->
- <view class="flex items-center justify-between">
- <view v-for="(day, index) in 7" :key="index" class="flex flex-col items-center">
- <view
- class="h-70rpx w-70rpx flex items-center justify-center rounded-full" :class="[
- index < currentDay ? 'bg-#FF3778/30' : 'bg-gray-100',
- ]"
- >
- <text class="text-24rpx" :class="[index < currentDay ? 'text-[var(--wot-color-theme)]' : 'text-#000/15']">
- ৳5
- </text>
- </view>
- <view class="mt-8rpx text-20rpx text-gray-500">
- {{ index + 1 }}D
- </view>
- </view>
- </view>
- <!-- 签到按钮 -->
- <view class="mt-30rpx flex justify-center">
- <wd-button
- size="small"
- :type="hasSignedToday ? 'info' : 'primary'"
- :disabled="hasSignedToday"
- @click="signIn"
- >
- Check-in
- </wd-button>
- </view>
- </view>
- <view class="rounded-16rpx bg-white p-24rpx">
- <view class="mb-20rpx flex items-center before:h-45rpx before:w-8rpx before:rounded-4rpx before:bg-#FF3778 before:content-empty">
- <text class="ml-10rpx text-32rpx">
- Daily Mission
- </text>
- </view>
- <view
- v-for="(item, index) in dailyMission"
- :key="index"
- class="flex items-center justify-between py-30rpx"
- :class="{ 'border-b-1 border-b-solid border-b-#E1E1E1': index !== dailyMission.length - 1 }"
- >
- <view class="flex items-center">
- <image :src="item.icon" class="mr-16rpx h-100rpx w-100rpx" />
- <view>
- <view class="text-28rpx font-bold">
- {{ item.name }}
- </view>
- <view class="text-24rpx text-#6E6E6E">
- {{ item.description }}
- </view>
- </view>
- </view>
- <wd-button size="small" @click="toPage(item.url)">
- Start Now
- </wd-button>
- </view>
- </view>
- </view>
- </template>
- <style lang="scss" scoped>
- //
- </style>
|