|
@@ -2,6 +2,12 @@
|
|
|
<div class="app-container calendar-list-container">
|
|
|
<!-- 查询和其他操作 -->
|
|
|
<div class="filter-container">
|
|
|
+ <el-input clearable class="filter-item" style="width: 200px;" placeholder="证书类型"
|
|
|
+ v-model="listQuery.name"></el-input>
|
|
|
+ <el-input clearable class="filter-item" style="width: 200px;" placeholder="证书名称"
|
|
|
+ v-model="listQuery.title"></el-input>
|
|
|
+ <el-input clearable class="filter-item" style="width: 200px;" placeholder="上传人"
|
|
|
+ v-model="listQuery.userName"></el-input>
|
|
|
<el-select v-model="listQuery.status" clearable placeholder="审批状态" style="top: -4px; width: 200px">
|
|
|
<el-option :key="item.type" v-for="item in statusTypeList" :label="item.name" :value="item.type">
|
|
|
</el-option>
|
|
@@ -14,16 +20,18 @@
|
|
|
element-loading-text="正在查询中。。。" border fit highlight-current-row>
|
|
|
<el-table-column type="index" label="序号" header-align="center" align="center">
|
|
|
</el-table-column>
|
|
|
- <el-table-column align="center" min-width="200px" label="证书">
|
|
|
+ <el-table-column align="center" min-width="200px" label="附件">
|
|
|
<template slot-scope="props">
|
|
|
<div v-for="(item, index) in props.row.files" :key="index">
|
|
|
<a style="color: #1e80ff;" target="_blank" :href="item.url">{{ item.oldName }}</a>
|
|
|
</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column align="center" min-width="150px" label="类型" prop="typeName">
|
|
|
+ <el-table-column align="center" min-width="150px" label="证书大类" prop="typeName">
|
|
|
</el-table-column>
|
|
|
- <el-table-column align="center" prop="categoryName" min-width="100" label="名称">
|
|
|
+ <el-table-column align="center" prop="categoryName" min-width="100" label="证书类型">
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column align="center" prop="title" min-width="100" label="证书名称">
|
|
|
</el-table-column>
|
|
|
<el-table-column align="center" min-width="80px" label="上传人" prop="userName">
|
|
|
</el-table-column>
|
|
@@ -125,6 +133,9 @@
|
|
|
listQuery: {
|
|
|
page: 1,
|
|
|
limit: 10,
|
|
|
+ name:'',
|
|
|
+ title:'',
|
|
|
+ userName:'',
|
|
|
status: "",
|
|
|
},
|
|
|
};
|