123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <template>
- <view>
- <u-navbar title="缴费结果" back-icon-name="close" back-icon-size="30"></u-navbar>
- <view class="success">
- <u-icon name="chenggong" custom-prefix="custom-icon" size="180" color="#00B962"></u-icon>
- <view class="title" >缴费成功</view>
- <view class="price">
- 10.00元
- </view>
- </view>
- <!-- <u-button>抬杆离场</u-button> -->
- <view class="service">
- 联系停车场客服
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- methods: {
-
- }
- }
- </script>
- <style lang="scss" scoped>
- page{
- background-color: #fff;
- }
- .success {
- text-align: center;
- padding: 50px 0;
-
- .title {
- font-size: 20px;
- margin-top: 20px;
- }
- .price{
- font-size: 36px;
- margin-top: 20px;
- }
- }
- .u-btn{
- width: 79.2%;
- background-color: #0051db;
- border-radius: 12px;
- color: #fff;
- margin-top: 20px;
- }
- .service{
- color: rgba(0, 90, 217, 100);
- font-size: 16px;
- text-align: center;
- position: fixed;
- bottom: 0px;
- left: 0;
- right: 0;
- height: 40px;
- background-color: #fff;
- }
- </style>
|