Commit b125a4e2 authored by huangyuanyuan's avatar huangyuanyuan

update

parent 02988c48
...@@ -73,10 +73,10 @@ ...@@ -73,10 +73,10 @@
</el-col> </el-col>
<el-col :span="6"> <el-col :span="6">
<p class="f14" style="color:#999999;margin-top:30px">本年累计交易总额</p> <p class="f14" style="color:#999999;margin-top:30px">本年累计交易总额</p>
<p style="margin-top:20px"><span></span><span class="f30">{{datainfo.Amount}}</span></p> <p style="margin-top:20px"><span></span><span class="f30 pfR">{{datainfo.Amount}}</span></p>
<div style="border-bottom:1px solid #EDEDED;width:256px;margin:30px 0"></div> <div style="border-bottom:1px solid #EDEDED;width:256px;margin:30px 0"></div>
<p class="f14" style="color:#999999;">累计收益</p> <p class="f14" style="color:#999999;">累计收益</p>
<p style="margin-top:20px"><span></span><span class="f30">{{datainfo.TotalMoney}}</span></p> <p style="margin-top:20px"><span></span><span class="f30 pfR">{{datainfo.TotalMoney}}</span></p>
</el-col> </el-col>
</el-row> </el-row>
<div class="jyeDiv"> <div class="jyeDiv">
...@@ -96,7 +96,7 @@ ...@@ -96,7 +96,7 @@
<el-col :span="9"> <el-col :span="9">
<p v-if="item.percent>1" style="color:#00B526" class="pfR">已激活,预计收益 ¥{{(item.Money*item.Ratio)/1000}}</p> <p v-if="item.percent>1" style="color:#00B526" class="pfR">已激活,预计收益 ¥{{(item.Money*item.Ratio)/1000}}</p>
<p v-if="item.percent<1" style="color:#EE4454" class="pfR">还差¥{{item.Money-datainfo.Amount}},预计收益 ¥{{(item.Money*item.Ratio)/1000}}</p> <p v-if="item.percent<1" style="color:#EE4454" class="pfR">还差¥{{item.Money-datainfo.Amount}},预计收益 ¥{{(item.Money*item.Ratio)/1000}}</p>
<p style="color:#999999">交易额已达<span class="pfR">{{item.Money}}</span><span></span><span class="pfR">{{item.Ratio}}</span></p> <p style="color:#999999">交易额已达<span class="pfR">{{item.Money}}</span><span></span><span class="pfR">{{item.Ratio}}</span></p>
</el-col> </el-col>
</el-row> </el-row>
...@@ -198,12 +198,18 @@ export default { ...@@ -198,12 +198,18 @@ export default {
if(res.data.resultCode==1){ if(res.data.resultCode==1){
let data=res.data.data; let data=res.data.data;
let arr=[]; let arr=[];
for(let k in data){ data.forEach(item=>{
let obj={}; let obj={};
obj.name=k; obj.name=item.LineName;
obj.value=data[k]; obj.value=item.num;
this.zbList.push(obj); this.zbList.push(obj);
} })
// for(let k in data){
// let obj={};
// obj.name=k;
// obj.value=data[k];
// this.zbList.push(obj);
// }
this.creatZhanBi(); this.creatZhanBi();
}else{ }else{
...@@ -578,9 +584,15 @@ export default { ...@@ -578,9 +584,15 @@ export default {
justify-content: space-between; justify-content: space-between;
border-bottom:1px solid rgba(234,234,234,1); border-bottom:1px solid rgba(234,234,234,1);
} }
.rentou-box th{
font-size: 14px;
font-weight: 400;
color:#666666;
}
.rentou-box th,.rentou-box td { .rentou-box th,.rentou-box td {
padding: 8px 20px; padding: 8px 20px;
text-align: left !important; text-align: left !important;
} }
.rentou-box td{ .rentou-box td{
font-size: 14px; font-size: 14px;
......
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