|
@@ -98,7 +98,7 @@
|
|
|
<text class="name">品牌 起订量 分类...</text>
|
|
|
<text class="iconfont icon-xiayibu"></text>
|
|
|
</view>
|
|
|
- <view class="product-parameter" @click="showPopup(1)">
|
|
|
+ <view class="product-parameter" @click="showPopup(1)" v-if='product.commodityType == 2'>
|
|
|
<text class="title">培训方案:</text>
|
|
|
<text class="name">线上培训</text>
|
|
|
<text class="iconfont icon-xiayibu"></text>
|
|
@@ -201,12 +201,12 @@
|
|
|
<div class="tui-popup-main">
|
|
|
<scroll-view class="tui-popup-scroll train" scroll-y="true">
|
|
|
<view class="content-tr">
|
|
|
- <view class="content-td">培训方式</view>
|
|
|
- <view class="content-th">线上培训</view>
|
|
|
+ <view class="content-td">培训方式:</view>
|
|
|
+ <view class="content-th">{{ product.trainingMethod == 1 ? '线上培训' : '线下培训' }}</view>
|
|
|
</view>
|
|
|
<view class="content-tr">
|
|
|
- <view class="content-td">培训费用</view>
|
|
|
- <view class="content-th">¥100.00</view>
|
|
|
+ <view class="content-td">培训费用:</view>
|
|
|
+ <view class="content-th">{{ product.trainingType == 1 ? '¥'+product.trainingFee : '售价已包含' }}</view>
|
|
|
</view>
|
|
|
</scroll-view>
|
|
|
</div>
|