Commit 5ad4fadb authored by 黄奎's avatar 黄奎

页面修改

parent a1635d64
...@@ -36,25 +36,31 @@ ...@@ -36,25 +36,31 @@
.Exam_PaperName i { .Exam_PaperName i {
font-size: 18px; font-size: 18px;
} }
.examPaper .el-table th{
.examPaper .el-table th {
background-color: #F5F6F7; background-color: #F5F6F7;
} }
.examPNav{
margin:10px 0; .examPNav {
color:#3A8BFF; margin: 10px 0;
font-size:12px; color: #3A8BFF;
font-size: 12px;
} }
.examPNav span{
.examPNav span {
cursor: pointer; cursor: pointer;
} }
.examPNav span:hover{
.examPNav span:hover {
text-decoration: underline; text-decoration: underline;
} }
.lastExam{
color:#6B89B3; .lastExam {
cursor: default!important; color: #6B89B3;
cursor: default !important;
pointer-events: none; pointer-events: none;
} }
</style> </style>
<!--试卷库管理--> <!--试卷库管理-->
<template> <template>
...@@ -86,25 +92,24 @@ ...@@ -86,25 +92,24 @@
</div> </div>
<div class="page-content examPaper"> <div class="page-content examPaper">
<div v-if="navList&&navList.length>0" class="examPNav"> <div v-if="navList&&navList.length>0" class="examPNav">
<span @click="getPaperChild(0)">全部</span> > <span @click="getPaperChild(0)">全部</span> >
<template v-for="(item,index) in navList"> <template v-for="(item,index) in navList">
<span @click="getPaperChild(item.PaperId)" :class="{'lastExam':index==navList.length-1}" :key="index"> <span @click="getPaperChild(item.PaperId)" :class="{'lastExam':index==navList.length-1}" :key="index">
{{item.PaperName}} {{item.PaperName}}
</span> </span>
<span v-if="index!=navList.length-1" :key="index">></span> <span v-if="index!=navList.length-1" :key="index">></span>
</template> </template>
</div> </div>
<el-table :data="dataList" v-loading="loading"> <el-table :data="dataList" v-loading="loading">
<el-table-column prop="PaperName" label="文件夹/试卷" width="400"> <el-table-column prop="PaperName" label="文件夹/试卷" width="400">
<template slot-scope="scope"> <template slot-scope="scope">
<div class="Exam_PaperName"> <div class="Exam_PaperName">
<i v-if="scope.row.PaperType==1" title="文件夹" class="iconfont icon-weibiaoti5" <i v-if="scope.row.PaperType==1" title="文件夹" class="iconfont icon-weibiaoti5" style="color:#85CDFD;"></i>
style="color:#85CDFD;"></i> <i v-if="scope.row.PaperType==2" title="试卷" class="iconfont icon-icon-test1" style="color:#85CDFD;"></i>
<i v-if="scope.row.PaperType==2" title="试卷" class="iconfont icon-icon-test1"
style="color:#85CDFD;"></i>
<div class="Exam_PaperName"> <div class="Exam_PaperName">
<template v-if="scope.row.PaperType==1"> <template v-if="scope.row.PaperType==1">
<span style="cursor:pointer;" @click="getPaperChild(scope.row.PaperId)"> {{ scope.row.PaperName }}</span> <span style="cursor:pointer;" @click="getPaperChild(scope.row.PaperId)">
{{ scope.row.PaperName }}</span>
</template> </template>
<template v-else> <template v-else>
{{ scope.row.PaperName }} {{ scope.row.PaperName }}
...@@ -155,6 +160,16 @@ ...@@ -155,6 +160,16 @@
{{ scope.row.CreateTimeStr }} {{ scope.row.CreateTimeStr }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="ReviewerName" label="审核人">
<template slot-scope="scope">
{{ scope.row.ReviewerName }}
</template>
</el-table-column>
<el-table-column prop="ExamineStatusStr" label="审核状态">
<template slot-scope="scope">
{{ scope.row.ExamineStatusStr }}
</template>
</el-table-column>
<el-table-column label="操作"> <el-table-column label="操作">
<template slot-scope="scope"> <template slot-scope="scope">
<template v-if="scope.row.PaperType==1"> <template v-if="scope.row.PaperType==1">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment