mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 18:03:27 +08:00
Merge branch 'dev' into 'master'
uniapp【修复】:修复商品已售数量显示bug See merge request jianweie/coreshoppro!102
This commit is contained in:
@@ -18,7 +18,7 @@
|
||||
<template #goodPrice>
|
||||
<view class="price-msg" v-if="props.data.column == 1" @click="hanldeClickGoods(item)">
|
||||
<view class="tag-box">
|
||||
<view class="tag tag-buy">已售{{ item.buyCount }}{{ item.unit }}</view>
|
||||
<view class="tag tag-buy">已售{{ item.buyCount +item.initialSales}}{{ item.unit }}</view>
|
||||
<view class="tag tag-view">{{ item.viewCount }}人访问</view>
|
||||
</view>
|
||||
<view class="price-box">
|
||||
@@ -36,7 +36,7 @@
|
||||
<text class="num">{{ item.price }}</text>
|
||||
<text class="mktprice" v-if="props.data.column == 2">¥{{ item.mktprice }}</text>
|
||||
</view>
|
||||
<view class="buyCount">已售{{ item.buyCount }}{{ item.unit }}</view>
|
||||
<view class="buyCount">已售{{ item.buyCount +item.initialSales}}{{ item.unit }}</view>
|
||||
</view>
|
||||
<Point :data="item" :flex="false"></Point>
|
||||
</view>
|
||||
|
||||
Reference in New Issue
Block a user