|
|
@ -64,7 +64,7 @@ |
|
|
|
<div v-else class="score-wrap"> |
|
|
|
<div v-else class="score-wrap"> |
|
|
|
<em>{{ info.score }}</em> |
|
|
|
<em>{{ info.score }}</em> |
|
|
|
<img src="@/assets/img/point.png" alt=""> |
|
|
|
<img src="@/assets/img/point.png" alt=""> |
|
|
|
<p v-if="essayExist" class="exist">(部分试题待判分,成绩待定)</p> |
|
|
|
<p v-if="notReview" class="exist">(部分试题待判分,成绩待定)</p> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</li> |
|
|
|
</li> |
|
|
|
<li> |
|
|
|
<li> |
|
|
@ -96,14 +96,16 @@ |
|
|
|
</el-table-column> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column prop="userTotalScore" label="得分" align="center"> |
|
|
|
<el-table-column prop="userTotalScore" label="得分" align="center"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<p v-if="scope.row.questionType === 'essay'" class="text-red">待评分</p> |
|
|
|
<p v-if="scope.row.questionType === 'essay' && scope.row.scoringStatus === '未判分'" class="text-red">待评分 |
|
|
|
<p v-else-if="essayExist && !scope.row.paperId" class="text-red">{{ scope.row.userTotalScore |
|
|
|
</p> |
|
|
|
|
|
|
|
<p v-else-if="notReview && !scope.row.paperId" class="text-red">{{ scope.row.userTotalScore |
|
|
|
}}分(部分试题待判分,成绩待定)</p> |
|
|
|
}}分(部分试题待判分,成绩待定)</p> |
|
|
|
<p v-else>{{ scope.row.userTotalScore }}分</p> |
|
|
|
<p v-else>{{ scope.row.userTotalScore }}分</p> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column prop="scoreRatePercentage" label="得分率" align="center"> |
|
|
|
<el-table-column prop="scoreRatePercentage" label="得分率" align="center"> |
|
|
|
<template slot-scope="scope">{{ scope.row.questionType === 'essay' ? '-' : scope.row.scoreRatePercentage |
|
|
|
<template slot-scope="scope">{{ scope.row.questionType === 'essay' && scope.row.scoringStatus === '未判分' |
|
|
|
|
|
|
|
? '-' : scope.row.scoreRatePercentage |
|
|
|
}}</template> |
|
|
|
}}</template> |
|
|
|
</el-table-column> |
|
|
|
</el-table-column> |
|
|
|
</el-table> |
|
|
|
</el-table> |
|
|
@ -127,16 +129,18 @@ |
|
|
|
<el-tag class="m-r-5" :type="ques.difficultTheme">{{ ques.difficult }}</el-tag> |
|
|
|
<el-tag class="m-r-5" :type="ques.difficultTheme">{{ ques.difficult }}</el-tag> |
|
|
|
|
|
|
|
|
|
|
|
<div class="stem html-parse" :id="'stem' + ques.id" v-html="ques.stem"></div> |
|
|
|
<div class="stem html-parse" :id="'stem' + ques.id" v-html="ques.stem"></div> |
|
|
|
<p>({{ ques.questionScore }}分)</p> |
|
|
|
<p v-if="!ques.notScored">({{ ques.questionScore }}分)</p> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|
<div |
|
|
|
<div |
|
|
|
v-if="item.questionType !== 'fill_blank' && item.questionType !== 'essay' && ques.questionAnswerVersionsList" |
|
|
|
v-if="item.questionType !== 'fill_blank' && item.questionType !== 'essay' && ques.questionAnswerVersionsList" |
|
|
|
class="m-b-10"> |
|
|
|
class="m-b-10"> |
|
|
|
<div v-for="(opt, j) in ques.questionAnswerVersionsList" :key="j" class="opt"> |
|
|
|
<div v-for="(opt, j) in ques.questionAnswerVersionsList" :key="j" class="opt"> |
|
|
|
<img v-if="opt.optCorrect === 1" src="@/assets/img/right.svg" alt="" class="icon"> |
|
|
|
<template v-if="!ques.notScored"> |
|
|
|
<img v-else-if="!opt.optCorrect" src="@/assets/img/wrong.svg" alt="" class="icon"> |
|
|
|
<img v-if="opt.optCorrect === 1" src="@/assets/img/right.svg" alt="" class="icon"> |
|
|
|
<span v-else class="icon not-ans"></span> |
|
|
|
<img v-else-if="!opt.optCorrect" src="@/assets/img/wrong.svg" alt="" class="icon"> |
|
|
|
|
|
|
|
<span v-else class="icon not-ans"></span> |
|
|
|
|
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
|
|
<span>{{ numToLetter(j) }}. </span> |
|
|
|
<span>{{ numToLetter(j) }}. </span> |
|
|
|
<div class="text html-parse" v-html="opt.optionText"></div> |
|
|
|
<div class="text html-parse" v-html="opt.optionText"></div> |
|
|
@ -156,37 +160,46 @@ |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
|
|
<div v-if="ques.knowledgePointList && ques.knowledgePointList.length" class="m-b-10"> |
|
|
|
<div v-if="ques.knowledgePointList && ques.knowledgePointList.length" class="m-b-10"> |
|
|
|
<span>【知识点】</span> |
|
|
|
<span class="line-label">【知识点】</span> |
|
|
|
<el-tag v-for="(kp, k) in ques.knowledgePointList" :key="k" class="m-r-5" type="info">{{ kp.name |
|
|
|
<el-tag v-for="(kp, k) in ques.knowledgePointList" :key="k" class="m-r-5" type="info">{{ kp.name |
|
|
|
}}</el-tag> |
|
|
|
}}</el-tag> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div class="flex m-b-10"> |
|
|
|
<div class="flex m-b-10"> |
|
|
|
<span>【解析】</span> |
|
|
|
<span class="line-label">【解析】</span> |
|
|
|
<div |
|
|
|
<div |
|
|
|
v-if="ques.questionAnswerVersionsList.length && ques.questionAnswerVersionsList[0].answerAnalysis" |
|
|
|
v-if="ques.questionAnswerVersionsList.length && ques.questionAnswerVersionsList[0].answerAnalysis" |
|
|
|
v-html="ques.questionAnswerVersionsList[0].answerAnalysis" class="html-parse"></div> |
|
|
|
v-html="ques.questionAnswerVersionsList[0].answerAnalysis" class="html-parse"></div> |
|
|
|
<div v-else>暂无解析</div> |
|
|
|
<div v-else>暂无解析</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|
<div :class="['ques-info', { essay: item.questionType === 'essay' }]"> |
|
|
|
<div |
|
|
|
|
|
|
|
:class="['ques-info', { essay: item.questionType === 'essay' && ques.scoringStatus === '未判分' && !ques.notScored }]"> |
|
|
|
|
|
|
|
<!-- 主观题 --> |
|
|
|
<template v-if="item.questionType === 'essay'"> |
|
|
|
<template v-if="item.questionType === 'essay'"> |
|
|
|
<div class="line"> |
|
|
|
<div class="line"> |
|
|
|
<span class="line-label">参考答案:</span> |
|
|
|
<span class="line-label">参考答案:</span> |
|
|
|
<div v-html="ques.questionAnswerVersionsList[0].referenceAnswer" class="html-parse"></div> |
|
|
|
<div v-if="ques.questionAnswerVersionsList[0].referenceAnswer" |
|
|
|
|
|
|
|
v-html="ques.questionAnswerVersionsList[0].referenceAnswer" class="html-parse"></div> |
|
|
|
|
|
|
|
<span v-else>暂无参考答案</span> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div class="line"> |
|
|
|
<div class="line"> |
|
|
|
<span class="line-label">考生答案:</span> |
|
|
|
<span class="line-label">考生答案:</span> |
|
|
|
<div v-if="ques.answerContent" v-html="ques.answerContent" class="html-parse"></div> |
|
|
|
<p v-if="!ques.richTextStatus">无需作答</p> |
|
|
|
<div v-else>未作答</div> |
|
|
|
<div v-else-if="ques.answerContent" v-html="ques.answerContent" class="html-parse"></div> |
|
|
|
|
|
|
|
<p v-else>未作答</p> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div v-if="ques.attachmentUrl" class="line"> |
|
|
|
<div v-if="ques.allowAttachment" class="line"> |
|
|
|
<span class="line-label">考生上传附件:</span> |
|
|
|
<span class="line-label">考生上传附件:</span> |
|
|
|
<el-link class="m-r-10" type="primary" @click="preview(ques.attachmentUrl)">{{ |
|
|
|
<template v-if="ques.attachmentUrl"> |
|
|
|
ques.attachmentName }}</el-link> |
|
|
|
<el-link class="m-r-10" type="primary" @click="preview(ques.attachmentUrl)">{{ |
|
|
|
<el-button type="primary" size="mini" round |
|
|
|
ques.attachmentName }}</el-link> |
|
|
|
@click="download(ques.attachmentName, ques.attachmentUrl)">下载</el-button> |
|
|
|
<el-button type="primary" size="mini" round |
|
|
|
|
|
|
|
@click="download(ques.attachmentName, ques.attachmentUrl)">下载</el-button> |
|
|
|
|
|
|
|
</template> |
|
|
|
|
|
|
|
<span v-else>未上传</span> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
|
|
|
|
<!-- 客观题 --> |
|
|
|
<template v-else> |
|
|
|
<template v-else> |
|
|
|
<div class="line">正确答案:{{ ques.quesAnswer }}</div> |
|
|
|
<div class="line">正确答案:{{ ques.quesAnswer }}</div> |
|
|
|
<div class="line"> |
|
|
|
<div class="line"> |
|
|
@ -195,16 +208,26 @@ |
|
|
|
<div v-else-if="ques.userAnswerFill" class="fill-answers"> |
|
|
|
<div v-else-if="ques.userAnswerFill" class="fill-answers"> |
|
|
|
<p v-for="(ans, j) in ques.userAnswerFill" :key="j" class="fill-answer"> |
|
|
|
<p v-for="(ans, j) in ques.userAnswerFill" :key="j" class="fill-answer"> |
|
|
|
填空{{ j + 1 }}:{{ ans.studentAnswer || '未作答' }} |
|
|
|
填空{{ j + 1 }}:{{ ans.studentAnswer || '未作答' }} |
|
|
|
<img v-if="ans.correct" src="@/assets/img/right.svg" alt="" class="icon"> |
|
|
|
<template v-if="!ques.notScored"> |
|
|
|
<img v-else src="@/assets/img/wrong.svg" alt="" class="icon">; |
|
|
|
<img v-if="ans.correct" src="@/assets/img/right.svg" alt="" class="icon"> |
|
|
|
|
|
|
|
<img v-else src="@/assets/img/wrong.svg" alt="" class="icon"> |
|
|
|
|
|
|
|
</template>; |
|
|
|
</p> |
|
|
|
</p> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
|
|
|
|
<span v-else>未作答</span> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
|
|
<div class="line">题目分值:{{ ques.questionScore }}分</div> |
|
|
|
<div class="line">题目分值:{{ ques.notScored ? '不计分' : ques.questionScore + '分' }}</div> |
|
|
|
<div class="line">考生得分:<el-input class="score-input" size="small" :value="ques.userScore" |
|
|
|
<div class="line">考生得分:<template v-if="ques.notScored">不计分</template> |
|
|
|
disabled />分 |
|
|
|
<template v-else> |
|
|
|
|
|
|
|
<el-input class="score-input" size="small" :value="ques.userScore" disabled />分 |
|
|
|
|
|
|
|
</template> |
|
|
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div v-for="(coment, k) in ques.comment" :key="k" class="line"> |
|
|
|
|
|
|
|
<span class="line-label">评语{{ k + 1 }}:</span> |
|
|
|
|
|
|
|
<div v-html="coment" class="html-parse"></div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
@ -280,10 +303,15 @@ export default { |
|
|
|
id: 4, |
|
|
|
id: 4, |
|
|
|
name: '待判分' |
|
|
|
name: '待判分' |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
id: 5, |
|
|
|
|
|
|
|
name: '不计分' |
|
|
|
|
|
|
|
}, |
|
|
|
], |
|
|
|
], |
|
|
|
outlines: [], |
|
|
|
outlines: [], |
|
|
|
paper: [], |
|
|
|
paper: [], |
|
|
|
essayExist: 0, |
|
|
|
essayExist: 0, |
|
|
|
|
|
|
|
notReview: 0, |
|
|
|
previewImgVisible: false, |
|
|
|
previewImgVisible: false, |
|
|
|
previewImg: '', |
|
|
|
previewImg: '', |
|
|
|
pdfVisible: false, |
|
|
|
pdfVisible: false, |
|
|
@ -305,8 +333,12 @@ export default { |
|
|
|
const { questionTypes: types, difficults } = QuesConst |
|
|
|
const { questionTypes: types, difficults } = QuesConst |
|
|
|
const { numToLetter } = Util |
|
|
|
const { numToLetter } = Util |
|
|
|
let essayExist = 0 |
|
|
|
let essayExist = 0 |
|
|
|
|
|
|
|
let notReview = 0 |
|
|
|
outline.map(e => { |
|
|
|
outline.map(e => { |
|
|
|
if (e.questionType === 'essay') essayExist = 1 |
|
|
|
if (e.questionType === 'essay') { |
|
|
|
|
|
|
|
essayExist = 1 |
|
|
|
|
|
|
|
if (e.scoringStatus === '未判分') notReview = 1 |
|
|
|
|
|
|
|
} |
|
|
|
e.shrink = false |
|
|
|
e.shrink = false |
|
|
|
const type = e.questionType |
|
|
|
const type = e.questionType |
|
|
|
e.questionTypeName = types.find(n => n.id === type).name |
|
|
|
e.questionTypeName = types.find(n => n.id === type).name |
|
|
@ -319,10 +351,12 @@ export default { |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
n.notScored = n.questionScore === 0 // 不计分(题目分值=0,则为不计分) |
|
|
|
|
|
|
|
if (n.notScored) n.userScore = '-' |
|
|
|
const opts = n.questionAnswerVersionsList |
|
|
|
const opts = n.questionAnswerVersionsList |
|
|
|
if (type !== 'fill_blank' && type !== 'essay') { // 选择题 |
|
|
|
if (type !== 'fill_blank' && type !== 'essay') { // 选择题 |
|
|
|
if (!n.userScore) n.userScore = 0 |
|
|
|
if (!n.userScore) n.userScore = 0 |
|
|
|
n.isCorrect = n.userScore && n.userScore === n.questionScore ? 1 : 2 |
|
|
|
this.handleIsCorrect(n) |
|
|
|
|
|
|
|
|
|
|
|
// 用户选择结果 |
|
|
|
// 用户选择结果 |
|
|
|
let { userAnswer } = n |
|
|
|
let { userAnswer } = n |
|
|
@ -367,14 +401,15 @@ export default { |
|
|
|
// 填空题需要区分部分正确还是正确、错误 |
|
|
|
// 填空题需要区分部分正确还是正确、错误 |
|
|
|
let rightLen = 0 |
|
|
|
let rightLen = 0 |
|
|
|
if (n.userAnswerFill) rightLen = n.userAnswerFill.filter(m => m.correct).length // 正确的空的数量 |
|
|
|
if (n.userAnswerFill) rightLen = n.userAnswerFill.filter(m => m.correct).length // 正确的空的数量 |
|
|
|
n.isCorrect = n.userScore && n.questionScore === n.userScore ? 1 : (rightLen ? 3 : 2) |
|
|
|
n.isCorrect = n.notScored ? 5 : (n.userScore && n.questionScore === n.userScore ? 1 : (rightLen ? 3 : 2)) |
|
|
|
} else if (type === 'essay') { // 简答题 |
|
|
|
} else if (type === 'essay') { // 简答题 |
|
|
|
n.isCorrect = 4 // 简答题显示待判分 |
|
|
|
this.handleIsCorrect(n) |
|
|
|
} |
|
|
|
} |
|
|
|
}) |
|
|
|
}) |
|
|
|
}) |
|
|
|
}) |
|
|
|
|
|
|
|
|
|
|
|
this.essayExist = essayExist // 是否存在简答题 |
|
|
|
this.essayExist = essayExist // 是否存在简答题 |
|
|
|
|
|
|
|
this.notReview = notReview // 是否存在未判分的简答题 |
|
|
|
this.paper = outline |
|
|
|
this.paper = outline |
|
|
|
this.outlines = [ |
|
|
|
this.outlines = [ |
|
|
|
...outline, |
|
|
|
...outline, |
|
|
@ -402,6 +437,10 @@ export default { |
|
|
|
this.loading = false |
|
|
|
this.loading = false |
|
|
|
} |
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
// 判断试题的对错 |
|
|
|
|
|
|
|
handleIsCorrect (n) { |
|
|
|
|
|
|
|
n.isCorrect = n.notScored ? 5 : (n.userScore === undefined ? 4 : (n.userScore === n.questionScore ? 1 : n.userScore ? 3 : 2)) // 简答题没有reviewScore则显示待判分, 有则判断是否跟题目分数相同,完全相同是正确,小于则部分正确,0则错误 |
|
|
|
|
|
|
|
}, |
|
|
|
scrollToSmooth (position, duration) { |
|
|
|
scrollToSmooth (position, duration) { |
|
|
|
let startTime = Date.now() |
|
|
|
let startTime = Date.now() |
|
|
|
|
|
|
|
|
|
|
@ -464,10 +503,44 @@ export default { |
|
|
|
</script> |
|
|
|
</script> |
|
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped> |
|
|
|
<style lang="scss" scoped> |
|
|
|
|
|
|
|
.wrap { |
|
|
|
|
|
|
|
padding: 10px; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.text-right { |
|
|
|
|
|
|
|
text-align: right; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.text-red { |
|
|
|
.text-red { |
|
|
|
color: #f00; |
|
|
|
color: #f00; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
code, |
|
|
|
|
|
|
|
kbd, |
|
|
|
|
|
|
|
samp { |
|
|
|
|
|
|
|
font-family: 'PingFang SC', 'Helvetica Neue', Helvetica, 'microsoft yahei', arial, STHeiTi, sans-serif; |
|
|
|
|
|
|
|
word-wrap: break-word; |
|
|
|
|
|
|
|
white-space: pre-wrap; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/deep/ pre { |
|
|
|
|
|
|
|
white-space: pre-wrap; |
|
|
|
|
|
|
|
/* css-3 */ |
|
|
|
|
|
|
|
white-space: -moz-pre-wrap; |
|
|
|
|
|
|
|
/* Mozilla, since 1999 */ |
|
|
|
|
|
|
|
white-space: pre-wrap; |
|
|
|
|
|
|
|
/* Opera 4-6 */ |
|
|
|
|
|
|
|
white-space: -o-pre-wrap; |
|
|
|
|
|
|
|
/* Opera 7 */ |
|
|
|
|
|
|
|
word-wrap: break-word; |
|
|
|
|
|
|
|
/* Internet Explorer 5.5+ */ |
|
|
|
|
|
|
|
word-break: break-all; |
|
|
|
|
|
|
|
overflow: hidden; |
|
|
|
|
|
|
|
font-size: 12px; |
|
|
|
|
|
|
|
font-weight: 400; |
|
|
|
|
|
|
|
font-family: 'PingFang SC', 'Helvetica Neue', Helvetica, 'microsoft yahei', arial, STHeiTi, sans-serif; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/deep/.report { |
|
|
|
/deep/.report { |
|
|
|
display: flex; |
|
|
|
display: flex; |
|
|
|
|
|
|
|
|
|
|
@ -582,7 +655,7 @@ export default { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.left { |
|
|
|
.left { |
|
|
|
width: 290px; |
|
|
|
width: 320px; |
|
|
|
margin-right: 15px; |
|
|
|
margin-right: 15px; |
|
|
|
background-color: #fff; |
|
|
|
background-color: #fff; |
|
|
|
|
|
|
|
|
|
|
@ -621,7 +694,7 @@ export default { |
|
|
|
|
|
|
|
|
|
|
|
li { |
|
|
|
li { |
|
|
|
position: relative; |
|
|
|
position: relative; |
|
|
|
width: 30px; |
|
|
|
min-width: 30px; |
|
|
|
margin: 7px 9px; |
|
|
|
margin: 7px 9px; |
|
|
|
font-size: 13px; |
|
|
|
font-size: 13px; |
|
|
|
text-align: center; |
|
|
|
text-align: center; |
|
|
@ -662,8 +735,15 @@ export default { |
|
|
|
border-color: #fe9f0a; |
|
|
|
border-color: #fe9f0a; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.status5 .serial { |
|
|
|
|
|
|
|
color: #fff; |
|
|
|
|
|
|
|
background-color: #d1d1d1; |
|
|
|
|
|
|
|
border-color: #d1d1d1; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.score { |
|
|
|
.score { |
|
|
|
height: 22px; |
|
|
|
height: 22px; |
|
|
|
|
|
|
|
padding: 0 2px; |
|
|
|
border: 1px solid #d3d3d3; |
|
|
|
border: 1px solid #d3d3d3; |
|
|
|
border-top: 0; |
|
|
|
border-top: 0; |
|
|
|
line-height: 22px; |
|
|
|
line-height: 22px; |
|
|
@ -673,7 +753,7 @@ export default { |
|
|
|
.status-filter { |
|
|
|
.status-filter { |
|
|
|
display: flex; |
|
|
|
display: flex; |
|
|
|
justify-content: space-between; |
|
|
|
justify-content: space-between; |
|
|
|
padding: 10px; |
|
|
|
padding: 10px 0; |
|
|
|
border-top: 1px solid #e5e5e5; |
|
|
|
border-top: 1px solid #e5e5e5; |
|
|
|
|
|
|
|
|
|
|
|
li { |
|
|
|
li { |
|
|
@ -683,6 +763,7 @@ export default { |
|
|
|
font-size: 12px; |
|
|
|
font-size: 12px; |
|
|
|
color: #333; |
|
|
|
color: #333; |
|
|
|
cursor: pointer; |
|
|
|
cursor: pointer; |
|
|
|
|
|
|
|
white-space: nowrap; |
|
|
|
border: 1px solid transparent; |
|
|
|
border: 1px solid transparent; |
|
|
|
|
|
|
|
|
|
|
|
&:before { |
|
|
|
&:before { |
|
|
@ -726,7 +807,7 @@ export default { |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
&:last-child { |
|
|
|
&:nth-child(4) { |
|
|
|
&.active { |
|
|
|
&.active { |
|
|
|
color: #fe9f0a; |
|
|
|
color: #fe9f0a; |
|
|
|
border-color: #fe9f0a; |
|
|
|
border-color: #fe9f0a; |
|
|
@ -737,6 +818,17 @@ export default { |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
&:last-child { |
|
|
|
|
|
|
|
&.active { |
|
|
|
|
|
|
|
color: #d1d1d1; |
|
|
|
|
|
|
|
border-color: #d1d1d1; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
&:before { |
|
|
|
|
|
|
|
background-color: #d1d1d1; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
&.active { |
|
|
|
&.active { |
|
|
|
font-weight: 600; |
|
|
|
font-weight: 600; |
|
|
|
} |
|
|
|
} |
|
|
@ -745,7 +837,7 @@ export default { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.right { |
|
|
|
.right { |
|
|
|
width: calc(100% - 305px); |
|
|
|
width: calc(100% - 355px); |
|
|
|
height: calc(100vh - 287px); |
|
|
|
height: calc(100vh - 287px); |
|
|
|
padding: 10px; |
|
|
|
padding: 10px; |
|
|
|
background-color: #fff; |
|
|
|
background-color: #fff; |
|
|
|