|
|
@ -4,12 +4,11 @@ |
|
|
|
<el-container class="scrollbar" |
|
|
|
<el-container class="scrollbar" |
|
|
|
id="container" |
|
|
|
id="container" |
|
|
|
v-show="pannelVisible"> |
|
|
|
v-show="pannelVisible"> |
|
|
|
<el-header id="header"> |
|
|
|
<el-header class="panel-header" |
|
|
|
<div class="panel-header" |
|
|
|
|
|
|
|
id="panelHeader"> |
|
|
|
id="panelHeader"> |
|
|
|
<div class="project"> |
|
|
|
<div class="project"> |
|
|
|
<div class="inline-center"> |
|
|
|
<div class="inline-center"> |
|
|
|
<p>实训项目</p> |
|
|
|
<p class="whitespace-nowrap">实训项目</p> |
|
|
|
<el-tooltip effect="dark" |
|
|
|
<el-tooltip effect="dark" |
|
|
|
content="点击右侧“下三角”按钮可切换实验项目" |
|
|
|
content="点击右侧“下三角”按钮可切换实验项目" |
|
|
|
placement="bottom"> |
|
|
|
placement="bottom"> |
|
|
@ -45,7 +44,7 @@ |
|
|
|
<span class="total-score">{{grade}}</span> |
|
|
|
<span class="total-score">{{grade}}</span> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div> |
|
|
|
<div class="actions"> |
|
|
|
<el-button @click="toggleReport" |
|
|
|
<el-button @click="toggleReport" |
|
|
|
v-if="$parent.language && !isSubmit && !competitionId">填写实验报告</el-button> |
|
|
|
v-if="$parent.language && !isSubmit && !competitionId">填写实验报告</el-button> |
|
|
|
<el-button @click="toReport" |
|
|
|
<el-button @click="toReport" |
|
|
@ -58,7 +57,6 @@ |
|
|
|
@click="confirmSubmit" |
|
|
|
@click="confirmSubmit" |
|
|
|
:disabled="isSubmit || !projectList.length">提交</el-button> |
|
|
|
:disabled="isSubmit || !projectList.length">提交</el-button> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
|
|
|
|
</el-header> |
|
|
|
</el-header> |
|
|
|
<div class="report-wrap" |
|
|
|
<div class="report-wrap" |
|
|
|
v-if="reportVisible"> |
|
|
|
v-if="reportVisible"> |
|
|
@ -1322,6 +1320,8 @@ export default { |
|
|
|
display: flex; |
|
|
|
display: flex; |
|
|
|
justify-content: space-between; |
|
|
|
justify-content: space-between; |
|
|
|
align-items: center; |
|
|
|
align-items: center; |
|
|
|
|
|
|
|
flex-wrap: wrap; |
|
|
|
|
|
|
|
height: auto !important; |
|
|
|
.project { |
|
|
|
.project { |
|
|
|
display: inline-flex; |
|
|
|
display: inline-flex; |
|
|
|
align-items: center; |
|
|
|
align-items: center; |
|
|
@ -1360,6 +1360,9 @@ export default { |
|
|
|
background-color: #202020; |
|
|
|
background-color: #202020; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.whitespace-nowrap { |
|
|
|
|
|
|
|
white-space: nowrap; |
|
|
|
|
|
|
|
} |
|
|
|
/deep/.des { |
|
|
|
/deep/.des { |
|
|
|
font-size: 16px; |
|
|
|
font-size: 16px; |
|
|
|
font-family: 'Microsoft YaHei'; |
|
|
|
font-family: 'Microsoft YaHei'; |
|
|
@ -1483,6 +1486,7 @@ export default { |
|
|
|
font-size: 14px; |
|
|
|
font-size: 14px; |
|
|
|
} |
|
|
|
} |
|
|
|
/deep/.select { |
|
|
|
/deep/.select { |
|
|
|
|
|
|
|
min-width: 180px; |
|
|
|
.el-select__caret:before { |
|
|
|
.el-select__caret:before { |
|
|
|
content: '\e78f'; |
|
|
|
content: '\e78f'; |
|
|
|
padding: 3px; |
|
|
|
padding: 3px; |
|
|
@ -1603,4 +1607,21 @@ export default { |
|
|
|
.text-danger { |
|
|
|
.text-danger { |
|
|
|
color: #f56c6c; |
|
|
|
color: #f56c6c; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@media (max-width: 1550px) { |
|
|
|
|
|
|
|
.panel-header { |
|
|
|
|
|
|
|
.count { |
|
|
|
|
|
|
|
margin-left: 0; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
@media (max-width: 1400px) { |
|
|
|
|
|
|
|
.panel-header { |
|
|
|
|
|
|
|
.actions { |
|
|
|
|
|
|
|
position: absolute; |
|
|
|
|
|
|
|
top: 70px; |
|
|
|
|
|
|
|
right: 30px; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
</style> |
|
|
|
</style> |