1234567891011121314151617181920212223242526272829303132333435363738 |
- <template>
- <view class="page-cont">
- <view class="icon-cont">
- <u-icon class="icon" name="checkmark" color="green" size="80"></u-icon>
- <view>支付成功</view>
- </view>
- </view>
- </template>
- <script>
- </script>
- <style lang="less">
- page{
- height: 100%;
- }
- .page-cont{
- width: 100%;
- height: 100%;
- background-color: #fff;
- .icon-cont{
- width: 100%;
- height: 300upx;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- }
- .icon{
- width: 120upx;
- height: 120upx;
- background-color: #d1d1d1;
- display: flex;
- justify-content: center;
- border-radius: 50%;
- }
- }
- </style>
|