diff --git a/ruoyi-admin/src/main/resources/templates/system/examnum/countExam.html b/ruoyi-admin/src/main/resources/templates/system/examnum/countExam.html index 7c217d2..db49899 100644 --- a/ruoyi-admin/src/main/resources/templates/system/examnum/countExam.html +++ b/ruoyi-admin/src/main/resources/templates/system/examnum/countExam.html @@ -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 @@
  • - {{countList.total}} + {{countTrainList.total}}

    培训次数 @@ -185,7 +185,7 @@

  • - {{countList.shtg}} + {{countTrainList.shtg}}

    审核通过 @@ -197,7 +197,7 @@

  • - {{countList.shwtg}} + {{countTrainList.shwtg}}

    审核未通过 @@ -209,7 +209,7 @@

  • - {{countList.dsh}} + {{countTrainList.dsh}}

    待审核 @@ -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 }) }, } diff --git a/ruoyi-system/src/main/resources/mapper/system/ElUserExamMapper.xml b/ruoyi-system/src/main/resources/mapper/system/ElUserExamMapper.xml index c0a2146..fee8906 100644 --- a/ruoyi-system/src/main/resources/mapper/system/ElUserExamMapper.xml +++ b/ruoyi-system/src/main/resources/mapper/system/ElUserExamMapper.xml @@ -38,6 +38,7 @@ AND uc.user_name LIKE CONCAT('%',#{userName},'%') + ORDER BY ue.max_score desc