Commit 53cdc553 authored by 黄奎's avatar 黄奎
parents 913727d8 b2575784
...@@ -16,6 +16,7 @@ ...@@ -16,6 +16,7 @@
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
align-items: center; align-items: center;
margin-top:10px;
} }
.v_readingComprehensioQuestion .clozeTest_question_tit i { .v_readingComprehensioQuestion .clozeTest_question_tit i {
...@@ -44,7 +45,7 @@ ...@@ -44,7 +45,7 @@
<tbody> <tbody>
<tr> <tr>
<td colspan="3"> <td colspan="3">
<div v-html="item.SubTitle"></div> <div style="margin:16px 0;" v-html="item.SubTitle"></div>
</td> </td>
</tr> </tr>
<!--选择题--> <!--选择题-->
......
...@@ -209,8 +209,8 @@ ...@@ -209,8 +209,8 @@
<div v-for="(item,index) in x.lsMsg" :key="index+'a1'" class="weekstyle2_item" <div v-for="(item,index) in x.lsMsg" :key="index+'a1'" class="weekstyle2_item"
style="width: 100%;;display: flex;flex-direction: column;align-items: center;border-bottom: 1px solid #e8e8e8;"> style="width: 100%;;display: flex;flex-direction: column;align-items: center;border-bottom: 1px solid #e8e8e8;">
<div>{{item.StartHours}}~{{item.EndHours}}</div> <div>{{item.StartHours}}~{{item.EndHours}}</div>
<el-tooltip class="item" effect="dark" :content="item.EmpName" placement="top"> <el-tooltip class="item" effect="dark" :content="item.EmpName" placement="top" v-if="item.EmpName!=''">
<div <div v-if="item.EmpName!=''"
style="width: 100%; overflow: hidden; white-space: nowrap;text-overflow: ellipsis;cursor: pointer;text-align: center;"> style="width: 100%; overflow: hidden; white-space: nowrap;text-overflow: ellipsis;cursor: pointer;text-align: center;">
<span>{{item.EmpName}}</span> <span>{{item.EmpName}}</span>
</div> </div>
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
.Exam-main { .Exam-main {
height: auto !important; height: auto !important;
overflow: hidden; overflow: hidden;
margin: 20px 100px; margin: 0 100px;
} }
.Exam-left { .Exam-left {
...@@ -263,11 +263,13 @@ ...@@ -263,11 +263,13 @@
<div class="pGNameDiv"><span class="pGroupName">{{NoToChinese(gIndex+1)}}{{gItem.GroupName}}</span> (共 <div class="pGNameDiv"><span class="pGroupName">{{NoToChinese(gIndex+1)}}{{gItem.GroupName}}</span> (共
{{gItem.DetailsList.length}} 题,{{gItem.GScore}}分)</div> {{gItem.DetailsList.length}} 题,{{gItem.GScore}}分)</div>
<div v-for="(dItem,dIndex) in gItem.DetailsList" :key="dIndex"> <div v-for="(dItem,dIndex) in gItem.DetailsList" :key="dIndex">
<div style="display:flex;align-items:top;margin:20px 0;">
<span>{{dIndex+1}}</span> <span>{{dIndex+1}}</span>
<span class="paper_Title" v-html="dItem.Title"></span> <span class="paper_Title" v-html="dItem.Title"></span>
<span style="margin:10px 0;display:inline-block;"> <span style="display:inline-block;min-width:40px;">
({{dItem.Score}}分) ({{dItem.Score}}分)
</span> </span>
</div>
<!--单选题--> <!--单选题-->
<v-single v-if="dItem.QuestionTypeKey=='single'||dItem.QuestionTypeKey=='single-number'" <v-single v-if="dItem.QuestionTypeKey=='single'||dItem.QuestionTypeKey=='single-number'"
:questionObj="dItem" :isShowAnswer="isShowAnswer"> :questionObj="dItem" :isShowAnswer="isShowAnswer">
......
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