From 8e2a42e4a2da78f9cda9fa3e7732a0ef72f0c906 Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Fri, 12 Nov 2021 09:29:02 +0800
Subject: [PATCH] Merge branch 'master' of http://192.168.0.105:10010/r/zhba_enterprises
---
src/views/trainingRegistration/data.js | 43 ++++++++++++++++++++++++++++++++++++++-----
1 files changed, 38 insertions(+), 5 deletions(-)
diff --git a/src/views/trainingRegistration/data.js b/src/views/trainingRegistration/data.js
index 5e3c3ba..1a14cec 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: 200,
}, {
label: "姓名",
prop: "userId",
@@ -140,11 +141,16 @@
{
label: "审核状态",
search: true,
+ searchLabelWidth: 110,
type: "select",
searchSpan: 4,
prop: "auditStatus",
- // search: true,
+ searchValue: 4,
dicData: [{
+ label: '全部',
+ value: 0,
+ },
+ {
label: '审核通过',
value: 1,
},
@@ -153,11 +159,11 @@
value: 2,
},
{
- label: '审核中',
+ label: '已提交审核',
value: 3,
},
{
- label: '待审核',
+ label: '未提交审核',
value: 4,
}
],
@@ -167,7 +173,34 @@
},
editDisplay: false,
addDisplay: false,
+ width: 100,
+ },
+ {
+ label: "报名状态",
+ search: true,
+ type: "select",
searchSpan: 4,
+ prop: "cancel",
+ searchValue: 1,
+ dicData: [{
+ label: '全部',
+ value: 0,
+ },
+ {
+ label: '已报名',
+ value: 1,
+ },
+ {
+ label: '已取消',
+ value: 2,
+ }
+ ],
+ props: {
+ label: "label",
+ value: "value"
+ },
+ editDisplay: false,
+ addDisplay: false,
width: 100,
},
// {
--
Gitblit v1.9.3