From 404136b0310181bd10ab488d7dae2b8a6d37d7fd Mon Sep 17 00:00:00 2001
From: 钟日健 <5689795+arsn@user.noreply.gitee.com>
Date: Tue, 22 Feb 2022 19:13:41 +0800
Subject: [PATCH] 报名列表,报名清册新增缴费确认

---
 src/views/trainingRegistration/data.js |  152 +++++++++++++++++++++++++++++++++++++++++++++-----
 1 files changed, 137 insertions(+), 15 deletions(-)

diff --git a/src/views/trainingRegistration/data.js b/src/views/trainingRegistration/data.js
index f08ae3d..8e5d689 100644
--- a/src/views/trainingRegistration/data.js
+++ b/src/views/trainingRegistration/data.js
@@ -19,7 +19,7 @@
 var w = 160,
     s = 12;
 export var column = [{
-        label: "培训公司名称",
+        label: "学校名称",
         prop: "trainingUnitId",
         dicUrl: "/api/blade-system/dept/lazy-tree-type?parentId=1418458374477549569",
         cascaderItem: ["trainExamId"],
@@ -30,11 +30,12 @@
         type: "select",
         rules: [{
             required: true,
-            message: "请输入培训公司名称",
+            message: "请输入学校名称",
             trigger: "blur"
         }],
         searchSpan: 4,
         searchLabelWidth: 110,
+        width: 180,
     }, {
         label: "姓名",
         prop: "userId",
@@ -55,9 +56,11 @@
         label: "姓名",
         prop: "realName",
         search: true,
+        searchLabelWidth: 56,
         editDisplay: false,
         addDisplay: false,
-        searchSpan: 4,
+        searchSpan: 3,
+        width:90
     }, {
         label: "身份证号",
         prop: "idCardNo",
@@ -95,7 +98,7 @@
     //     width: 110,
     // },
     {
-        label: "单位名称",
+        label: "企业名称",
         prop: "deptId",
         // width: 70,
         // search: true,
@@ -111,42 +114,161 @@
         hide: true,
         rules: [{
             required: true,
-            message: "请输入单位名称",
+            message: "请输入企业名称",
             trigger: "blur"
         }],
         overHidden: true
     }, {
-        label: "单位名称",
+        label: "企业名称",
         prop: "deptName",
         // hide: true,
         search: true,
-        searchSpan: 6,
+        searchLabelWidth: 85,
+        searchSpan: 5,
         rules: [{
             required: true,
-            message: "请输入单位名称",
+            message: "请输入企业名称",
             trigger: "blur"
         }],
+
     },
     {
         label: "考试名称",
-        prop: "trainExamName"
+        prop: "trainExamName",
+        width: 220,
     },
     {
         label: "考试证件",
-        prop: "applyCard"
+        prop: "applyCard",
+        width:70
+    },
+    {
+        label: "审核状态",
+        search: true,
+        type: "select",
+        searchSpan: 4,
+        prop: "auditStatus",
+        searchValue: 4,
+        dicData: [{
+                label: '全部',
+                value: 0,
+            },
+            {
+                label: '审核通过',
+                value: 1,
+            },
+            {
+                label: '审核不通过',
+                value: 2,
+            },
+            {
+                label: '已提交审核',
+                value: 3,
+            },
+            {
+                label: '未提交审核',
+                value: 4,
+            }
+        ],
+        props: {
+            label: "label",
+            value: "value"
+        },
+        editDisplay: false,
+        addDisplay: false,
+        width: 100,
+    },
+    {
+        label: "报名状态",
+        search: true,
+        type: "select",
+        searchSpan: 4,
+        prop: "cancel",
+        searchValue: 1,
+        searchLabelWidth: 85,
+        dicData: [{
+                label: '全部',
+                value: 0,
+            },
+            {
+                label: '已报名',
+                value: 1,
+            },
+            {
+                label: '已取消',
+                value: 2,
+            }
+        ],
+        props: {
+            label: "label",
+            value: "value"
+        },
+        editDisplay: false,
+        addDisplay: false,
+        width: 100,
+    },
+    {
+        label: "考试状态",
+        search: true,
+        type: "select",
+        searchSpan: 4,
+        prop: "isExam",
+        searchValue: 1,
+        dicData: [{
+                label: '全部',
+                value: 0,
+            },
+            {
+                label: '未考试',
+                value: 1,
+            },
+            {
+                label: '考试结束',
+                value: 2,
+            },
+            {
+                label: '考试中',
+                value: 3,
+            },
+            {
+                label: '缺考',
+                value: 4,
+            }
+        ],
+        props: {
+            label: "label",
+            value: "value"
+        },
+        editDisplay: false,
+        addDisplay: false,
+        width: 100,
     },
     // {
-    //     label: "报名状态",
-    //     prop: "cancel",
-    //     // search: true,
-    //     dicData: DIC1,
+    //     label: "缴费状态",
+    //     search: true,
+    //     type: "select",
+    //     searchSpan: 4,
+    //     prop: "vipStatus",
+    //     dicData: [
+    //         {
+    //             label: '全部',
+    //             value: 0,
+    //         },
+    //         {
+    //             label: '已缴费',
+    //             value: 1,
+    //         },
+    //         {
+    //             label: '未缴费',
+    //             value: 2,
+    //         }
+    //     ],
     //     props: {
     //         label: "label",
     //         value: "value"
     //     },
     //     editDisplay: false,
     //     addDisplay: false,
-    //     searchSpan: 4,
     //     width: 100,
     // },
     //  {

--
Gitblit v1.9.3