Commit 7490700d authored by zhengke's avatar zhengke

修改

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