修改
This commit is contained in:
parent
8ea608775f
commit
b12cb1bdcb
@ -35,30 +35,23 @@
|
||||
<view class="Threecategories">
|
||||
<view class="item" @tap="goBehaviorpoints">
|
||||
<view class="number">
|
||||
0
|
||||
{{appPersonallist.score>=0?appPersonallist.score:0}}
|
||||
</view>
|
||||
<view class="text">
|
||||
行为积分
|
||||
</view>
|
||||
</view>
|
||||
<view class="item" @tap='gointegral'>
|
||||
<view class="number" v-if="!appPersonallist.integral">
|
||||
0
|
||||
</view>
|
||||
<view class="number" v-else>
|
||||
{{appPersonallist.integral}}
|
||||
<view class="number">
|
||||
{{appPersonallist.integral>=0?appPersonallist.integral:0}}
|
||||
</view>
|
||||
<view class="text">
|
||||
健康豆
|
||||
</view>
|
||||
</view>
|
||||
<view class="item" @tap='gocoupon'>
|
||||
<view class="number"
|
||||
v-if="appPersonallist.patientCouponCount==0 ||!appPersonallist.patientCouponCount">
|
||||
0
|
||||
</view>
|
||||
<view class="number" v-else>
|
||||
{{appPersonallist.patientCouponCount}}
|
||||
<view class="number">
|
||||
{{appPersonallist.patientCouponCount>=0?appPersonallist.patientCouponCount:0}}
|
||||
</view>
|
||||
<view class="text">
|
||||
优惠券
|
||||
|
||||
@ -357,7 +357,6 @@
|
||||
// console.log(JSON.stringify(res.tempFilePaths));
|
||||
}
|
||||
});
|
||||
|
||||
}
|
||||
},
|
||||
//发送图片
|
||||
|
||||
Loading…
Reference in New Issue
Block a user