From b3423c6796818fa79726f54c9888fc88018358b9 Mon Sep 17 00:00:00 2001 From: dshclm <3321914460@qq.com> Date: Thu, 8 Aug 2024 10:31:15 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B6=89=E5=AF=86=E5=9F=B9=E8=AE=AD=E7=BB=9F?= =?UTF-8?q?=E8=AE=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../templates/system/trainnum/trainnum.html | 237 +++++++++++++++--- 1 file changed, 197 insertions(+), 40 deletions(-) diff --git a/ruoyi-admin/src/main/resources/templates/system/trainnum/trainnum.html b/ruoyi-admin/src/main/resources/templates/system/trainnum/trainnum.html index 60f051e..3071979 100644 --- a/ruoyi-admin/src/main/resources/templates/system/trainnum/trainnum.html +++ b/ruoyi-admin/src/main/resources/templates/system/trainnum/trainnum.html @@ -3,49 +3,184 @@ + -
+
-
-
-
-
    -
  • - - -
  • -
  • - - -
  • -
  • - - -
  • +
    +
    +
      +
    • +
      +

      + {{countList.total}} +

      +

      + 培训次数 +

      +
      + + +
    • +
    • +
      +

      + {{countList.shtg}} +

      +

      + 审核通过 +

      +
      + + +
    • +
    • +
      +

      + {{countList.shwtg}} +

      +

      + 审核未通过 +

      +
      + + +
    • +
    • +
      +

      + {{countList.dsh}} +

      +

      + 待审核 +

      +
      + + +
    • +
    +
    +
    +
    + +
    +
      +
    • + + +
    • +
    • + + +
    • +
    • + + +
    • -
    • - - -
    • -
    • -  搜索 -  重置 -
    • -
    +
  • + + +
  • +
  • +  搜索 +  重置 +
  • +
+
+
- -
- - -
-
+ +
+
+
+
@@ -157,6 +292,28 @@ var url = prefix + '/examine/' + id; $.modal.open("涉密人员培训审核", url); } + var app = new Vue({ + el: '#app', + data: { + countList:[], + tableData: [], + }, + created(){ + this.init() + }, + methods:{ + init(){ + axios.post(prefix + '/countList').then(response => { + console.log(response) + this.countList = response.data.data + }) + }, + handleEdit(index,row){ + var url = prefix + '/examnum/' + row.examId + $.modal.openTab("考试明细", url); + } + } + }) - \ No newline at end of file +