123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- <template>
- <view>
- <u-navbar title="充值结果" :is-back="false"></u-navbar>
- <view class="paySuccess">
- <u-icon name="chenggong" custom-prefix="custom-icon" size="180" color="#00B962"></u-icon>
- <view class="title oldTextjp" oldstyle="font-size: 20px;">支付完成{{detail.payStatusStr}}</view>
- <view class="payPrice">
- <!-- <font>{{detail.totalFee}}</font><span>元</span> -->
- </view>
- <p class="oldTextjp2" oldstyle="font-size: 16px;"></p><!-- {{detail.payNameStr}} -->
- </view>
- <view class="paySuccess-btn">
-
- </view>
- </view>
- </template>
- <script>
- import * as API from '@/apis/finance.js'
-
- export default {
- data() {
- return {
- detail: {},
- id: "",
-
-
- }
- },
- onLoad(op) {
-
-
- },
- onReady() {
-
- },
- methods: {
-
- }
- }
- </script>
- <style>
- page {
- background-color: #fff;
- }
- </style>
- <style lang="scss" scoped>
- .paySuccess {
- text-align: center;
- padding: 50px 0;
- .title {
- font-size: 20px;
- margin-top: 20px;
- }
- .payPrice {
- display: flex;
- align-items: flex-end;
- justify-content: center;
- font {
- font-size: 36px;
- line-height: 36px;
- }
- margin-top: 20px;
- }
- p {
- color: #999;
- margin-top: 4px;
- }
- }
- .paySuccess-btn {
- display: flex;
- justify-content: space-between;
- padding: 0 40px;
- }
- .success-btn1 {
- color: #BBBBBB !important;
- background-color: #fff !important;
- flex: 0.4;
- span {
- color: #333;
- }
- }
- .success-btn2 {
- background-color: #00B962 !important;
- flex: 0.4;
- border-color: #00B962 !important;
- color: #fff !important;
- }
- </style>
|