index.vue 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <template>
  2. <view class="qiandao vflex acenter jcenter">
  3. <image src="/static/images/qiandao.png" mode="aspectFill"></image>
  4. <text>签到成功</text>
  5. <text>获得积分+ {{}}</text>
  6. <view class="btn">确定</view>
  7. </view>
  8. </template>
  9. <script>
  10. import $api from '@/static/js/api.js'
  11. export default {
  12. data() {
  13. return {
  14. }
  15. },
  16. onLoad() {
  17. },
  18. onShow() {
  19. },
  20. onPullDownRefresh() {
  21. },
  22. onReachBottom() {
  23. },
  24. methods: {
  25. }
  26. }
  27. </script>
  28. <style lang="scss">
  29. .qiandao {
  30. width: 550rpx;
  31. image {
  32. width: 270rpx;
  33. height: 260rpx;
  34. padding: 40rpx;
  35. }
  36. text {
  37. font-size: 28rpx;
  38. font-family: SFPro, SFPro;
  39. font-weight: 400;
  40. color: #222222;
  41. padding: 14rpx 0 0;
  42. }
  43. .btn {
  44. margin: 48rpx 0 60rpx;
  45. width: 250rpx;
  46. height: 80rpx;
  47. background: #00B0B0;
  48. border-radius: 8rpx;
  49. font-size: 32rpx;
  50. font-family: PingFangSC, PingFang SC;
  51. font-weight: 400;
  52. color: #FFFFFF;
  53. line-height: 80rpx;
  54. letter-spacing: 1px;
  55. text-align: center;
  56. }
  57. }
  58. </style>