修改部分已发现的bug

This commit is contained in:
lemon橪
2021-12-24 09:12:21 +08:00
parent 896749d812
commit 3a2202a2e8
5 changed files with 43 additions and 11 deletions

View File

@@ -64,7 +64,7 @@
<u-image width="100%" height="330rpx" mode="aspectFit" :src="item.content.thumbnail">
<u-loading slot="loading"></u-loading>
</u-image>
<div class="name">{{ item.content.goodsName }}</div>
<div class="name wes-2">{{ item.content.goodsName }}</div>
<div class="price">
<div>{{ item.content.price | unitPrice }}</div>
</div>
@@ -126,7 +126,7 @@ export default {
},
watch: {
current(val) {
val == 0 ? this.getGoodsData() : this.getCategoryData();
val == 0 ? ()=>{ this.goodsList = []; this.getGoodsData()} : this.getCategoryData();
},
},
@@ -421,8 +421,7 @@ export default {
color: #333;
padding: 0 20rpx;
margin-top: 20rpx;
line-height: 1.4em;
max-height: 2.8em; //height是line-height的整数倍防止文字显示不全
height: 80rpx;
overflow: hidden;
}
.price {

View File

@@ -25,7 +25,7 @@
<view class="index-item-title">{{ item.goodsName }}</view>
<view class="index-item-price">
{{ item.points }}积分
<span class="tipsMkt">¥{{ item.price | unitPrice }}</span>
<span class="tipsMkt">¥{{ item.originalPrice | unitPrice }}</span>
</view>
</view>
</view>

View File

@@ -333,7 +333,7 @@ export default {
*/
navigateToStore(val) {
uni.navigateTo({
url: "../product/shopPage?id=" + val.storeId,
url: "/pages/product/shopPage?id=" + val.storeId,
});
},
@@ -396,6 +396,8 @@ export default {
* 验证是否选中商品
*/
whetherChecked() {
this.$options.filters.forceLogin()
let canBuy = false;
this.cartDetail.cartList.forEach((item) => {
if (item.checked) {