123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219 |
- <template>
- <view class="page">
- <view class="info">
- <view class="u-flex u-row-between">
- <text class="shang">商品信息</text>
- <text class="more">展开</text>
- </view>
- <view class="u-flex" style="margin-top: 32rpx;" v-for="(item,index) in 4" :key="index">
- <view class="box">
- <image src="/static/logo.png" style="width: 120rpx;height: 160rpx;" mode=""></image>
- </view>
- <view class=""
- style="margin-left: 20rpx;justify-content: space-between;display: flex;flex-direction: column;height: 160rpx;">
- <view class="">
- <view class="title u-line-1">中医基础理论(全国中医药行业高…</view>
- <view class="fufei">资源类型:付费资源</view>
- </view>
- <view class="money">¥324.5</view>
- </view>
- </view>
- <view class="jiner ">
- <view class="" style="margin-top: 24rpx;" class="u-flex u-row-between">
- <text class="sum">商品金额</text>
- <view class="">
- <text class="figure">¥</text>
- <text class="figure" style="font-size: 32rpx;font-weight: 400;">325.00</text>
- </view>
- </view>
- </view>
- </view>
- <view class="pay">
- <u-radio-group v-model="value" @change="radioGroupChange">
- <view class="u-flex u-row-between" style="width: 680rpx;">
- <view class="u-flex">
- <image src="/static/images/wei.png" style="width: 40rpx;height: 40rpx;" mode=""></image>
- <view class="weipay">微信支付</view>
- </view>
- <view class="">
- <u-radio @change="radioChange">
- </u-radio>
- </view>
- </view>
- <view class="u-flex u-row-between"
- style="width: 680rpx;border-top: rgba(151, 151, 151, 0.1);margin-top: 30rpx;padding-top: 26rpx;">
- <view class="u-flex">
- <image src="/static/images/zhi.png" style="width: 40rpx;height: 40rpx;" mode=""></image>
- <view class="weipay">支付宝支付</view>
- </view>
- <view class="">
- <u-radio @change="radioChange"></u-radio>
- </view>
- </view>
- </u-radio-group>
- </view>
- <view class="" style="height: 166rpx;"></view>
- <view class="bottom u-flex u-row-right">
- <view class="">
- <text>合计:</text>
- <text>¥</text>
- <text>325.00</text>
- </view>
- <view class="btn" @click="pay">
- 确认支付
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- value: 0
- };
- },
- onLoad() {
- this.getOrderList()
- },
- methods: {
- //获取订单列表
- getOrderList(){
-
- },
- // 选中某个单选框时,由radio时触发
- radioChange(e) {
- // console.log(e);
- },
- // 选中任一radio时,由radio-group触发
- radioGroupChange(e) {
- // console.log(e);
- },
- pay() {
- uni.navigateTo({
- url: '/pages/index/pay/pay'
- })
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .weipay {
- font-size: 26rpx;
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- color: #333333;
- margin-left: 20rpx;
- }
- .bottom {
- width: 750rpx;
- height: 166rpx;
- background: #FFFFFF;
- position: fixed;
- bottom: 0;
- padding: 0 28rpx;
- left: 0;
- .btn {
- width: 212rpx;
- height: 88rpx;
- background: #06A971;
- border-radius: 12rpx;
- font-size: 32rpx;
- font-family: PingFangSC, PingFang SC;
- font-weight: 500;
- color: #FFFFFF;
- line-height: 88rpx;
- text-align: center;
- margin-left: 24rpx;
- }
- }
- .pay {
- width: 694rpx;
- height: 200rpx;
- background: #FFFFFF;
- border-radius: 16rpx;
- margin-top: 20rpx;
- padding: 32rpx 20rpx;
- }
- .jiner {
- width: 654rpx;
- height: 2rpx;
- border-top: 2rpx solid rgba(151, 151, 151, 0.1);
- margin-top: 32rpx;
- .sum {
- font-size: 26rpx;
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- color: #222222;
- }
- .figure {
- font-size: 26rpx;
- font-family: JDZhengHT, JDZhengHT;
- font-weight: 300;
- color: #222222;
- }
- }
- .shang {
- font-size: 26rpx;
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- color: #222222;
- }
- .more {
- font-size: 26rpx;
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- color: #06A971;
- }
- .fufei {
- font-size: 24rpx;
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- color: #444444;
- }
- .money {
- font-size: 32rpx;
- font-family: SFPro, SFPro;
- font-weight: 400;
- color: #CF1534;
- }
- .title {
- font-size: 28rpx;
- font-family: PingFangSC, PingFang SC;
- font-weight: 500;
- color: #333333;
- }
- .info {
- width: 694rpx;
- height: 944rpx;
- background: #FFFFFF;
- border-radius: 16rpx;
- padding: 24rpx 20rpx 30rpx;
- }
- .page {
- background-color: rgba(244, 244, 244, 1);
- padding: 20rpx 28rpx;
- min-height: 94vh;
- }
- .box {
- width: 160rpx;
- height: 160rpx;
- border: 2rpx solid rgba(151, 151, 151, 0.2);
- padding: 0 20rpx
- }
- </style>
|