Commit 2022df85 by sunchao

我的积分样式调整

parent daa4b6aa
...@@ -272,9 +272,5 @@ export default { ...@@ -272,9 +272,5 @@ export default {
//查询申请加盟信息 //查询申请加盟信息
queryById(params){ queryById(params){
return request(`${cffpURL}/partner/queryById/${params}`, "GET") return request(`${cffpURL}/partner/queryById/${params}`, "GET")
}, }
// cffp推广人申请查询详细接口
queryById(id) {
return request(`${apiURL}/cffp/partner/queryById/id=${id}`, "GET")
},
} }
...@@ -432,7 +432,7 @@ ...@@ -432,7 +432,7 @@
"enablePullDownRefresh": false "enablePullDownRefresh": false
} }
}, }
], ],
// "tabBar": { // "tabBar": {
......
...@@ -29,7 +29,7 @@ ...@@ -29,7 +29,7 @@
</view> </view>
<view class="statistics_wrapper"> <view class="statistics_wrapper">
<view class=""> <view class="">
<text style="color: #0A2F99;">{{sumCommissionAmount}}</text> <text style="color: #0A2F99;">{{(Number(sumCommissionAmount)).toFixed(2)}}</text>
<text>累计积分</text> <text>累计积分</text>
</view> </view>
<view class=""> <view class="">
...@@ -45,18 +45,18 @@ ...@@ -45,18 +45,18 @@
<view class="title"> <view class="title">
<h4>积分明细</h4> <h4>积分明细</h4>
</view> </view>
<ul class="point_content_list"> <view class="point_content_list">
<li>课程大类</li> <view>课程大类</view>
<li>积分来源</li> <view>积分来源</view>
<li>获得积分</li> <view>获得积分</view>
<li>操作</li> <view>操作</view>
</ul> </view>
<ul class="point_content_list" v-for="pointItem in cffpFortuneDeductionList" @click="toPointDetail(pointItem)"> <view class="point_content_list" v-for="pointItem in cffpFortuneDeductionList" @click="toPointDetail(pointItem)">
<li>{{pointItem.productTypeName}}</li> <view>{{pointItem.productTypeName}}</view>
<li>{{pointItem.commissionTypeName}}</li> <view>{{pointItem.commissionTypeName}}</view>
<li class="get_point">{{pointItem.commissionAmount}}</li> <view class="get_point">{{pointItem.commissionAmount}}</view>
<li class="point_detail">查看明细</li> <view class="point_detail">查看明细</view>
</ul> </view>
</view> </view>
</view> </view>
</template> </template>
...@@ -195,6 +195,8 @@ ...@@ -195,6 +195,8 @@
flex-wrap: wrap; flex-wrap: wrap;
justify-content: space-around; justify-content: space-around;
font-size: 36rpx; font-size: 36rpx;
width: 33%;
overflow: hidden;
text{ text{
margin-bottom: 10rpx; margin-bottom: 10rpx;
} }
...@@ -228,12 +230,12 @@ ...@@ -228,12 +230,12 @@
text-align: center; text-align: center;
align-items: center; align-items: center;
height: 70rpx; height: 70rpx;
li{ view{
width: 20%; width: 20%;
text-align: center; text-align: center;
overflow:hidden; overflow:hidden;
} }
li:nth-child(2){ view:nth-child(2){
width: 40%; width: 40%;
} }
.get_point{ .get_point{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment