123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <template>
- <view class="qiandao vflex acenter jcenter">
- <image src="/static/images/qiandao.png" mode="aspectFill"></image>
- <text>签到成功</text>
- <text>获得积分+ {{}}</text>
- <view class="btn">确定</view>
- </view>
- </template>
- <script>
- import $api from '@/static/js/api.js'
- export default {
- data() {
- return {
-
- }
- },
- onLoad() {
-
- },
- onShow() {
-
- },
- onPullDownRefresh() {
-
- },
- onReachBottom() {
-
- },
- methods: {
-
- }
- }
- </script>
- <style lang="scss">
- .qiandao {
- width: 550rpx;
- image {
- width: 270rpx;
- height: 260rpx;
- padding: 40rpx;
- }
- text {
- font-size: 28rpx;
- font-family: SFPro, SFPro;
- font-weight: 400;
- color: #222222;
- padding: 14rpx 0 0;
- }
- .btn {
- margin: 48rpx 0 60rpx;
- width: 250rpx;
- height: 80rpx;
- background: #00B0B0;
- border-radius: 8rpx;
- font-size: 32rpx;
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- color: #FFFFFF;
- line-height: 80rpx;
- letter-spacing: 1px;
- text-align: center;
- }
- }
- </style>
|