Commit bc36e53c authored by zhengke's avatar zhengke

修改

parent 632794ea
......@@ -17,7 +17,9 @@
.classConflitDialog {
width: 370px;
}
.resStyle{
color:red;
}
</style>
<template>
<q-dialog v-model="persistent" content-class="bg-grey-1" persistent transition-show="scale">
......@@ -76,7 +78,7 @@
<th>上课时段</th>
</tr>
<tr v-for="(subItem,subIndex) in props.row.PlanRepeatList" :key="subIndex">
<td style="width:200px;text-align:left;">
<td style="width:180px;text-align:left;">
{{subItem.ClassName}}
</td>
<td>{{subItem.ClassDate}}</td>
......@@ -537,8 +539,8 @@
return
}
if (this.postMsg.ChangeType == 3) {
for (let i = 0; i < this.postMsg.TimeList.length; i++) {
if (this.postMsg.TimeList[i].StartTime == '') {
for (let i = 0; i < this.postMsg.PlanTimeList.length; i++) {
if (this.postMsg.PlanTimeList[i].StartTime == '') {
this.$q.notify({
type: 'negative',
position: "top",
......@@ -546,7 +548,7 @@
})
return
}
if (this.postMsg.TimeList[i].EndTime == '') {
if (this.postMsg.PlanTimeList[i].EndTime == '') {
this.$q.notify({
type: 'negative',
position: "top",
......
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