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 +