version/0412
fanfan 10 months ago
parent 3a905731d4
commit f26a57fa2c
  1. 10
      pages/member/index.vue

@ -104,10 +104,10 @@
</view> </view>
<!-- :style="{'marginTop':isChose!=index?'62rpx':0}" --> <!-- :style="{'marginTop':isChose!=index?'62rpx':0}" -->
<view class="timeLong"> <view class="timeLong">
{{item.month}}个月 {{Number(item.month)}}个月
</view> </view>
<view class="firPrice"> <view class="firPrice">
{{item.price}} {{Number(item.price)}}
</view> </view>
<view class="avePrice"> <view class="avePrice">
{{(Number(item.price)/Number(item.month)).toFixed(2)}}/ {{(Number(item.price)/Number(item.month)).toFixed(2)}}/
@ -139,17 +139,17 @@
<view class="footer"> <view class="footer">
<view class="fLeft"> <view class="fLeft">
<view class="ys" v-if="choseItem.cheap_price!=0"> <view class="ys" v-if="choseItem.cheap_price!=0">
已省 <text>{{choseItem.cheap_price}}</text> 已省 <text>{{Number((choseItem.cheap_price).toFixed(2))}}</text>
</view> </view>
<!-- <view class="yj"> <!-- <view class="yj">
原价 {{choseItem.price}} 原价 {{choseItem.price}}
</view> --> </view> -->
</view> </view>
<view class="btn" style="opacity:0.6" v-if="user.user_type == 40"> <view class="btn" style="opacity:0.6" v-if="user.user_type == 40">
<text>{{choseItem.price}}</text>开卡{{choseItem.month}}个月 <text>{{Number(choseItem.price)}}</text>开卡{{Number(choseItem.month)}}个月
</view> </view>
<view class="btn" @click="gotoPay" v-else> <view class="btn" @click="gotoPay" v-else>
<text>{{choseItem.price}}</text>开卡{{choseItem.month}}个月 <text>{{Number(choseItem.price)}}</text>开卡{{Number(choseItem.month)}}个月
</view> </view>
</view> </view>
</view> </view>

Loading…
Cancel
Save