|
@@ -97,7 +97,7 @@
|
|
|
</view>
|
|
|
<view class="pop_prices">
|
|
|
<text class="price">¥ {{ skuItem.standPrice || 0 }}</text>
|
|
|
- <text v-if="skuItem.linePrice" class="lin_price">{{ skuItem.linePrice }}</text>
|
|
|
+ <text v-if="skuItem.linePrice" class="lin_price"> ¥{{ skuItem.linePrice }}</text>
|
|
|
</view>
|
|
|
<view class="check_con">
|
|
|
<scroll-view scroll-y="true" style="height: 550rpx;">
|
|
@@ -134,8 +134,8 @@ export default {
|
|
|
courseNum: 0,
|
|
|
topicId: '',
|
|
|
goodsInfo: {},
|
|
|
- toggleCourseShow: true,
|
|
|
- courseSku: [1],
|
|
|
+ toggleCourseShow: false,
|
|
|
+ courseSku: [],
|
|
|
skuItem: {},
|
|
|
skuIndex: -1,
|
|
|
}
|
|
@@ -153,8 +153,9 @@ export default {
|
|
|
methods: {
|
|
|
getgoodsInfo() {
|
|
|
this.$http({
|
|
|
- url: `/course/topicPage/get/goodsInfo/${this.topicId}`,
|
|
|
+ url: `/app/common/get/goodsInfo/${this.topicId}`,
|
|
|
method: 'get',
|
|
|
+ noToken: true
|
|
|
}).then((res) => {
|
|
|
if (res.data.code == 200) {
|
|
|
this.goodsInfo = res.data.data
|
|
@@ -190,8 +191,9 @@ export default {
|
|
|
this.skuItem = {}
|
|
|
this.skuIndex = -1
|
|
|
this.$http({
|
|
|
- url: '/course/topicPage/get/goodsList',
|
|
|
+ url: '/app/common/get/goodsList',
|
|
|
method: 'get',
|
|
|
+ noToken: true,
|
|
|
data: {
|
|
|
subjectType: subjectType,
|
|
|
topicId: this.topicId,
|
|
@@ -448,6 +450,7 @@ export default {
|
|
|
color: #999999;
|
|
|
font-size: 30rpx;
|
|
|
text-decoration:line-through;
|
|
|
+ margin-left: 8rpx;
|
|
|
}
|
|
|
}
|
|
|
.headers {
|