Commit de22cd04 authored by 罗超's avatar 罗超

2

parent 7c2d4382
......@@ -159,6 +159,7 @@ export default {
});
this.stuInfo = "";
this.stuOptions = [];
this.AllStuOptions = [];
this.getStu();
}
});
......
......@@ -259,11 +259,17 @@
</div>
<div class="flex no-wrap" v-if="__item.ClassType !== 2">
<span class="detailLabel">学员:</span>
<span v-for="(x, y) in __item.GuestList" :key="y">
{{ x.GuestName }}
<span v-if="x.AppointType == 2">(补)</span>
<span v-if="x.AppointType == 3">(重)</span>
</span>
<div>
<span
v-for="(x, y) in __item.GuestList"
:key="y"
style="white-space:nowrap;display:inline-block"
>
{{ x.GuestName }}
<span v-if="x.AppointType == 2">(补)</span>
<span v-if="x.AppointType == 3">(重)</span>,
</span>
</div>
</div>
<div class="flex no-wrap" v-if="__item.ClassType == 3">
<span class="detailLabel">
......@@ -359,12 +365,18 @@
</div>
<div class="flex no-wrap" v-if="__item.ClassType !== 2">
<span class="detailLabel">学员:</span
><span v-for="(x, y) in __item.GuestList" :key="y">
{{ x.GuestName }}
<span v-if="x.AppointType == 2">(补)</span>
<span v-if="x.AppointType == 3">(重)</span>
</span>
<span class="detailLabel">学员:</span>
<div>
<span
v-for="(x, y) in __item.GuestList"
:key="y"
style="white-space:nowrap;display:inline-block"
>
{{ x.GuestName }}
<span v-if="x.AppointType == 2">(补)</span>
<span v-if="x.AppointType == 3">(重)</span>,
</span>
</div>
</div>
<div class="flex no-wrap" v-if="__item.ClassType == 3">
<span class="detailLabel">
......
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