123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- <template>
- <view class="login-main">
- <image
- src="../../static/images/success.png"
- mode=""
- style="width: 300px; margin-left: 25px"
- ></image>
- <span style="font-weight: 600; font-size: 44rpx; color: #333333">支付成功</span>
- <view style="margin-top: 20px">
- 奖励红包,次日到账,可进入农商直采小程序查看
- <!-- 已返
- <span style="color: red">{{ requestConfig.pay }}元</span>
- 红包,可进入农商网小程序查看 -->
- </view>
- <view style="margin-top: 20px">
- <button class="btn">查看红包</button>
- </view>
- </view>
- </template>
- <script>
- import { requestConfig } from "@/app.config.js";
- export default {
- data() {
- return {
- requestConfig: requestConfig,
- // 基本案列数据
- radiovalue: 0,
- };
- },
- onLoad() {},
- methods: {},
- };
- </script>
- <style scoped lang="scss">
- .u-radio-group--row {
- justify-content: center;
- }
- .btn {
- margin-top: 20px;
- width: 600rpx;
- height: 90rpx;
- background: linear-gradient(275deg, #01cf6c 0%, #07e278 100%);
- border-radius: 44rpx;
- color: #fff;
- }
- .radioText {
- font-weight: 500;
- font-size: 24rpx;
- color: #999999;
- line-height: 34rpx;
- text-align: left;
- font-style: normal;
- }
- .login-main {
- background: url("../../static/images/back.png") no-repeat;
- background-size: 100% 100%;
- width: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- height: 100vh;
- }
- .login-contont-button {
- .btn {
- margin-top: 20px;
- width: 90%;
- height: 90rpx;
- background: linear-gradient(275deg, #01cf6c 0%, #07e278 100%);
- border-radius: 44rpx;
- color: #fff;
- }
- }
- .login-contont {
- width: 100%;
- height: 50%;
- .login-contont-info {
- text-align: center;
- .text {
- margin-top: 10px;
- font-weight: 500;
- font-size: 28rpx;
- color: #999999;
- line-height: 40rpx;
- font-style: normal;
- }
- }
- }
- .radio {
- text-align: center;
- margin-top: 10px;
- }
- .login-main-content {
- text-align: center;
- padding-top: 100px;
- width: 100%;
- height: 50%;
- .img {
- width: 100px;
- height: 130px;
- }
- }
- </style>
|