12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <template>
- <view>
- <view class="u-flex-col" style="justify-content: flex-end;align-items: center;margin-top: 100rpx;">
- <image src="/static/images/success.png" style="width: 86rpx;height: 86rpx;" mode=""></image>
- <view class="success">支付成功</view>
- <view class="" style="margin-top: 26rpx;">
- <text class="money">¥</text>
- <text class="money" style="font-size: 44rpx;">148.32</text>
- </view>
- <view class="order">
- <text class="one">订单编号: 47903234955559</text>
- <text class="one" style="color: rgba(10, 109, 205, 1);margin-left: 20rpx;" @click="success">查看订单</text>
- </view>
- <view class="button">
- 完成
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- };
- },
- methods: {
- success() {
- uni.navigateTo({
- url: '/pages/success'
- })
- }
- }
- }
- </script>
- <style lang="scss">
- .one {
- font-size: 26rpx;
- font-family: SFPro, SFPro;
- font-weight: 400;
- color: #222222;
- }
- .button {
- width: 290rpx;
- height: 88rpx;
- background: #06A971;
- border-radius: 12rpx;
- font-size: 32rpx;
- font-family: PingFangSC, PingFang SC;
- font-weight: 500;
- color: #FFFFFF;
- margin-top: 550rpx;
- line-height: 88rpx;
- text-align: center;
- }
- .order {
- margin-top: 62rpx;
- }
- .success {
- font-size: 28rpx;
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- color: #222222;
- margin-top: 40rpx;
- }
- .money {
- font-size: 26rpx;
- font-family: JDZhengHT, JDZhengHT;
- font-weight: 400;
- color: #222222;
- }
- </style>
|