|
@@ -5,43 +5,50 @@
|
|
|
<!--星期一-->
|
|
|
<template slot-scope="{ row, index }" slot="MON">
|
|
|
<div v-if="row.MON == 1" class="active-cell" @click="toDetail">
|
|
|
- <span class="course-dot"></span>
|
|
|
+ <!-- <span class="course-dot"></span> -->
|
|
|
+ <Icon type="md-checkmark" class="has-cus-icon"/>
|
|
|
</div>
|
|
|
</template>
|
|
|
<!--星期二-->
|
|
|
<template slot-scope="{ row, index }" slot="TUE">
|
|
|
<div v-if="row.TUE == 1" class="active-cell" @click="toDetail">
|
|
|
- <span class="course-dot"></span>
|
|
|
+ <!-- <span class="course-dot"></span> -->
|
|
|
+ <Icon type="md-checkmark" class="has-cus-icon"/>
|
|
|
</div>
|
|
|
</template>
|
|
|
<!--星期三-->
|
|
|
<template slot-scope="{ row, index }" slot="WED">
|
|
|
<div v-if="row.WED == 1" class="active-cell" @click="toDetail">
|
|
|
- <span class="course-dot"></span>
|
|
|
+ <!-- <span class="course-dot"></span> -->
|
|
|
+ <Icon type="md-checkmark" class="has-cus-icon"/>
|
|
|
</div>
|
|
|
</template>
|
|
|
<!--星期四-->
|
|
|
<template slot-scope="{ row, index }" slot="THU">
|
|
|
<div v-if="row.THU == 1" class="active-cell" @click="toDetail">
|
|
|
- <span class="course-dot"></span>
|
|
|
+ <!-- <span class="course-dot"></span> -->
|
|
|
+ <Icon type="md-checkmark" class="has-cus-icon"/>
|
|
|
</div>
|
|
|
</template>
|
|
|
<!--星期五-->
|
|
|
<template slot-scope="{ row, index }" slot="FRI">
|
|
|
<div v-if="row.FRI == 1" class="active-cell" @click="toDetail">
|
|
|
- <span class="course-dot"></span>
|
|
|
+ <!-- <span class="course-dot"></span> -->
|
|
|
+ <Icon type="md-checkmark" class="has-cus-icon"/>
|
|
|
</div>
|
|
|
</template>
|
|
|
<!--星期六-->
|
|
|
<template slot-scope="{ row, index }" slot="SAT">
|
|
|
<div v-if="row.SAT == 1" class="active-cell" @click="toDetail">
|
|
|
- <span class="course-dot"></span>
|
|
|
+ <!-- <span class="course-dot"></span> -->
|
|
|
+ <Icon type="md-checkmark" class="has-cus-icon"/>
|
|
|
</div>
|
|
|
</template>
|
|
|
<!--星期日-->
|
|
|
<template slot-scope="{ row, index }" slot="SUN">
|
|
|
<div v-if="row.SUN == 1" class="active-cell" @click="toDetail">
|
|
|
- <span class="course-dot"></span>
|
|
|
+ <!-- <span class="course-dot"></span> -->
|
|
|
+ <Icon type="md-checkmark" class="has-cus-icon"/>
|
|
|
</div>
|
|
|
</template>
|
|
|
</Table>
|
|
@@ -334,9 +341,14 @@ export default {
|
|
|
width: 100%;
|
|
|
height: 30px;
|
|
|
line-height: 30px;
|
|
|
- background: #383838;
|
|
|
+ // background: #383838;
|
|
|
+ background-color: #1cc0f3;
|
|
|
cursor: pointer;
|
|
|
}
|
|
|
+.has-cus-icon{
|
|
|
+ color: white;
|
|
|
+ font-size: 16px;
|
|
|
+}
|
|
|
</style>
|
|
|
<style>
|
|
|
.home-cus-plan .ivu-table-cell {
|