|
|
|
@ -42,9 +42,9 @@
|
|
|
|
|
position: relative;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
.yuan{
|
|
|
|
|
width: 266px;
|
|
|
|
|
height: 266px;
|
|
|
|
|
.count_top ul li .yuan{
|
|
|
|
|
width: 275px;
|
|
|
|
|
height: 275px;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
position: absolute;
|
|
|
|
|
bottom: -163px;
|
|
|
|
@ -112,9 +112,9 @@
|
|
|
|
|
position: relative;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
.yuan{
|
|
|
|
|
width: 300px;
|
|
|
|
|
height: 300px;
|
|
|
|
|
.count_bottom ul li .yuan{
|
|
|
|
|
width: 291px;
|
|
|
|
|
height: 291px;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
position: absolute;
|
|
|
|
|
bottom: -163px;
|
|
|
|
@ -173,7 +173,7 @@
|
|
|
|
|
<li>
|
|
|
|
|
<div class="textList">
|
|
|
|
|
<p>
|
|
|
|
|
{{countList.total}}
|
|
|
|
|
{{countTrainList.total}}
|
|
|
|
|
</p>
|
|
|
|
|
<p>
|
|
|
|
|
培训次数
|
|
|
|
@ -185,7 +185,7 @@
|
|
|
|
|
<li>
|
|
|
|
|
<div class="textList">
|
|
|
|
|
<p>
|
|
|
|
|
{{countList.shtg}}
|
|
|
|
|
{{countTrainList.shtg}}
|
|
|
|
|
</p>
|
|
|
|
|
<p>
|
|
|
|
|
审核通过
|
|
|
|
@ -197,7 +197,7 @@
|
|
|
|
|
<li>
|
|
|
|
|
<div class="textList">
|
|
|
|
|
<p>
|
|
|
|
|
{{countList.shwtg}}
|
|
|
|
|
{{countTrainList.shwtg}}
|
|
|
|
|
</p>
|
|
|
|
|
<p>
|
|
|
|
|
审核未通过
|
|
|
|
@ -209,7 +209,7 @@
|
|
|
|
|
<li>
|
|
|
|
|
<div class="textList">
|
|
|
|
|
<p>
|
|
|
|
|
{{countList.dsh}}
|
|
|
|
|
{{countTrainList.dsh}}
|
|
|
|
|
</p>
|
|
|
|
|
<p>
|
|
|
|
|
待审核
|
|
|
|
@ -288,6 +288,7 @@
|
|
|
|
|
el: '#app',
|
|
|
|
|
data: {
|
|
|
|
|
countList:[],
|
|
|
|
|
countTrainList:[]
|
|
|
|
|
},
|
|
|
|
|
created(){
|
|
|
|
|
this.init()
|
|
|
|
@ -299,7 +300,7 @@
|
|
|
|
|
})
|
|
|
|
|
axios.post(trainPrefix + '/countList').then(response => {
|
|
|
|
|
console.log(response)
|
|
|
|
|
this.countList = response.data.data
|
|
|
|
|
this.countTrainList = response.data.data
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|