修改:文创空间部分内容调试
This commit is contained in:
parent
020cd137ca
commit
af004bf334
|
|
@ -164,9 +164,32 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
<!-- 团队业绩新 -->
|
||||||
|
<template v-if="page_params.key_name === 'new_team_performance'">
|
||||||
|
<div class="order-content">
|
||||||
|
<div class="order-block" v-for="(item,index) in list" :key="index">
|
||||||
|
<div class="top-info">
|
||||||
|
<div class="order-no">{{ item.order_sn }}</div>
|
||||||
|
<div class="order-status">{{ item.status_name }}</div>
|
||||||
|
</div>
|
||||||
|
<div class="goods-info">
|
||||||
|
<div class="goods-block" v-for="(goodsItem,goodsIndex) in item.order_goods" :key="goodsIndex">
|
||||||
|
<div class="goods-thumb">
|
||||||
|
<img class="goods-thumb-img" :src="goodsItem.thumb" />
|
||||||
|
</div>
|
||||||
|
<div class="goods-desc">
|
||||||
|
<div class="goods-title">{{ goodsItem.title }}</div>
|
||||||
|
<div class="good-num">× {{ goodsItem.total }}</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="goods-footer">
|
||||||
|
<div class="create-time">{{ item.create_time }}</div>
|
||||||
|
<div class="payment-amount">¥{{ item.price }}</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
</template>
|
</template>
|
||||||
</div>
|
</div>
|
||||||
<van-empty description="暂无数据" v-else/>
|
<van-empty description="暂无数据" v-else/>
|
||||||
|
|
@ -215,6 +238,7 @@ export default {
|
||||||
case 'share_reward':title = '销售受益明细';break;
|
case 'share_reward':title = '销售受益明细';break;
|
||||||
case 'ecological_construction':title = '服务受益明细';break;
|
case 'ecological_construction':title = '服务受益明细';break;
|
||||||
case 'ecological_services':title = '经销商受益明细';break;
|
case 'ecological_services':title = '经销商受益明细';break;
|
||||||
|
case 'new_team_performance':title = '团队业绩';break;
|
||||||
}
|
}
|
||||||
}else{
|
}else{
|
||||||
// 代理中心相关明细
|
// 代理中心相关明细
|
||||||
|
|
@ -336,6 +360,7 @@ export default {
|
||||||
.order-content{
|
.order-content{
|
||||||
--order-margin-: 15px;
|
--order-margin-: 15px;
|
||||||
padding-top: var(--order-margin-);
|
padding-top: var(--order-margin-);
|
||||||
|
padding-bottom: 15px;
|
||||||
.order-block{
|
.order-block{
|
||||||
width: calc(100vw - (var(--order-margin-) * 2));
|
width: calc(100vw - (var(--order-margin-) * 2));
|
||||||
background: #FFFFFF;
|
background: #FFFFFF;
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,7 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="team-block">
|
<div class="team-block">
|
||||||
<div class="team-block-title">我的业绩</div>
|
<div class="team-block-title">我的业绩</div>
|
||||||
<div class="team-block-money">{{ statistics.area_performance ? statistics.area_performance.num : '0.00' }}</div>
|
<div class="team-block-money">{{ statistics.team_performance ? statistics.team_performance.num : '0.00' }}</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<!--我的收入-->
|
<!--我的收入-->
|
||||||
|
|
@ -120,7 +120,8 @@ export default {
|
||||||
cultural_space_tool_list: [
|
cultural_space_tool_list: [
|
||||||
{ title: '我的客户', sub_title: '团队客户明细', icon: '003.png', path_name: 'myRelationship' },
|
{ title: '我的客户', sub_title: '团队客户明细', icon: '003.png', path_name: 'myRelationship' },
|
||||||
{ title: '分享二维码', sub_title: '生成分享码', icon: '004.png', path_name: 'qrcode' },
|
{ title: '分享二维码', sub_title: '生成分享码', icon: '004.png', path_name: 'qrcode' },
|
||||||
{ title: '团队业绩', sub_title: '团队累计业绩', icon: '005.png', path_name: 'incomedetails',query: { content_type: 'cultural_space' } },
|
// { title: '团队业绩', sub_title: '团队累计业绩', icon: '005.png', path_name: 'incomedetails',query: { content_type: 'cultural_space' } },
|
||||||
|
{ title: '团队业绩', sub_title: '团队累计业绩', icon: '005.png', path_name: 'weight_value_detailed',query: { content_type: 'cultural_space', key_name: 'new_team_performance' }},
|
||||||
],
|
],
|
||||||
broker_tool_list:[
|
broker_tool_list:[
|
||||||
{ title: '我的权重值', sub_title: '查看权重值', icon: '001.png', path_name: 'weight_value' },
|
{ title: '我的权重值', sub_title: '查看权重值', icon: '001.png', path_name: 'weight_value' },
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue