Commit d7d6dc99 authored by youjie's avatar youjie

no message

parent c2c949ad
...@@ -128,9 +128,9 @@ ...@@ -128,9 +128,9 @@
<q-btn size="sm" color="accent" label="添加" @click="subscribeCourse" /> <q-btn size="sm" color="accent" label="添加" @click="subscribeCourse" />
</div> </div>
</div> </div>
<div class="row col-12"> <div class="row col-12" style="margin-top: 20px;">
<table> <table class="col-12 table" style="border-collapse: collapse;" border="0px">
<thead> <thead class="thead">
<tr> <tr>
<th> <th>
姓名 姓名
...@@ -149,9 +149,10 @@ ...@@ -149,9 +149,10 @@
</th> </th>
</tr> </tr>
</thead> </thead>
<tbody v-for="(item,index) in saveMsg.ChooseStuList" :key="index"> <template v-if="saveMsg.ChooseStuList.length>0">
<tbody v-for="(item,index) in saveMsg.ChooseStuList" :key="index" style="text-align: center;">
<tr> <tr>
<td> <td width="80px">
{{item.StuName}} {{item.StuName}}
</td> </td>
<td> <td>
...@@ -183,14 +184,25 @@ ...@@ -183,14 +184,25 @@
</q-select> </q-select>
</template> </template>
</td> </td>
<td> <td width="60px">
<a v-if="item.AppointmentId==0" @click="DeleteStu(index)">删除</a> <q-btn size="8px" class="SurverDel"
@click="DeleteStu(index)"
round color="red"
icon="iconfont icon-shanchu" />
</td> </td>
</tr> </tr>
</tbody> </tbody>
</template>
<tbody v-if="saveMsg.ChooseStuList.length==0" style="text-align: center;">
<tr>
<td colspan="5" style="padding: 20px 0;">暂无数据</td>
</tr>
</tbody>
</table>
<table class="col-12" style="margin-top: 10px;">
<tfoot> <tfoot>
<tr> <tr>
<td colspan="4"> <td colspan="1" style="text-align: center;">
<q-btn size="sm" color="accent" label="保存" @click="SaveStuAppointment" :loading="addLoading" /> <q-btn size="sm" color="accent" label="保存" @click="SaveStuAppointment" :loading="addLoading" />
</td> </td>
</tr> </tr>
...@@ -704,4 +716,15 @@ ...@@ -704,4 +716,15 @@
.timeItem { .timeItem {
margin: 10px 0; margin: 10px 0;
} }
.table{
border-radius: 5px 5px 0 0;
background: rgba(0, 0, 0, 0.05);
overflow: hidden;
}
.thead{
background: rgba(0, 0, 0, 0.09);
}
.thead tr th{
padding: 10px 0;
}
</style> </style>
\ No newline at end of file
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