Authored by zhangxiaoru

图标

... ... @@ -177,7 +177,7 @@ router.post('/return/exchange/cancel-apply', auth, exchange.cancelApply); // AJA
router.get('/tide-command', auth, tideCommand.tideCommand); // 设置潮流口令
router.get('/family', auth, family.familyIndex); // family首页
router.get('/family', auth, disableBFCache, family.familyIndex); // family首页
router.get('/family/vipDetailData', auth, family.familyVip); // 获取VIP信息
router.get('/family/downLoadData', family.downLoadData); // 下载弹窗
router.get('/family/coinDetail', auth, family.coinDetail); // 积分详情页
... ...
... ... @@ -52,7 +52,7 @@
<div class="integral">
<div class="title">积分乐园</div>
<div class="integral-content">
<div class="charts" id="charts" style="width: 8rem; height: 8rem;"></div>
<div class="charts" id="charts" style="width: 8.5rem; height: 8.5rem;"></div>
</div>
</div>
... ...
... ... @@ -116,12 +116,12 @@ class FamilyIndex extends Page {
total: 18922,
totalHref: location.protocol + '//m.yohobuy.com/home/family/coinDetail?openby:yohobuy={"action":"go.h5","params":{"url":"' + location.protocol + '//m.yohobuy.com/home/family/coinDetail"}}', // eslint-disable-line
data: [
{value: 40, name: 'rose2', color: '#000', percent: '20%', plateType: 1},
{value: 50, name: 'rose2', color: '#000', percent: '20%', plateType: 1},
{value: 35, name: 'rose3', plateType: 2},
{value: 30, name: 'rose4', plateType: 3},
{value: 25, name: 'rose5'},
{value: 20, name: 'rose6'},
{value: 15, name: 'rose7'},
{value: 15, name: 'yoho!Bowb'},
]
};
... ... @@ -133,9 +133,9 @@ class FamilyIndex extends Page {
series: [
{
type: 'pie',
radius: [this.selector.chartWidth / 3, this.selector.chartWidth / 2],
radius: [this.selector.chartWidth * 3 / 10, this.selector.chartWidth * 23 / 50],
roseType: 'radius',
center: ['50%', '50%'],
center: ['48%', '50%'],
label: {
normal: false
},
... ... @@ -255,8 +255,6 @@ class FamilyIndex extends Page {
} else {
this.selector.$downLoadDetail.removeClass('hide');
console.log(appType);
this.selector.$downLoadDetail.find('.detail-content .' + appType).removeClass('hide');
this.selector.$downLoadDetail.find('.detail-content .' + appType).siblings().addClass('hide');
}
... ...
... ... @@ -233,10 +233,10 @@
}
.integral-total {
width: 200px;
width: 180px;
position: relative;
top: 104px;
left: -260px;
top: 110px;
left: -264px;
text-align: center;
overflow: hidden;
border-radius: 39px;
... ...