sign.vue 14 KB

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