mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/student-h5.git
synced 2025-12-09 02:46:47 +08:00
feat:增加投票选项图片
This commit is contained in:
@@ -86,28 +86,28 @@
|
||||
v-for="(el, index) in item.taskProcessList"
|
||||
:key="index"
|
||||
>
|
||||
<div>
|
||||
<div style="width: calc(100% - 80px)">
|
||||
<div class="issue">
|
||||
{{ el.name }}
|
||||
</div>
|
||||
<div class="coursetag">
|
||||
<div
|
||||
class="tag1"
|
||||
style="margin-right: 11px; margin-top: 16px"
|
||||
style="margin-right: 11px; margin-top: 3px"
|
||||
v-if="el.flag"
|
||||
>
|
||||
必修
|
||||
</div>
|
||||
<div
|
||||
class="tag2"
|
||||
style="margin-right: 11px; margin-top: 16px"
|
||||
style="margin-right: 11px; margin-top: 3px"
|
||||
v-if="!el.flag"
|
||||
>
|
||||
选修
|
||||
</div>
|
||||
<div
|
||||
class="tag3"
|
||||
style="margin-right: 11px; margin-top: 16px"
|
||||
style="margin-right: 11px; margin-top: 3px"
|
||||
>
|
||||
{{ types.typeName[el.type] || "" }}
|
||||
</div>
|
||||
@@ -396,7 +396,7 @@ function toFinish(d, sName, chapterOrStageId) {
|
||||
ElMessage.error("暂时未开放");
|
||||
return;
|
||||
}
|
||||
if (d.type == 3 || d.type == 7) {
|
||||
if (d.type == 3) {
|
||||
d.status !== 1 &&
|
||||
request(STUDY_RECORD, {
|
||||
studentId: data.value.userInfoBo.userId,
|
||||
@@ -809,10 +809,12 @@ const queryAllStatus = (data) => {
|
||||
|
||||
.issue {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
font-size: 13px;
|
||||
line-height: 30.29px;
|
||||
color: rgba(110, 123, 132, 1);
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.coursetag {
|
||||
display: flex;
|
||||
|
||||
Reference in New Issue
Block a user