修改考试申请页面

This commit is contained in:
wans 2021-05-12 14:18:13 +08:00
parent 9e405052a8
commit 42e52ee711
2 changed files with 23 additions and 5 deletions

22
pom.xml
View File

@ -103,11 +103,29 @@
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<!--<dependency> <dependency>
<artifactId>module-organization-management</artifactId>
<groupId>cn.com.tenlion</groupId>
<version>1.0-SNAPSHOT</version>
</dependency>
<dependency>
<artifactId>module-institution-management</artifactId>
<groupId>cn.com.tenlion</groupId>
<version>1.0-SNAPSHOT</version>
</dependency>
<dependency>
<artifactId>module-building-pictures</artifactId> <artifactId>module-building-pictures</artifactId>
<groupId>cn.com.tenlion</groupId> <groupId>cn.com.tenlion</groupId>
<version>1.0-SNAPSHOT</version> <version>1.0-SNAPSHOT</version>
</dependency>--> </dependency>
<dependency>
<artifactId>module-staff</artifactId>
<groupId>cn.com.tenlion</groupId>
<version>1.0-SNAPSHOT</version>
</dependency>
</dependencies> </dependencies>
<build> <build>

View File

@ -138,7 +138,7 @@
} }
}, },
{field: 'planNumber', width: 180, title: '培训计划编号', align:'center', {field: 'planNumber', width: 200, title: '培训计划编号', align:'center',
templet: function(row) { templet: function(row) {
var rowData = row[this.field]; var rowData = row[this.field];
if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') { if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') {
@ -159,10 +159,10 @@
if(rowData == '1'){ if(rowData == '1'){
return '初训'; return '初训';
} }
if(rowData == '1'){ if(rowData == '2'){
return '复训'; return '复训';
} }
if(rowData == '1'){ if(rowData == '3'){
return '换证'; return '换证';
} }
return '-'; return '-';