Commit a5d1d006 by cocomilk2012

update

parent c55bf7bc
Showing with 25 additions and 37 deletions
...@@ -24,43 +24,24 @@ ...@@ -24,43 +24,24 @@
<div class="box2" id="main-content"> <div class="box2" id="main-content">
<div class="child" v-for="(itemY, indexY) in obj" :key="indexY"> <div class="child" v-for="(itemY, indexY) in obj" :key="indexY">
<div class="data"> <div class="data">
<div <div class="month-list" v-for="(itemM, indexM) in itemY.list" :key="indexM" >
class="month-list" <div class="month font3">
v-for="(itemM, indexM) in itemY.list" <span>服务商简称</span>
:key="indexM" <span>工资</span>
> <span></span>
<div </div>
class="slary" <div class="slary" v-for="(itemD, indexD) in itemM.list" :key="indexD" >
v-for="(itemD, indexD) in itemM.list" <a href="javascript:void(0)" class="detail" @click="toDetail_click(itemD.id)" >
:key="indexD" <span class="font2">{{ itemD.abbrName }}</span>
> <span class="font2" >
<a {{Number(itemD.currentRealWage).toFixed(2)| get_thousand_num}}
href="javascript:void(0)" </span>
class="detail" <span class="arrow_right"><img src="../assets/images/agent/next_gray.png" alt /></span>
@click="toDetail_click(itemD.id)"
>
<span class="font2">工资 | {{ itemD.abbrName }}</span>
<span class="font2"
>{{
Number(itemD.currentRealWage).toFixed(2)
| get_thousand_num
}}</span
>
<span class="arrow_right"
><img src="../assets/images/agent/next_gray.png" alt
/></span>
</a> </a>
</div> </div>
<div class="month"> <div class="month">
<span class="font1" <span class="font1" >{{ itemY.year }}年-{{ Number(itemM.month) }}</span>
>{{ itemY.year }}年-{{ Number(itemM.month) }}</span <span class="font1">{{(itemM.sum ? itemM.sum : 0).toFixed(2) | get_thousand_num}}</span>
>
<span class="font1"
>{{
(itemM.sum ? itemM.sum : 0).toFixed(2) | get_thousand_num
}}</span
>
<span></span> <span></span>
</div> </div>
</div> </div>
...@@ -356,15 +337,22 @@ body { ...@@ -356,15 +337,22 @@ body {
margin-top: 16px; margin-top: 16px;
} }
.font1 { .font1 {
font-size: 16px; font-size: 14px;
font-weight: 600; font-weight: 600;
color: #3d4047; color: #95989e;
} }
.font2 { .font2 {
font-size: 14px; font-size: 14px;
color: #95989e; color: #3d4047;
}
.font3 {
font-size: 16px;
font-weight: 600;
color: #3d4047;
} }
.child { .child {
......
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 sign in to comment