|
@@ -3,20 +3,36 @@
|
|
|
<view class="info">
|
|
|
<view class="u-flex u-row-between">
|
|
|
<text class="shang">商品信息</text>
|
|
|
- <text class="more" @click="open">展开</text>
|
|
|
+ <text class="more" @click="open" v-if="orderlist.length>3 && this.opena == false">展开</text>
|
|
|
+ <text class="more" @click="open" v-if="orderlist.length>3 && this.opena==true">收起</text>
|
|
|
</view>
|
|
|
- <view class="u-flex" style="margin-top: 32rpx;" v-for="(item,index) in orderlist.slice(0,3)" :key="index">
|
|
|
+ <!-- <view v-if="index==1" class="u-flex" style="margin-top: 32rpx;" :key="index">
|
|
|
<view class="box">
|
|
|
<image :src="item.image" 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">{{item.title}}</view>
|
|
|
+ <view class="" style="width: 500rpx;">
|
|
|
+ <view class="title u-line-1" style="margin-bottom: 8rpx;">{{item.title}}</view>
|
|
|
<view class="fufei">资源类型:付费资源</view>
|
|
|
+ <view class="fufei">资源类型:免费资源</view>
|
|
|
</view>
|
|
|
<view class="money">¥{{item.price}}</view>
|
|
|
</view>
|
|
|
+ </view> -->
|
|
|
+ <view class="u-flex" style="margin-top: 32rpx;" v-for="(item,index) in orderlist" :key="index">
|
|
|
+ <view class="box">
|
|
|
+ <image :src="item.good_item.image" 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="" style="width: 500rpx;">
|
|
|
+ <view class="title u-line-1" style="margin-bottom: 8rpx;">{{item.good_item.title}}</view>
|
|
|
+ <view class="fufei" v-if="item.good_item.price>0">资源类型:付费资源</view>
|
|
|
+ <view class="fufei" v-if="item.good_item.price==0">资源类型:免费资源</view>
|
|
|
+ </view>
|
|
|
+ <view class="money">¥{{item.good_item.price}}</view>
|
|
|
+ </view>
|
|
|
</view>
|
|
|
<view class="jiner ">
|
|
|
<view class="" style="margin-top: 24rpx;" class="u-flex u-row-between">
|
|
@@ -57,7 +73,7 @@
|
|
|
<view class="">
|
|
|
<text>合计:</text>
|
|
|
<text>¥</text>
|
|
|
- <text>325.00</text>
|
|
|
+ <text>{{orderinfo.total_price}}</text>
|
|
|
</view>
|
|
|
<view class="btn" @click="pay">
|
|
|
确认支付
|
|
@@ -75,7 +91,11 @@
|
|
|
orderinfo: {
|
|
|
total_price: ''
|
|
|
},
|
|
|
- index: ''
|
|
|
+ order: {
|
|
|
+
|
|
|
+ },
|
|
|
+ index: '',
|
|
|
+ opena: false
|
|
|
};
|
|
|
},
|
|
|
onLoad(options) {
|
|
@@ -85,18 +105,23 @@
|
|
|
},
|
|
|
methods: {
|
|
|
open() {
|
|
|
-
|
|
|
+ this.opena = !this.opena
|
|
|
},
|
|
|
//获取订单列表
|
|
|
getOrderList() {
|
|
|
this.$u.post('api/order/getOrderInfo', {
|
|
|
id: this.orderid
|
|
|
}).then(res => {
|
|
|
- this.orderlist = res.data.goods
|
|
|
this.orderinfo = res.data
|
|
|
+ if (this.opena) {
|
|
|
+ this.orderlist = res.data.goods
|
|
|
+ } else {
|
|
|
+ this.orderlist = res.data.goods.slice(0, 3)
|
|
|
+ }
|
|
|
console.log(res);
|
|
|
})
|
|
|
},
|
|
|
+
|
|
|
// 选中某个单选框时,由radio时触发
|
|
|
radioChange(e) {
|
|
|
// console.log(e);
|
|
@@ -158,7 +183,7 @@
|
|
|
|
|
|
.jiner {
|
|
|
width: 654rpx;
|
|
|
- height: 2rpx;
|
|
|
+ // height: 2rpx;
|
|
|
border-top: 2rpx solid rgba(151, 151, 151, 0.1);
|
|
|
margin-top: 32rpx;
|
|
|
|
|
@@ -214,7 +239,7 @@
|
|
|
|
|
|
.info {
|
|
|
width: 694rpx;
|
|
|
- height: 944rpx;
|
|
|
+ // height: 944rpx;
|
|
|
background: #FFFFFF;
|
|
|
border-radius: 16rpx;
|
|
|
padding: 24rpx 20rpx 30rpx;
|