123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <template>
- <view class="regbox flexdc">
- <view class="sucbox flexdc flex1">
- <view class="flex1">
- <image :src="sucimg" class="titimg"></image>
- <view class="tit mb15">支付成功</view>
- <view class="txt">您的物业缴费已成功</view>
- <view class="txt">祝您生活愉快</view>
-
- </view>
- <!-- 地址 放学 课堂知识(动态) 成绩分析 聊天 -->
- <!-- 图片拖动 成功直接跳列表页-->
- <view class="txc home" @click="getLogin">返回登录</view>
- </view>
-
- </view>
- </template>
- <script>
- // import { getToken } from '@/utils/auth'
- export default {
- data(){
- return{
- sucimg:require("@/work/static/manage/success.png"),
- tokenflag:true,
- }
- },
- methods:{
- getLogin(){
- this.$tab.reLaunch(`/pages/login`)
- }
- },
- onLoad: function() {
- }
- }
- </script>
- <style>
- page{background: #F3F3F0;}
- </style>
- <style lang="scss" scoped>
- .regbox{padding: 20rpx 24rpx 28rpx;min-height: 100vh;box-sizing: border-box;
- view{text-align: center;}
- .sucbox{border-radius: 20rpx;padding-top: 208rpx;padding-bottom: 264rpx;
- background: #FFFFFF;
- }
- .titimg{width: 252rpx;height: 236rpx;margin: 0 auto 40rpx;}
- .tit{font-size: 26rpx;color: #272727;font-weight: bold;}
- .txt{font-weight: 500;font-size: 24rpx;color: #666666;line-height: 36rpx;}
- .home{font-weight: 500;font-size: 24rpx;color: #AAAAAA;margin-top: 20rpx;}
- }
- </style>
|