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

页面修改

parent a1635d64
......@@ -36,25 +36,31 @@
.Exam_PaperName i {
font-size: 18px;
}
.examPaper .el-table th{
.examPaper .el-table th {
background-color: #F5F6F7;
}
.examPNav{
margin:10px 0;
color:#3A8BFF;
font-size:12px;
.examPNav {
margin: 10px 0;
color: #3A8BFF;
font-size: 12px;
}
.examPNav span{
.examPNav span {
cursor: pointer;
}
.examPNav span:hover{
.examPNav span:hover {
text-decoration: underline;
}
.lastExam{
color:#6B89B3;
cursor: default!important;
.lastExam {
color: #6B89B3;
cursor: default !important;
pointer-events: none;
}
</style>
<!--试卷库管理-->
<template>
......@@ -86,25 +92,24 @@
</div>
<div class="page-content examPaper">
<div v-if="navList&&navList.length>0" class="examPNav">
<span @click="getPaperChild(0)">全部</span> >
<template v-for="(item,index) in navList">
<span @click="getPaperChild(item.PaperId)" :class="{'lastExam':index==navList.length-1}" :key="index">
{{item.PaperName}}
</span>
<span v-if="index!=navList.length-1" :key="index">></span>
</template>
<span @click="getPaperChild(0)">全部</span> >
<template v-for="(item,index) in navList">
<span @click="getPaperChild(item.PaperId)" :class="{'lastExam':index==navList.length-1}" :key="index">
{{item.PaperName}}
</span>
<span v-if="index!=navList.length-1" :key="index">></span>
</template>
</div>
<el-table :data="dataList" v-loading="loading">
<el-table-column prop="PaperName" label="文件夹/试卷" width="400">
<template slot-scope="scope">
<div class="Exam_PaperName">
<i v-if="scope.row.PaperType==1" title="文件夹" class="iconfont icon-weibiaoti5"
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==1" title="文件夹" class="iconfont icon-weibiaoti5" 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">
<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 v-else>
{{ scope.row.PaperName }}
......@@ -155,6 +160,16 @@
{{ scope.row.CreateTimeStr }}
</template>
</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="操作">
<template slot-scope="scope">
<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