123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <template>
- <view class="m-app">
- <view class="fx-h fx-ac fx-bc">
- <view class="yyok"><image src="/static/img/pay_ok.png" mode="widthFix"/></view>
- <view class="title" >申请提交成功,等待审核</view>
- <view class="pay_name" v-if="orderId != ''">单号:{{ orderId }}</view>
- <view class="pay_time" v-if="time != ''">{{ time }}</view>
- <view class="nt yy-btn" @tap="utils.navigateBack()">点击返回</view>
- </view>
- </view>
- </template>
- <script>
- var orderId = "";
- var activeType = "";
- import {mapState,mapMutations} from 'vuex';
- export default {
- computed: mapState(['user']),
- data() {
- return {
- orderId : "",
- time : "",
- pay_card : "",
- payType : "",
- isHome : false
- }
- },
- onLoad(options){
- this.orderId = options.orderId || '';
- this.time = this.utils.date('Y-m-d H:i:s');
- },
- methods: {
-
- }
- }
- </script>
- <style>
- .m-app{width:100vw}
- .yyok{ margin-top: 100px;}
- .yyok image{ width: 100px;}
- .title{ font-size: 24px;color: #000;font-weight: bold;color:#ef4034; margin-top: 10px;}
- .yyok-view{ font-size: 14px;color: #303033; margin-top: 10px;}
- .pay_name{padding: 5px 0;font-size: 14px;}
- .pay_card{padding: 5px 0;font-size: 14px;}
- .pay_time{font-size: 14px;color: #303033;}
- .yy-btn{position: absolute;bottom: 60px;width: 80%;text-align: center;background: #ef4034; padding: 15px 0; color: #fff; font-size: 14px; margin-top: 20px; border-radius: 20px;}
- </style>
|