Compare commits
No commits in common. "4f822722c48c4936dccf193a1774dbf1983fef19" and "1826f76baa2cc09ae3c7d48deff1f808543e27e1" have entirely different histories.
4f822722c4
...
1826f76baa
|
|
@ -100,7 +100,7 @@
|
||||||
<text class="stat-label">一阶</text>
|
<text class="stat-label">一阶</text>
|
||||||
<view class="stat-value">
|
<view class="stat-value">
|
||||||
<text class="stat-value__integer">{{
|
<text class="stat-value__integer">{{
|
||||||
personalPointInfo.firstOrderQuantity || 0
|
personalPointInfo.firstOrderQuantity
|
||||||
}}</text>
|
}}</text>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
|
@ -110,7 +110,7 @@
|
||||||
<text class="stat-label">二阶</text>
|
<text class="stat-label">二阶</text>
|
||||||
<view class="stat-value">
|
<view class="stat-value">
|
||||||
<text class="stat-value__integer">{{
|
<text class="stat-value__integer">{{
|
||||||
personalPointInfo.secondOrderQuantity || 0
|
personalPointInfo.secondOrderQuantity
|
||||||
}}</text>
|
}}</text>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
|
@ -120,7 +120,7 @@
|
||||||
<text class="stat-label">三阶</text>
|
<text class="stat-label">三阶</text>
|
||||||
<view class="stat-value">
|
<view class="stat-value">
|
||||||
<text class="stat-value__integer">{{
|
<text class="stat-value__integer">{{
|
||||||
personalPointInfo.threeOrderQuantity || 0
|
personalPointInfo.threeOrderQuantity
|
||||||
}}</text>
|
}}</text>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
|
@ -129,7 +129,7 @@
|
||||||
<text class="stat-label">赠点</text>
|
<text class="stat-label">赠点</text>
|
||||||
<view class="stat-value">
|
<view class="stat-value">
|
||||||
<text class="stat-value__integer">{{
|
<text class="stat-value__integer">{{
|
||||||
personalPointInfo.waitPointCount || 0
|
personalPointInfo.waitPointCount
|
||||||
}}</text>
|
}}</text>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
|
@ -431,7 +431,7 @@ export default {
|
||||||
getPersonalPointInfo() {
|
getPersonalPointInfo() {
|
||||||
getPersonalPointInfo().then(res => {
|
getPersonalPointInfo().then(res => {
|
||||||
if (res.code == 200) {
|
if (res.code == 200) {
|
||||||
this.personalPointInfo = res.data || {}
|
this.personalPointInfo = res.data
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue