|
|
@@ -59,7 +59,11 @@
|
|
|
<el-table class="table-box" border :data="dataList">
|
|
|
<el-table-column label="序号" type="index" align="center" width="50"/>
|
|
|
<el-table-column label="证书模板名称" prop="templateName" show-overflow-tooltip/>
|
|
|
- <el-table-column label="适用考试类型" prop="examTypeName" width="200" show-overflow-tooltip/>
|
|
|
+ <el-table-column label="证书类型" prop="templateType" width="200" show-overflow-tooltip>
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span>{{scope.row.templateType==1?'考试证书':'培训证书'}}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="是否共享" prop="shareStatus" width="120" show-overflow-tooltip>
|
|
|
<template slot-scope="scope">
|
|
|
<span style="padding:2px 10px;border:1px solid rgb(1, 131, 251);border-radius:4px;color: rgb(1, 131, 251);background-color:rgba(1, 131, 251,0.2)" v-if="scope.row.shareStatus === 1">共享</span>
|