123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- <template>
- <view class="page">
- <!-- 顶部导航 -->
- <u-navbar title-width='300' title='' :is-back="true" :border-bottom="false"
- :background="{background:'rgba(0,0,0,0)'}" :isFixed="true"></u-navbar>
- <view class="index-navbar">
- <view class="" style="position: relative;;">
- <view class="back"></view>
- </view>
- </view>
- <view class="success">
- 交易已完成
- </view>
- <view class="order">
- </view>
- <view class="info">
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- };
- },
- methods: {
- toorder() {
- uni.navigateTo({
- url: '/pages/mine/myorder'
- })
- },
- tocard() {
- uni.navigateTo({
- url: '/pages/mine/card'
- })
- },
- tosetting() {
- uni.navigateTo({
- url: '/pages/mine/setting'
- })
- }
- }
- }
- </script>
- <style lang="scss">
- .page {
- height: 95vh;
- position: relative;
- z-index: 1;
- background: #F4F5F7;
- padding: 0 28rpx;
- }
- .order {
- width: 694rpx;
- height: 592rpx;
- background: #FFFFFF;
- border-radius: 20rpx;
- padding: 30rpx 20rpx;
- }
- .success {
- font-size: 40rpx;
- font-family: PingFangSC, PingFang SC;
- font-weight: 500;
- color: #FFFFFF;
- margin-top: 12rpx;
- margin-bottom: 38rpx;
- }
- .info{
- width: 694rpx;
- height: 420rpx;
- background: #FFFFFF;
- border-radius: 20rpx;
- margin-top: 20rpx;
- padding: 30rpx 20rpx;
- }
- .index-navbar {
- position: fixed;
- top: 0;
- left: 0;
- width: 100vw;
- z-index: -1;
- // overflow: hidden;
- .back {
- position: absolute;
- top: 0;
- left: 0;
- z-index: -1;
- width: 750rpx;
- height: 636rpx;
- background: linear-gradient(180deg, #06A971 0%, #F4F4F4 100%);
- }
- }
- </style>
|