Browse Source

修改积分商品价格错误的问题

master
anhaogxs 4 years ago
parent
commit
347fc6dbad
  1. 1
      pages/home/index.vue
  2. 2
      pages/order/OrderSubmission/index.vue
  3. 2
      pages/shop/GoodsList/index.vue

1
pages/home/index.vue

@ -24,7 +24,6 @@
<!-- 菜单 -->
<Menu :list="item.componentContent.menus" ></Menu>
</view>
<!-- 滚动新闻 -->
<!-- 广告 -->
<Adv v-if="item.type=='adv'&&item.componentContent.detail" :detail="item.componentContent.detail" />

2
pages/order/OrderSubmission/index.vue

@ -111,7 +111,7 @@
<view class="name acea-row row-center-wrapper"> <view class="iconfont icon-icon-test" :class="active === 'yue' ? 'bounceIn' : ''"></view>余额支付 </view>
<view class="tip">可用余额{{ userInfo.nowMoney || 0 }}</view>
</view>
<view class="payItem acea-row row-middle" :class="active === 'integral' ? 'on' : ''" @click="payItem('integral')">
<view class="payItem acea-row row-middle" v-if="isIntegral" :class="active === 'integral' ? 'on' : ''" @click="payItem('integral')">
<view class="name acea-row row-center-wrapper"> <view class="iconfont icon-icon-test" :class="active === 'integral' ? 'bounceIn' : ''"></view>积分支付 </view>
<view class="tip">可用积分{{ userInfo.integral || 0 }}</view>
</view>

2
pages/shop/GoodsList/index.vue

@ -52,7 +52,7 @@
<view class="text" :class="Switch === true ? '' : 'on'">
<view class="name line1">{{ item.storeName }}</view>
<view class="money font-color-red" :class="Switch === true ? '' : 'on'">
<text class="num">{{ item.price }}积分</text>
<text class="num">{{ item.integral }}积分</text>
</view>
<view class="vip acea-row row-between-wrapper" :class="Switch === true ? '' : 'on'">
<!-- <view class="vip-money">{{ item.otPrice }}</view> -->

Loading…
Cancel
Save