123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <template>
- <view>
- <view class="result">
- <view class="image-wrap">
- <image class="image" :src="imgHost + '/statics/images/offline-result.png'" ></image>
- </view>
- <view class="text">支付成功</view>
- </view>
- <navigator class="link" url="/pages/index/index" open-type="switchTab">进入商城</navigator>
- </view>
- </template>
- <script>
- import {HTTP_REQUEST_URL} from '@/config/app.js';
- export default {
- data(){
- return {
- imgHost:HTTP_REQUEST_URL,
- }
- },
- onLoad(options) {
- let site_name = options.site_name || '';
- if (site_name) {
- uni.setNavigationBarTitle({
- title: site_name
- });
- }
- }
- };
- </script>
- <style>
- page {
- background-color: #fff;
- }
- </style>
- <style lang="scss" scoped>
- .result {
- margin-top: 200rpx;
- .image-wrap {
- width: 267rpx;
- height: 223rpx;
- margin: 0 auto;
- }
- .image {
- width: 100%;
- height: 100%;
- }
- .text {
- margin-top: 46rpx;
- font-size: 34rpx;
- text-align: center;
- color: #282828;
- }
- }
- .link {
- width: 560rpx;
- height: 86rpx;
- border: 1rpx solid #F19D2F;
- border-radius: 43rpx;
- margin: 90rpx auto 0;
- font-size: 30rpx;
- line-height: 86rpx;
- text-align: center;
- color: #F19D2F;
- }
- </style>
|