Commit a5d1d006 by cocomilk2012

update

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