This commit is contained in:
曹辉 2023-03-06 16:36:02 +08:00
parent fb31334858
commit d175e8ae9f
2 changed files with 7 additions and 3 deletions

View File

@ -1,4 +1,5 @@
.app {
padding-bottom:10rpx ;
.masks {
z-index: 999;
}

View File

@ -26,7 +26,7 @@
</view>
<view class="items">
<view class="item" v-for="(item,index) in goodslist" :key="index">
<image :src="item.goodsPictureUrl" mode=""></image>
<image :src="item.attributePitureUrl" mode=""></image>
<view class="title">
{{item.goodsName}}
</view>
@ -132,7 +132,7 @@
</view>
<view style="display: flex;justify-content: flex-start;flex-wrap: wrap;">
<view class="Productmodel productmodel">
<image :src="baseurl+goodsitem.attributePitureUrl" mode=""></image>
<image :src="goodsitem.attributePitureUrl" mode=""></image>
<view class="">
{{goodsitem.integralExchangeCount}}{{goodsitem.goodsUnit}}
</view>
@ -257,6 +257,8 @@
}
},
onShow() {
this.pageNum = 1
this.selectExchangeGoodsinfo();
this.baseurl = baseurl
this.yapqingbeijingimg = baseurl + '/profile/appletPicture/inviteFriendsTwo.png'
var that = this
@ -438,7 +440,6 @@
integralGoodsOrder(that.updata).then(res => {
if (res.code == 200) {
that.selectPatientSignInifo();
that.selectExchangeGoodsinfo();
that.$refs.uToast.show({
title: '兑换商品成功',
type: 'success',
@ -519,9 +520,11 @@
},
//
selectExchangeGoodsinfo() {
this.pageNum = 1
selectExchangeGoods(this.pageNum, this.pageSize).then(res => {
res.rows.forEach(e => {
e.goodsPictureUrl = baseurl + e.goodsPictureUrl
e.attributePitureUrl = baseurl + e.attributePitureUrl
})
this.goodslist = res.rows
this.goodstotal = res.total