sign.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582
  1. <!-- 页面 -->
  2. <template>
  3. <s-layout title="签到有礼">
  4. <view v-if="state.loading"></view>
  5. <view class="sign-wrap" v-else-if="state.data && !state.loading">
  6. <!-- 签到日历 -->
  7. <view class="content-box calendar">
  8. <view class="sign-everyday ss-flex ss-col-center ss-row-between ss-p-x-30">
  9. <text class="sign-everyday-title">签到日历</text>
  10. <view class="sign-num-box">
  11. 已连续签到
  12. <text class="sign-num">{{ state.continue_days }}</text>
  13. </view>
  14. </view>
  15. <!-- 切换年月 -->
  16. <view class="bar ss-flex ss-col-center ss-row-center">
  17. <view class="previous" @tap="handleCalendar(0)"><text class="cicon-back"></text></view>
  18. <view class="date ss-m-x-20">{{ state.cur_year || '--' }} 年 {{ state.cur_month || '--' }} 月</view>
  19. <view class="next" @tap="handleCalendar(1)"><text class="cicon-forward"></text></view>
  20. </view>
  21. <!-- 显示星期 -->
  22. <view class="week ss-flex">
  23. <view class="week-item ss-flex ss-row-center" v-for="(item, index) in state.weeks_ch" :key="index">
  24. {{ item.title }}
  25. </view>
  26. </view>
  27. <!-- 日历表 -->
  28. <view class="myDateTable">
  29. <view v-for="(item, j) in state.data.days" :key="j"
  30. class="dateCell ss-flex ss-row-center ss-col-center">
  31. <!-- 空格 -->
  32. <view class="ss-flex ss-row-center ss-col-center">
  33. <text :decode="true">&nbsp;&nbsp;</text>
  34. </view>
  35. <view>
  36. <!-- 已签到日期 -->
  37. <view v-if="item.isSign" class="is-sign ss-flex ss-row-center">
  38. <view class="is-sign-num">{{ item.day < 10 ? '0' + item.day : item.day }}</view>
  39. <image class="is-sign-image"
  40. :src="sheep.$url.static('/static/img/shop/app/correct.png')">
  41. </image>
  42. </view>
  43. <!-- 未签到日期 -->
  44. <!-- <view class="is-sign ss-flex ss-row-center" v-if="item.isReplenish == 1"
  45. @tap="onShowRetroactive(item.date)"> -->
  46. <view class="is-sign ss-flex ss-row-center" v-if="item.isReplenish == 1">
  47. <view class="cell-num">{{ item.day < 10 ? '0' + item.day : item.day }}</view>
  48. <text class="cicon-title"></text>
  49. </view>
  50. <view class="is-sign ss-flex ss-row-center" v-if="item.isReplenish == 0 && !item.isSign">
  51. <view class="cell-num">{{ item.day < 10 ? '0' + item.day : item.day }}</view>
  52. </view>
  53. </view>
  54. </view>
  55. <!-- 签到按钮 -->
  56. <view class="ss-flex ss-col-center ss-row-center sign-box ss-m-y-40">
  57. <button class="ss-reset-button sign-btn" v-if="state.isSign === 0" @tap="onSign">签到</button>
  58. <button class="ss-reset-button already-btn" v-if="state.isSign === 1" disabled>已签到</button>
  59. </view>
  60. </view>
  61. </view>
  62. <view class="bg-white ss-m-t-16 ss-p-t-30 ss-p-b-60 ss-p-x-40">
  63. <view class="activity-title ss-m-b-30">签到说明</view>
  64. <view class="activity-des">
  65. 1、每日签到固定 {{ state.data.rules.everyday }} 积分
  66. <text v-if="state.data.rules.is_inc == '1'">
  67. ,次日递增奖励 {{ state.data.rules.inc_num }} 积分,直到
  68. {{ state.data.rules.until_day }} 天之后不再增加
  69. </text>
  70. </view>
  71. <view class="activity-des" v-if="state.data.rules.discounts?.length > 0">
  72. 2、<text class="" v-for="i in state.data.rules.discounts" :key="i">
  73. 连续签到 {{ i.full }} 天,奖励 {{ i.value }} 积分;
  74. </text>
  75. </view>
  76. <view class="activity-des" v-if="state.data.rules.is_replenish == '1'">
  77. {{ state.data.rules.discounts?.length > 0 ? '3' : '2' }}、用户在
  78. {{ state.data.rules.replenish_limit }} 天内,可补签
  79. {{ state.data.rules.replenish_days }} 天,每次补签消耗
  80. {{ state.data.rules.replenish_num }}积分
  81. </view>
  82. </view>
  83. </view>
  84. <s-empty v-else-if="!state.data && !state.loading" icon="/static/data-empty.png" text="签到活动还未开始">
  85. </s-empty>
  86. <su-popup :show="state.showModel" type="center" round="10" :isMaskClick="false" showClose>
  87. <view class="model-box ss-flex-col">
  88. <view class="ss-m-t-56 ss-flex-col ss-col-center">
  89. <text class="cicon-check-round"></text>
  90. <!-- <view class="score-title">{{ state.signin.score }}积分</view>
  91. <view class="model-title ss-flex ss-col-center ss-m-t-22 ss-m-b-30">
  92. 已连续打卡{{ state.continue_days }}天
  93. </view> -->
  94. <view class="score-title">恭喜签到成功</view>
  95. <view class="model-title ss-flex ss-col-center ss-m-t-22 ss-m-b-30">
  96. 获得每日签到10积分
  97. </view>
  98. </view>
  99. <view class="model-bg ss-flex-col ss-col-center ss-row-right">
  100. <!-- <view class="title ss-m-b-64">签到成功</view> -->
  101. <view class="ss-m-b-40">
  102. <button class="ss-reset-button confirm-btn" >去领得更多福利</button>
  103. </view>
  104. </view>
  105. </view>
  106. </su-popup>
  107. <!--<su-popup :show="state.showRetroactive" type="center" round="10" :isMaskClick="false">
  108. <view class="model-box ss-flex-col">
  109. <view class="ss-m-t-56 ss-flex-col ss-col-center">
  110. <text class="cicon-check-round"></text>
  111. <view class="score-title">消耗{{ state.data?.rules.replenish_num }}积分</view>
  112. <view class="model-title ss-flex ss-col-center ss-m-t-22 ss-m-b-30">
  113. 已连续打卡{{ state.continue_days }}天
  114. </view>
  115. </view>
  116. <view class="model-bg ss-flex-col ss-col-center ss-row-right">
  117. <view class="title ss-m-b-64">确认补签</view>
  118. <view class="ss-m-b-40 ss-flex">
  119. <button class="ss-reset-button cancel-btn" @tap="state.showRetroactive = false">取消</button>
  120. <button class="ss-reset-button confirm-btn" @tap="onRetroactive">确认</button>
  121. </view>
  122. </view>
  123. </view>
  124. </su-popup>-->
  125. </s-layout>
  126. </template>
  127. <script setup>
  128. import sheep from '@/sheep';
  129. import {
  130. onLoad,
  131. onReady
  132. } from '@dcloudio/uni-app';
  133. import {
  134. computed,
  135. reactive
  136. } from 'vue';
  137. import SignInApi from '@/sheep/api/member/signin';
  138. const headerBg = sheep.$url.css('/static/img/shop/app/sign.png');
  139. const state = reactive({
  140. data: {
  141. days: [], //日历
  142. rules: {}, //规则
  143. },
  144. cur_year: 0, //当前选的年
  145. cur_month: 0, //当前选的月
  146. cur_day: 0, //当前选择的天
  147. weeks_ch: [{
  148. title: '日',
  149. value: '0',
  150. },
  151. {
  152. title: '一',
  153. value: '1',
  154. },
  155. {
  156. title: '二',
  157. value: '2',
  158. },
  159. {
  160. title: '三',
  161. value: '3',
  162. },
  163. {
  164. title: '四',
  165. value: '4',
  166. },
  167. {
  168. title: '五',
  169. value: '5',
  170. },
  171. {
  172. title: '六',
  173. value: '6',
  174. },
  175. ], //星期
  176. showModel: false, //签到弹框
  177. continue_days: 0, //连续签到天数
  178. signin: {}, // 签到
  179. showRetroactive: false, //补签弹框
  180. date: '', //补签选中日期
  181. isSign: 0, //今天是否签到
  182. loading: true,
  183. });
  184. async function onSign() {
  185. const {
  186. code,
  187. data
  188. } = await SignInApi.createSignInRecord();
  189. if (code === 0) {
  190. state.showModel = true;
  191. state.signin = data;
  192. // getData();
  193. }
  194. }
  195. function onShowRetroactive(e) {
  196. state.showRetroactive = true;
  197. state.date = e;
  198. }
  199. //签到确认刷新页面
  200. function onConfirm() {
  201. state.showModel = false;
  202. getData({
  203. month: formatDate(new Date()).substring(0, 7)
  204. });
  205. }
  206. //补签
  207. // async function onRetroactive() {
  208. // const {
  209. // error,
  210. // data
  211. // } = await sheep.$api.activity.replenish({
  212. // date: state.date,
  213. // });
  214. // if (error === 0) {
  215. // state.showRetroactive = false;
  216. // getData();
  217. // }
  218. // }
  219. function formatDate(t) {
  220. let date = new Date(t);
  221. let year = date.getFullYear();
  222. let month = String(date.getMonth() + 1).padStart(2, '0');
  223. let day = String(date.getDate()).padStart(2, '0');
  224. let dateString = `${year}-${month}-${day}`;
  225. return dateString
  226. }
  227. async function getData(mouth) {
  228. const {
  229. code,
  230. data
  231. } = await SignInApi.getOwnSignInMoon(mouth);
  232. if (code === 0) {
  233. // console.log(state.data)
  234. data.days.forEach((i, index) => {
  235. if (i.week == 'SUNDAY') {
  236. i.week = 0
  237. } else if (i.week == 'MONDAY') {
  238. i.week = 1
  239. } else if (i.week == 'TUESDAY') {
  240. i.week = 2
  241. } else if (i.week == 'WEDNESDAY') {
  242. i.week = 3
  243. } else if (i.week == 'THURSDAY') {
  244. i.week = 4
  245. } else if (i.week == 'FRIDAY') {
  246. i.week = 5
  247. } else if (i.week == 'SATURDAY') {
  248. i.week = 6
  249. }
  250. i.date = formatDate(i.date)
  251. })
  252. state.data = data;
  253. // console.log(state)
  254. } else {
  255. state.data = null;
  256. }
  257. state.loading = false;
  258. if (state.data) {
  259. state.data.days.forEach((i, index) => {
  260. if (index < i.week) {
  261. index++;
  262. var obj = {
  263. day: null,
  264. isSign: false,
  265. };
  266. state.data.days.unshift(obj);
  267. }
  268. if (index == 1) {
  269. let arr = i.date.split('-');
  270. state.cur_year = arr[0];
  271. state.cur_month = arr[1];
  272. }
  273. });
  274. if (state.data.days[0].day == null) {
  275. state.data.days.forEach((i, index) => {
  276. // console.log(i.current)
  277. if (i.current == 'today') {
  278. // console.log(state.isSign)
  279. state.isSign = i.isSign;
  280. }
  281. });
  282. }
  283. state.continue_days = data.continueDays;
  284. }
  285. }
  286. onReady(() => {
  287. getData({
  288. month: formatDate(new Date()).substring(0, 7)
  289. });
  290. });
  291. // 切换控制年月,上一个月,下一个月
  292. const handleCalendar = (type) => {
  293. const cur_year = parseInt(state.cur_year);
  294. const cur_month = parseInt(state.cur_month);
  295. console.log(cur_year,cur_month)
  296. var newMonth;
  297. var newYear = cur_year;
  298. if (type === 0) {
  299. //上个月
  300. newMonth = cur_month - 1;
  301. if (newMonth < 1) {
  302. newYear = cur_year - 1;
  303. newMonth = 12;
  304. } else if (newMonth < 10) {
  305. newMonth = '0' + newMonth;
  306. }
  307. } else {
  308. newMonth = cur_month + 1;
  309. if (newMonth > 12) {
  310. newYear = cur_year + 1;
  311. newMonth = "01";
  312. } else if (newMonth < 10) {
  313. newMonth = '0' + newMonth;
  314. }
  315. }
  316. console.log(newYear + '-' + newMonth)
  317. getData({
  318. month: newYear + '-' + newMonth,
  319. });
  320. };
  321. </script>
  322. <style lang="scss" scoped>
  323. .header-box {
  324. border-top: 2rpx solid rgba(#dfdfdf, 0.5);
  325. }
  326. // 日历
  327. .calendar {
  328. background: #fff;
  329. .sign-everyday {
  330. height: 100rpx;
  331. background: rgba(255, 255, 255, 1);
  332. border: 2rpx solid rgba(223, 223, 223, 0.4);
  333. .sign-everyday-title {
  334. font-size: 32rpx;
  335. color: rgba(51, 51, 51, 1);
  336. font-weight: 500;
  337. }
  338. .sign-num-box {
  339. font-size: 26rpx;
  340. font-weight: 500;
  341. color: rgba(153, 153, 153, 1);
  342. .sign-num {
  343. font-size: 30rpx;
  344. font-weight: 600;
  345. color: #ff6000;
  346. padding: 0 10rpx;
  347. font-family: OPPOSANS;
  348. }
  349. }
  350. }
  351. // 年月日
  352. .bar {
  353. height: 100rpx;
  354. .date {
  355. font-size: 30rpx;
  356. font-family: OPPOSANS;
  357. font-weight: 500;
  358. color: #333333;
  359. line-height: normal;
  360. }
  361. }
  362. .cicon-back {
  363. margin-top: 6rpx;
  364. font-size: 30rpx;
  365. color: #c4c4c4;
  366. line-height: normal;
  367. }
  368. .cicon-forward {
  369. margin-top: 6rpx;
  370. font-size: 30rpx;
  371. color: #c4c4c4;
  372. line-height: normal;
  373. }
  374. // 星期
  375. .week {
  376. .week-item {
  377. font-size: 24rpx;
  378. font-weight: 500;
  379. color: rgba(153, 153, 153, 1);
  380. flex: 1;
  381. }
  382. }
  383. // 日历表
  384. .myDateTable {
  385. display: flex;
  386. flex-wrap: wrap;
  387. .dateCell {
  388. width: calc(750rpx / 7);
  389. height: 80rpx;
  390. font-size: 26rpx;
  391. font-weight: 400;
  392. color: rgba(51, 51, 51, 1);
  393. }
  394. }
  395. }
  396. .is-sign {
  397. width: 48rpx;
  398. height: 48rpx;
  399. position: relative;
  400. .is-sign-num {
  401. font-size: 24rpx;
  402. font-family: OPPOSANS;
  403. font-weight: 500;
  404. line-height: normal;
  405. }
  406. .is-sign-image {
  407. position: absolute;
  408. left: 0;
  409. top: 0;
  410. width: 48rpx;
  411. height: 48rpx;
  412. }
  413. }
  414. .cell-num {
  415. font-size: 24rpx;
  416. font-family: OPPOSANS;
  417. font-weight: 500;
  418. color: #333333;
  419. line-height: normal;
  420. }
  421. .cicon-title {
  422. position: absolute;
  423. right: -10rpx;
  424. top: -6rpx;
  425. font-size: 20rpx;
  426. color: red;
  427. }
  428. // 签到按钮
  429. .sign-box {
  430. height: 140rpx;
  431. width: 100%;
  432. .sign-btn {
  433. width: 710rpx;
  434. height: 80rpx;
  435. border-radius: 35rpx;
  436. font-size: 30rpx;
  437. font-weight: 500;
  438. box-shadow: 0 0.2em 0.5em rgba(#ff6000, 0.4);
  439. background: linear-gradient(90deg, #ff6000, #fe832a);
  440. color: #fff;
  441. }
  442. .already-btn {
  443. width: 710rpx;
  444. height: 80rpx;
  445. border-radius: 35rpx;
  446. font-size: 30rpx;
  447. font-weight: 500;
  448. }
  449. }
  450. .model-box {
  451. width: 520rpx;
  452. // height: 590rpx;
  453. background: linear-gradient(177deg, #ff6000 0%, #fe832a 100%);
  454. // background: linear-gradient(177deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  455. border-radius: 10rpx;
  456. .cicon-check-round {
  457. font-size: 70rpx;
  458. color: #fff;
  459. }
  460. .score-title {
  461. font-size: 34rpx;
  462. font-family: OPPOSANS;
  463. font-weight: 500;
  464. color: #fcff00;
  465. }
  466. .model-title {
  467. font-size: 28rpx;
  468. font-weight: 500;
  469. color: #ffffff;
  470. }
  471. .model-bg {
  472. width: 520rpx;
  473. height: 344rpx;
  474. background-size: 100% 100%;
  475. background-image: v-bind(headerBg);
  476. background-repeat: no-repeat;
  477. border-radius: 0 0 10rpx 10rpx;
  478. .title {
  479. font-size: 34rpx;
  480. font-weight: bold;
  481. // color: var(--ui-BG-Main);
  482. color: #ff6000;
  483. }
  484. .subtitle {
  485. font-size: 26rpx;
  486. font-weight: 500;
  487. color: #999999;
  488. }
  489. .cancel-btn {
  490. width: 220rpx;
  491. height: 70rpx;
  492. border: 2rpx solid #ff6000;
  493. border-radius: 35rpx;
  494. font-size: 28rpx;
  495. font-weight: 500;
  496. color: #ff6000;
  497. line-height: normal;
  498. margin-right: 10rpx;
  499. }
  500. .confirm-btn {
  501. width: 300rpx;
  502. height: 70rpx;
  503. background: linear-gradient(90deg, #ff6000, #fe832a);
  504. box-shadow: 0 0.2em 0.5em rgba(#ff6000, 0.4);
  505. border-radius: 35rpx;
  506. font-size: 28rpx;
  507. font-weight: 500;
  508. color: #ffffff;
  509. line-height: normal;
  510. }
  511. }
  512. }
  513. //签到说明
  514. .activity-title {
  515. font-size: 32rpx;
  516. font-weight: 500;
  517. color: #333333;
  518. line-height: normal;
  519. }
  520. .activity-des {
  521. font-size: 26rpx;
  522. font-weight: 500;
  523. color: #666666;
  524. line-height: 40rpx;
  525. }
  526. </style>