calendar.vue 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430
  1. <template>
  2. <view class="content">
  3. <u-navbar title="签到日历" :bgColor="bgColor" safeAreaInsetTop autoBack height="44px"></u-navbar>
  4. <image src="static/jifen-bg.png" mode="aspectFill" class="top_bg"></image>
  5. <view class="top vflex acenter jcenter">
  6. <text class="text1">已连续签到{{succession_days}}天</text>
  7. <jcalendar :dataSource="datalist" @dateChange="changedate"></jcalendar>
  8. </view>
  9. <view class="content-bg">
  10. <view class="box">
  11. <view class="title">签到领福利</view>
  12. <view class="list-item hflex acenter jbetween" v-for="(item,index) in list" :key="index">
  13. <view class="item-left hflex acenter">
  14. <view class="images">
  15. <image :src="item.prize_image" mode="aspectFill" v-if="item.prize_type != 'integral'"></image>
  16. <image src="@/static/images/jifen.png" mode="aspectFill" v-if="item.prize_type == 'integral'"></image>
  17. <!-- <image src="@/static/images/yitijiao.png" mode="aspectFill" class="images-icon" v-if="item.is_receive == 1"></image> -->
  18. <image src="@/static/images/yilingqu.png" mode="aspectFill" class="images-icon" v-if="item.is_receive == 1"></image>
  19. <image src="@/static/images/dailingqu.png" mode="aspectFill" class="images-icon" v-if="item.can_receive == 1 && item.is_receive == 0"></image>
  20. </view>
  21. <view class="img-right vflex">
  22. <text class="text2">当前连续签到{{item.days}}天</text>
  23. <text class="text3">{{item.prize_name}}</text>
  24. </view>
  25. </view>
  26. <view class="item-right">
  27. <view class="text4" v-if="item.can_receive == 0">未达成</view>
  28. <view v-if="item.can_receive != 0 && item.is_receive == 0" class="btn1" style="background: #00B0B0;color: #FFF"
  29. @click="toreceive(item)">领取奖励</view>
  30. <view v-if="item.can_receive != 0 && item.is_receive != 0" class="btn2">已领取</view>
  31. </view>
  32. </view>
  33. </view>
  34. </view>
  35. <u-popup :show="show_address" @close="toclose" mode="bottom" :round="13">
  36. <addressBox @close="toclose" @select="selectAddress"></addressBox>
  37. </u-popup>
  38. <u-popup :show="show_submit" @close="toclose" mode="center" :round="10">
  39. <view class="popu1 vflex acenter">
  40. <image src="static/success.png" mode="aspectFill"></image>
  41. <view class="success">领取成功</view>
  42. <view class="success-text">请前往添加客服微信</view>
  43. <view class="hflex acenter btns">
  44. <view class="btn1" @click="toclose">稍后添加</view>
  45. <view class="btn2" @click="show_wx = true">添加客服</view>
  46. </view>
  47. </view>
  48. </u-popup>
  49. <u-popup :show="show_wx" @close="toclose" mode="center" :round="10">
  50. <kefu-wx :wxcode="wxcode" @submit="toclose"></kefu-wx>
  51. </u-popup>
  52. </view>
  53. </template>
  54. <script>
  55. import Jcalendar from '@/components/j-calendar/j-calendar.vue'
  56. import addressBox from './components/addressbox.vue'
  57. import kefuWx from './components/kefu-wx.vue'
  58. import $api from '@/static/js/api.js'
  59. export default {
  60. components: {
  61. Jcalendar,
  62. addressBox,
  63. kefuWx
  64. },
  65. data() {
  66. return {
  67. user: {},
  68. list: [],
  69. datalist: [],
  70. date: '',
  71. bgColor: 'rgba(0, 0, 0, 0)',
  72. succession_days: '',
  73. data: {},
  74. show_address: false,
  75. show_wx: false,
  76. show_submit: false,
  77. wxcode: '',
  78. address_id: '',
  79. }
  80. },
  81. onLoad() {
  82. this.getuser()
  83. this.getlist()
  84. var year = parseInt(new Date().getFullYear())
  85. var month = parseInt(new Date().getMonth() + 1)
  86. if (month < 10) {
  87. month = '0' + month
  88. }
  89. var date = year + '-' + month
  90. this.getdate(date)
  91. },
  92. onShow() {
  93. },
  94. onPageScroll(e) {
  95. console.log(e);
  96. if (e.scrollTop > 0) {
  97. this.bgColor = 'rgba(255,255,255)'
  98. } else {
  99. this.bgColor = 'rgba(0, 0, 0, 0)'
  100. }
  101. },
  102. onPullDownRefresh() {
  103. },
  104. onReachBottom() {
  105. },
  106. methods: {
  107. getcode() {
  108. var that = this
  109. $api.req({
  110. url: 'config',
  111. data: {
  112. module: 'basic'
  113. }
  114. }, function(res) {
  115. that.wxcode = res.data.customer_service_qrcode
  116. })
  117. },
  118. toadd(item) {
  119. if (item.prize_type == 'goods') {
  120. this.show_submit = true
  121. this.getcode()
  122. } else {
  123. return
  124. }
  125. },
  126. selectAddress(e) {
  127. this.address_id = e
  128. this.receive(this.data.id)
  129. this.toclose()
  130. },
  131. toclose() {
  132. this.show_address = false
  133. this.show_submit = false
  134. this.show_wx = false
  135. },
  136. receive(id) {
  137. var that = this
  138. $api.req({
  139. url: 'sign/prize/' + id + '/receive',
  140. method: 'post',
  141. data: {
  142. address_id: this.address_id
  143. }
  144. }, function(res) {
  145. $api.info(res.msg)
  146. setTimeout(() => {
  147. that.getlist()
  148. })
  149. })
  150. },
  151. toreceive(item) {
  152. var that = this
  153. if(item.prize_type == 'goods') {
  154. this.data = item
  155. this.show_address = true
  156. } else {
  157. this.receive(item.id)
  158. }
  159. },
  160. changedate(e) {
  161. this.getdate(e)
  162. },
  163. getdate(date) {
  164. var _this = this
  165. $api.req({
  166. url: 'sign',
  167. method: 'GET',
  168. data: {
  169. date: date
  170. }
  171. }, function(res) {
  172. if (res.code == 10000) {
  173. _this.datalist = res.data.days
  174. _this.succession_days = res.data.succession_days
  175. }
  176. })
  177. },
  178. getlist() {
  179. var _this = this
  180. $api.req({
  181. url: 'sign/prize',
  182. method: 'GET',
  183. data: {
  184. page: 1,
  185. is_page: 0
  186. }
  187. }, function(res) {
  188. if (res.code == 10000) {
  189. _this.list = res.data
  190. }
  191. })
  192. },
  193. getuser() {
  194. var _this = this
  195. $api.req({
  196. url: 'user/info',
  197. methos: 'GET'
  198. }, function(res) {
  199. if (res.code == 10000) {
  200. _this.user = res.data
  201. }
  202. })
  203. },
  204. }
  205. }
  206. </script>
  207. <style lang="scss">
  208. .content::v-deep {
  209. .u-navbar--fixed {
  210. z-index: 999;
  211. }
  212. .popu1 {
  213. width: 510rpx;
  214. padding: 46rpx 0;
  215. .top {
  216. width: 100%;
  217. .top-title {
  218. font-size: 32rpx;
  219. font-family: PingFangSC, PingFang SC;
  220. font-weight: 600;
  221. color: #000000;
  222. text-align: center;
  223. padding-left: 100rpx;
  224. }
  225. image {
  226. width: 36rpx;
  227. height: 36rpx;
  228. }
  229. }
  230. .center {
  231. image {
  232. width: 310rpx;
  233. height: 310rpx;
  234. }
  235. text {
  236. font-size: 22rpx;
  237. font-family: PingFangSC, PingFang SC;
  238. font-weight: 400;
  239. color: rgba(0, 0, 0, .42);
  240. }
  241. }
  242. image {
  243. width: 78rpx;
  244. height: 78rpx;
  245. margin: 12rpx 36rpx;
  246. }
  247. .success {
  248. font-size: 30rpx;
  249. font-family: PingFangSC, PingFang SC;
  250. font-weight: 400;
  251. color: #000000;
  252. }
  253. .success-text {
  254. font-size: 24rpx;
  255. font-family: PingFangSC, PingFang SC;
  256. font-weight: 400;
  257. color: rgba(0, 0, 0, .6);
  258. padding: 8rpx 0 42rpx;
  259. }
  260. .btns {
  261. .btn1 {
  262. width: 204rpx;
  263. height: 72rpx;
  264. background: #E7E7E7;
  265. border-radius: 40rpx;
  266. font-size: 28rpx;
  267. font-family: PingFangSC, PingFang SC;
  268. font-weight: 400;
  269. color: #666666;
  270. line-height: 72rpx;
  271. text-align: center;
  272. }
  273. .btn2 {
  274. width: 204rpx;
  275. height: 72rpx;
  276. background: #00B0B0;
  277. border-radius: 40rpx;
  278. font-size: 28rpx;
  279. font-family: PingFangSC, PingFang SC;
  280. font-weight: 400;
  281. color: #FFFFFF;
  282. line-height: 72rpx;
  283. text-align: center;
  284. margin: 0 0 0 26rpx;
  285. }
  286. }
  287. }
  288. // background: unset;
  289. .content-bg {
  290. // background: #f5f5f5;
  291. // min-height: 80vh;
  292. }
  293. .box {
  294. margin: 20rpx auto;
  295. width: 694rpx;
  296. background: #FFFFFF;
  297. border-radius: 16rpx;
  298. box-sizing: border-box;
  299. padding: 28rpx;
  300. .title {
  301. font-size: 32rpx;
  302. font-family: PingFangSC, PingFang SC;
  303. font-weight: 600;
  304. color: #333333;
  305. }
  306. .list-item {
  307. margin-top: 40rpx;
  308. .item-right {
  309. .text4 {
  310. width: 148rpx;
  311. font-size: 28rpx;
  312. font-family: PingFangSC, PingFang SC;
  313. font-weight: 400;
  314. color: #999999;
  315. text-align: center;
  316. }
  317. .btn1 {
  318. width: 148rpx;
  319. height: 56rpx;
  320. background: rgba(0, 176, 176, .1);
  321. border-radius: 28rpx;
  322. font-size: 24rpx;
  323. font-family: PingFangSC, PingFang SC;
  324. font-weight: 400;
  325. color: #00B0B0;
  326. line-height: 56rpx;
  327. text-align: center;
  328. }
  329. .btn1 {
  330. width: 128rpx;
  331. height: 56rpx;
  332. background: #D8D8D8;
  333. border-radius: 28rpx;
  334. font-size: 24rpx;
  335. font-family: PingFangSC, PingFang SC;
  336. font-weight: 400;
  337. color: #FFFFFF;
  338. line-height: 56rpx;
  339. text-align: center;
  340. }
  341. }
  342. .item-left {
  343. .images {
  344. position: relative;
  345. image {
  346. width: 100rpx;
  347. height: 100rpx;
  348. }
  349. .images-icon {
  350. position: absolute;
  351. top: 0;
  352. left: 0;
  353. width: 100rpx;
  354. height: 100rpx;
  355. background: rgba(0, 0, 0, .3);
  356. }
  357. }
  358. .img-right {
  359. padding-left: 20rpx;
  360. .text2 {
  361. font-size: 28rpx;
  362. font-family: SFPro, SFPro;
  363. font-weight: 500;
  364. color: #333333;
  365. }
  366. .text3 {
  367. font-size: 24rpx;
  368. font-family: PingFangSC, PingFang SC;
  369. font-weight: 400;
  370. color: #666666;
  371. padding-top: 12rpx;
  372. }
  373. }
  374. }
  375. }
  376. }
  377. .top_bg {
  378. position: absolute;
  379. width: 100%;
  380. top: 0;
  381. left: 0;
  382. // z-index: -1;
  383. }
  384. .top {
  385. width: 694rpx;
  386. margin: 108rpx auto 20rpx;
  387. .text1 {
  388. z-index: 99;
  389. font-size: 32rpx;
  390. font-family: PingFangSC, PingFang SC;
  391. font-weight: 500;
  392. color: #333333;
  393. padding: 40rpx 0;
  394. }
  395. }
  396. }
  397. </style>