修改bug

This commit is contained in:
mabo
2021-06-30 15:51:14 +08:00
parent 950b8a097c
commit c9e58f3586
12 changed files with 73 additions and 60 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

View File

@@ -111,7 +111,7 @@
<span class="inventory"> 库存{{skuDetail.quantity}}</span>
</div>
</div>
<div class="item-select" v-if="skuDetail.goodsType !== 'VIRTUAL_GOODS'">
<div class="item-select" v-if="skuDetail.goodsType !== 'VIRTUAL_GOODS' || skuDetail.weight === 0">
<div class="item-select-title">
<p>重量</p>
</div>

View File

@@ -31,7 +31,7 @@ export default {
return {
options: this.data.options // 装修数据
};
},
}
};
</script>
<style lang="scss" scoped>

View File

@@ -15,7 +15,7 @@
>
<div class="user-icon">
<div class="user-img">
<img :src="userInfo.face" v-if="userInfo.face" alt />
<img :src="userInfo.face" style="width:100%;height:100%;" v-if="userInfo.face" alt />
<Avatar icon="ios-person" class="mb_10" v-else size="96" />
</div>
<p>{{userInfo.nickName}}</p>