|
@@ -3,7 +3,14 @@
|
|
width: 160px;
|
|
width: 160px;
|
|
}
|
|
}
|
|
.content {
|
|
.content {
|
|
|
|
+ min-height: 600px;
|
|
|
|
+ padding: 15px;
|
|
|
|
+ margin-right: auto;
|
|
|
|
+ margin-left: auto;
|
|
margin-top: 10px;
|
|
margin-top: 10px;
|
|
|
|
+ padding-left: 15px;
|
|
|
|
+ padding-right: 15px;
|
|
|
|
+ padding-top: 60px;
|
|
}
|
|
}
|
|
small {
|
|
small {
|
|
font-size: 18px;
|
|
font-size: 18px;
|
|
@@ -21,6 +28,11 @@ section {
|
|
.box-body {
|
|
.box-body {
|
|
height: 100%;
|
|
height: 100%;
|
|
width: 100%;
|
|
width: 100%;
|
|
|
|
+ border-top-left-radius: 0;
|
|
|
|
+ border-top-right-radius: 0;
|
|
|
|
+ border-bottom-right-radius: 3px;
|
|
|
|
+ border-bottom-left-radius: 3px;
|
|
|
|
+ padding: 10px;
|
|
}
|
|
}
|
|
.backcolor {
|
|
.backcolor {
|
|
background-color: #ecf0f5;
|
|
background-color: #ecf0f5;
|
|
@@ -31,6 +43,8 @@ li {
|
|
.marktitle {
|
|
.marktitle {
|
|
margin-right: 10px;
|
|
margin-right: 10px;
|
|
margin-bottom: 10px;
|
|
margin-bottom: 10px;
|
|
|
|
+ font-size: 18px;
|
|
|
|
+ font-weight: 700;
|
|
}
|
|
}
|
|
.titlefont {
|
|
.titlefont {
|
|
font-size: 15px;
|
|
font-size: 15px;
|
|
@@ -48,16 +62,39 @@ li {
|
|
.markcount {
|
|
.markcount {
|
|
margin-right: 10px;
|
|
margin-right: 10px;
|
|
}
|
|
}
|
|
-.scroll {
|
|
|
|
- overflow: auto;
|
|
|
|
- height: 450px;
|
|
|
|
-}
|
|
|
|
.reject {
|
|
.reject {
|
|
color: red;
|
|
color: red;
|
|
}
|
|
}
|
|
.marksign {
|
|
.marksign {
|
|
margin-left: 20px;
|
|
margin-left: 20px;
|
|
}
|
|
}
|
|
|
|
+.label-danger {
|
|
|
|
+ background-color: #d9534f;
|
|
|
|
+ color: #fff;
|
|
|
|
+}
|
|
|
|
+.box.box-info {
|
|
|
|
+ border-top-color: #20a0ff;
|
|
|
|
+}
|
|
|
|
+.box {
|
|
|
|
+ position: relative;
|
|
|
|
+ border-radius: 3px;
|
|
|
|
+ border-top: 3px solid #d2d6de;
|
|
|
|
+ margin-bottom: 20px;
|
|
|
|
+ width: 100%;
|
|
|
|
+ height: 700px;
|
|
|
|
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
|
|
|
|
+}
|
|
|
|
+.scoreboard {
|
|
|
|
+ width: 25%;
|
|
|
|
+ border-left: 3px solid #20a0ff;
|
|
|
|
+ min-height: 600px;
|
|
|
|
+}
|
|
|
|
+.pull-right {
|
|
|
|
+ float: right !important;
|
|
|
|
+}
|
|
|
|
+.pull-left {
|
|
|
|
+ float: left !important;
|
|
|
|
+}
|
|
</style>
|
|
</style>
|
|
<template>
|
|
<template>
|
|
<div v-loading="loading" element-loading-text="拼命加载中">
|
|
<div v-loading="loading" element-loading-text="拼命加载中">
|
|
@@ -122,7 +159,8 @@ li {
|
|
<small class="marktitle">
|
|
<small class="marktitle">
|
|
<el-button-group>
|
|
<el-button-group>
|
|
<el-button size="small"
|
|
<el-button size="small"
|
|
- ><span class="titlefont"><i class="fa fa-user"></i></span
|
|
|
|
|
|
+ ><span class="titlefont"
|
|
|
|
+ ><v-icon name="user" style="height:12"/></span
|
|
></el-button>
|
|
></el-button>
|
|
<el-button size="small"
|
|
<el-button size="small"
|
|
><span class="titlefont">{{
|
|
><span class="titlefont">{{
|
|
@@ -133,7 +171,7 @@ li {
|
|
</small>
|
|
</small>
|
|
<small class="marktitle titlefont marksign">
|
|
<small class="marktitle titlefont marksign">
|
|
<el-button type="success" @click="backIndex" size="small">
|
|
<el-button type="success" @click="backIndex" size="small">
|
|
- <i class="fa fa-sign-out"></i>
|
|
|
|
|
|
+ <v-icon name="sign-out-alt" />
|
|
<span class="titlefont">退回 </span>
|
|
<span class="titlefont">退回 </span>
|
|
</el-button>
|
|
</el-button>
|
|
</small>
|
|
</small>
|