1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <template>
- <view class="wh-full">
- <topNavBar title="支付成功" />
- <view class="pay-sucess">
- <view class="pay-sucess-text">订单支付成功</view>
- <uni-icons type="checkbox-filled" size="90" color="#27B148"></uni-icons>
- <view class="go-btn">确认</view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- methods: {
-
- }
- }
- </script>
- <style lang="scss" scoped>
- .pay-sucess{
- width: 100%;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- .pay-sucess-text{
- font-size: 24px;
- padding-top: 130upx;
- padding-bottom: 90upx;
- }
- .go-btn{
- height: 76upx;
- border-radius: 38px;
- background-image: $base-bg-gradient-color;
- text-align: center;
- line-height: 76upx;
- color: #FFF;
- font-size: 14px;
- width: 50%;
- margin: 100upx auto 0;
- }
- }
- </style>
|