Commit 7490700d authored by zhengke's avatar zhengke

修改

parent 565b7d97
......@@ -138,10 +138,9 @@
</el-calendar>
</div>
<div style="color:#2D2D2D;font-size: 14px;font-weight: bold;">课程安排</div>
<table>
<table style="width:100%;border-collapse: separate;border-collapse:collapse;margin-top:20px;text-align:center;">
<thead>
<tr
style="width:100%;height: 40px;background: #EEEEEF;font-size: 12px;color: #2D2D2D;font-weight: 600;margin-top: 20px;display: flex;align-items: center">
<tr style="height: 40px;background: #EEEEEF;font-size: 12px;color: #2D2D2D;font-weight: 600;margin-top: 20px;">
<th width="40%">
<template v-if="item.ClassStyle==1">
每周
......@@ -161,10 +160,10 @@
</th>
</tr>
</thead>
<tbody v-for="(tItem,tIndex) in item.ClassTimeList" :key="tIndex">
<tbody style="border-bottom:1px dashed #d1d1d1;" v-for="(tItem,tIndex) in item.ClassTimeList" :key="tIndex">
<template v-for="(timeItem,timeIndex) in tItem.TimeList">
<tr>
<td :rowspan=" tItem.TimeList.length" v-if="timeIndex==0">
<td style="width:180px;" :rowspan=" tItem.TimeList.length" v-if="timeIndex==0">
<template v-for="(sItem,sIndex) in tItem.DateList">
{{sItem}}
</template>
......@@ -173,7 +172,7 @@
第 {{timeIndex+1}} 节
</td>
<td>
{{timeItem.StartTime}}-{{timeItem.timeItem}}
{{timeItem.StartTime}}-{{timeItem.EndTime}}
</td>
</tr>
</template>
......
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