app图片加载不出来
This commit is contained in:
parent
eaff04f995
commit
f84d98efd6
|
@ -2,7 +2,8 @@
|
|||
<view class="content">
|
||||
<view class="head">
|
||||
<view class="" style="width: 210rpx;height: 210rpx;position: relative;">
|
||||
<u--image :src="short.image" width='210rpx' height='210rpx' duration="450"></u--image>
|
||||
<!-- <u--image :src="short.image" width='210rpx' height='210rpx' duration="450"></u--image> -->
|
||||
<image :src="short.image" style="width: 210rpx;height: 210rpx;" mode=""></image>
|
||||
<view class="preview" @click="preViewImg(short.image)">
|
||||
点击预览
|
||||
</view>
|
||||
|
@ -11,10 +12,11 @@
|
|||
<view class="right">
|
||||
<view class="">
|
||||
<view class="" style="font-size: 32rpx;color: #444444;">
|
||||
{{short.store_name||short.storeCategory.cate_name}}
|
||||
{{short.store_name}}
|
||||
</view>
|
||||
<view class="" style="font-size: 24rpx;color: #989898;margin-top: 10rpx;">
|
||||
库存: {{short.attrValue[0].stock}}个
|
||||
<!-- 库存: {{short.attrValue[0].stock}}个 -->
|
||||
库存: {{attrvalueStock}}个
|
||||
</view>
|
||||
</view>
|
||||
<view class="" style="color: #FC452F;font-size: 24rpx;">
|
||||
|
@ -94,7 +96,8 @@
|
|||
type: "",
|
||||
short: {
|
||||
product_id: ''
|
||||
}
|
||||
},
|
||||
attrvalueStock: 0,
|
||||
}
|
||||
},
|
||||
onLoad(options) {
|
||||
|
@ -125,6 +128,7 @@
|
|||
initInfo() {
|
||||
productDetail(this.mer_id, this.short.product_id).then((res) => {
|
||||
this.short = res.data;
|
||||
this.attrvalueStock = res.data.attrValue[0].stock
|
||||
console.log({
|
||||
...res.data
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue