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

This commit is contained in:
anhaogxs
2021-02-22 15:29:57 +08:00
parent fa00b519ce
commit 347fc6dbad
3 changed files with 2 additions and 3 deletions

View File

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

View File

@ -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="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 class="tip">可用余额:{{ userInfo.nowMoney || 0 }}</view>
</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="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 class="tip">可用积分:{{ userInfo.integral || 0 }}</view>
</view> </view>

View File

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