123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220 |
- <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 class="">订单信息</view>
- <view class="" style="display: flex;margin-top: 32rpx;">
- <view class="box">
- <image style="width: 120rpx;height: 160rpx;" src="/static/logo.png" mode=""></image>
- </view>
- <view class="flexc" style="">
- <view class="">
- <view class="title">运动体能实训指导</view>
- <view class="">资源类型:付费资源</view>
- </view>
- <view class="">¥324.5</view>
- </view>
- </view>
- <view class="bottom" style="text-align: right;">
- <text class="fu">实付</text>
- <text class="yuan" style="font-size: 8rpx;">¥</text>
- <text class="money1">325.00</text>
- </view>
- </view>
- <view class="info">
- <view class="">订单信息</view>
- <view class="order1">
- <text class="info1">订单编号</text>
- <text class="math">239020283892034</text>
- </view>
- <view class="order1">
- <text class="info1">下单时间</text>
- <text class="math">239020283892034</text>
- </view>
- <view class="order1">
- <text class="info1">支付时间</text>
- <text class="math">2023-11-12 18:23:12</text>
- </view>
- <view class="order1">
- <text class="info1">支付方式</text>
- <text class="math">微信支付</text>
- </view>
- </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" scoped>
- .order1 {
- margin-top: 40rpx;
- }
- .info1 {
- font-size: 28rpx;
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- color: #555555;
- }
- .math {
- font-size: 28rpx;
- font-family: SFPro, SFPro;
- font-weight: 400;
- color: #333333;
- margin-left: 44rpx;
- }
- .bottom {
- border-top: 2rpx solid rgba(151, 151, 151, 0.2);
- padding-top: 26rpx;
- margin-top: 32rpx;
- }
- .fu {
- font-size: 26rpx;
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- color: #222222;
- margin-right: 20rpx;
- }
- .money1 {
- font-size: 36rpx;
- font-family: JDZhengHT, JDZhengHT;
- font-weight: 400;
- color: #222222;
- }
- .money {
- font-size: 32rpx;
- font-family: SFPro, SFPro;
- font-weight: 400;
- color: #333333;
- }
- .yuan {
- font-size: 26rpx;
- font-family: JDZhengHT, JDZhengHT;
- font-weight: 300;
- color: #222222;
- }
- .fu {
- font-size: 24rpx;
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- color: #444444;
- margin-top: 12rpx;
- }
- .box {
- width: 160rpx;
- height: 160rpx;
- border: 1rpx solid rgba(151, 151, 151, 0.2);
- padding: 0 20rpx;
- }
- .title {
- font-size: 28rpx;
- font-family: PingFangHK, PingFangHK;
- font-weight: 400;
- color: #333333;
- }
- .felxc {
- display: flex;
- justify-content: space-between;
- flex-direction: column;
- margin-left: 20rpx;
- padding: 4rpx 0;
- }
- .page {
- height: 100vh;
- 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>
|