Commit 592038e5 authored by 黄奎's avatar 黄奎

页面修改

parent 8f2d2ccb
......@@ -28,7 +28,10 @@
</div>
</div>
<div class="row justify-center items-center q-mt-sm">
<font style="color:blue;">{{msg.StartDate}}~{{msg.EndDate}} 排课计划</font>
<font style="background:#eb3b5a;">待确认</font>&nbsp;
<font style="background:yellow;">待上课</font>&nbsp;
<font style="background:#20bf6b;">已上课</font>&nbsp;
<font style="color:blue;">{{msg.StartDate}}~{{msg.EndDate}} 排课计划</font>&nbsp;
<q-btn dense text-color="primary" flat unelevated :label="viewType == 'day' ? '上一天' : '上一周'"
@click="calendarPrev" />
<q-separator vertical />
......@@ -54,10 +57,12 @@
{{rootItem.ClassDate}}<br />({{rootItem.WeekStr}})
</th>
<template v-for="(item, index) in rootItem.RList">
<template v-if="item.Dept_Id==8">
<th :key="`r_teacher_`+rootIndex+index" style="width:100px;">
{{item.TeacherName}}
</th>
</template>
</template>
</tr>
</thead>
<tbody :key="`r_tb_`+rootIndex">
......@@ -69,6 +74,7 @@
{{timeItem.StartTime}}~{{timeItem.EndTime}}
</td>
<template v-for="(aItem, aIndex) in rootItem.RList">
<template v-if="aItem.Dept_Id==8">
<td :key="`r_a_`+rootIndex+aIndex" style="width:100px;cursor:pointer;"
@click="showDetail(aItem,rootItem.ClassDate,aItem.TeacherId,timeItem)"
:class="getAppointItemClass(aItem,timeItem)">
......@@ -85,6 +91,7 @@
</template>
</td>
</template>
</template>
</tr>
</template>
</tbody>
......
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