Commit a344ee52 authored by zhengke's avatar zhengke

修改

parent eb30ff78
...@@ -276,7 +276,7 @@ export default { ...@@ -276,7 +276,7 @@ export default {
ot: 0, ot: 0,
isExsitGoods: true, isExsitGoods: true,
pageTitle: "商品详情", pageTitle: "课程详情",
setting: {}, setting: {},
prevPage: "", prevPage: "",
//自定义接手传递 //自定义接手传递
......
...@@ -176,7 +176,7 @@ ...@@ -176,7 +176,7 @@
<view class="eduorderDetail"> <view class="eduorderDetail">
<template> <template>
<view class="orderItem"> <view class="orderItem">
<view class="orderCar" v-for="(item,index) in dataList.DetailList" :key="index"> <view class="orderCar" v-for="(item,index) in dataList.DetailList" :key="index" @click="goDetail(item)">
<view class="order_carImg"> <view class="order_carImg">
<image mode="aspectFit" :src="item.CoverImagePath" style="width: 100%; height: 100%;border-radius: 4px;"> <image mode="aspectFit" :src="item.CoverImagePath" style="width: 100%; height: 100%;border-radius: 4px;">
</image> </image>
...@@ -403,6 +403,10 @@ ...@@ -403,6 +403,10 @@
exitPay() { exitPay() {
this.payExit = false; this.payExit = false;
}, },
//跳转至课程详情
goDetail(item){
uni.navigateTo({ url: '/pages/school/courseInfo?GoodsId='+item.GoodsId });
}
} }
} }
</script> </script>
...@@ -77,7 +77,7 @@ ...@@ -77,7 +77,7 @@
color: #9A9A9A; color: #9A9A9A;
font-size: 12px; font-size: 12px;
float: right; float: right;
margin-right: 15px; margin-left: 15px;
} }
.payOrderBtn{ .payOrderBtn{
border:1px solid #00d6a6!important; border:1px solid #00d6a6!important;
...@@ -88,6 +88,11 @@ ...@@ -88,6 +88,11 @@
.course-head{ .course-head{
width:100%; width:100%;
} }
.order_TotalPrice{
text-align: right;
margin-top:15px;
font-size:13px;
}
</style> </style>
<template> <template>
<view class="quick-box" style="height:100vh;"> <view class="quick-box" style="height:100vh;">
...@@ -119,10 +124,11 @@ ...@@ -119,10 +124,11 @@
</view> </view>
<view style="text-align: right;margin-top:15px;"> <view style="text-align: right;margin-top:15px;">
<!-- <text style="color:#9A9A9A;font-size:12px;">实付:</text> --> <!-- <text style="color:#9A9A9A;font-size:12px;">实付:</text> -->
<text style="font-size:15px;color:#121212">¥{{x.Unit_Price}}</text> <text style="font-size:12px;color:#121212">¥{{x.Unit_Price}}</text>
</view> </view>
</view> </view>
</view> </view>
<view class="order_TotalPrice">应付金额:¥{{item.Income}}</view>
<view class="order_BtnList"> <view class="order_BtnList">
<view class="order_Btn_inner"> <view class="order_Btn_inner">
<view class="order_EduBtn_Com payOrderBtn" v-if="item.OrderStatus==1" @click.stop="payment(item)" :style="{'color':mainColor}">立即支付</view> <view class="order_EduBtn_Com payOrderBtn" v-if="item.OrderStatus==1" @click.stop="payment(item)" :style="{'color':mainColor}">立即支付</view>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment