|
|
|
@ -12,8 +12,7 @@ |
|
|
|
<view class="info-item info-item__top dis-flex flex-x-between flex-y-end"> |
|
|
|
<view class="block-left dis-flex flex-y-center"> |
|
|
|
<!-- 商品售价 --> |
|
|
|
<text class="floor-price__samll">¥</text> |
|
|
|
<text class="floor-price">{{ goods.price }}</text> |
|
|
|
<text class="floor-price">{{ bdprice }}</text> |
|
|
|
<!-- 会员价标签 --> |
|
|
|
<view v-if="goods.is_user_grade" class="user-grade"> |
|
|
|
<text>会员价</text> |
|
|
|
@ -292,7 +291,6 @@ |
|
|
|
app.goods = res.data.data[0] |
|
|
|
app.goods.contractual_start_time = app.goods.contractual_start_time.split(' ')[0] |
|
|
|
app.goods.contractualtime_end_time = app.goods.contractualtime_end_time.split(' ')[0] |
|
|
|
app.new_total = res.data.total |
|
|
|
let imgitem = {"imgurl":app.goods.goods_images} |
|
|
|
app.gdimgs.push(imgitem) |
|
|
|
app.transfer(app.goods.goods_entrust, app.goods.price); //转让 |
|
|
|
@ -329,6 +327,14 @@ |
|
|
|
item.source_data.metadataFileSize = app.FileSize(item.source_data.metadataFileSize) |
|
|
|
item.source_data.releaseTime = item.source_data.releaseTime.split(" ")[0] |
|
|
|
}) |
|
|
|
|
|
|
|
let param ={ |
|
|
|
entrust_user_name: res.data.data[0].user.name, |
|
|
|
goods_status: 1 |
|
|
|
} |
|
|
|
GoodsApi.soglist(param).then(result2=>{ |
|
|
|
app.new_total = result2.data.total |
|
|
|
}) |
|
|
|
resolve(res) |
|
|
|
}).catch(reject); |
|
|
|
}) |
|
|
|
|