|
@@ -21,7 +21,9 @@
|
|
|
</view>
|
|
|
<view class="sectionB">
|
|
|
<view class="item" v-for="(item, idx) in categoryList" :key="idx">
|
|
|
- <view class="name">{{item.categoryName}}收益</view>
|
|
|
+ <view class="name">
|
|
|
+ <text>{{item.categoryName}}</text><text v-if="idx != categoryList.length - 1">收益</text>
|
|
|
+ </view>
|
|
|
<view class="value">{{item.value}}</view>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -223,7 +225,7 @@
|
|
|
})
|
|
|
this.categoryList = tempList
|
|
|
this.categoryList.push({
|
|
|
- categoryName: '可获收益',
|
|
|
+ categoryName: '可获收益/总活动金额',
|
|
|
value: this.dataInfo.availableIncome + '元'
|
|
|
})
|
|
|
},
|