|
@@ -16,17 +16,18 @@
|
|
>
|
|
>
|
|
<div class="calendar_box-date">
|
|
<div class="calendar_box-date">
|
|
<span>{{ data.day.split('-').slice(1).join('-') }}</span>
|
|
<span>{{ data.day.split('-').slice(1).join('-') }}</span>
|
|
- <span @click.stop="handlePerFormList('ADD',data)">详情</span>
|
|
|
|
|
|
+ <span style="color: #BEBEBE;" @click.stop="handlePerFormList('ADD',data)">详情</span>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div
|
|
<div
|
|
|
|
+ class="calendar_box-select"
|
|
style="width: 100%; display: flex;flex-wrap: wrap;"
|
|
style="width: 100%; display: flex;flex-wrap: wrap;"
|
|
@mouseover="mouseoverFun(data)"
|
|
@mouseover="mouseoverFun(data)"
|
|
@click.stop="clickTimeFun(data)"
|
|
@click.stop="clickTimeFun(data)"
|
|
>
|
|
>
|
|
<div
|
|
<div
|
|
:key="index"
|
|
:key="index"
|
|
- :style="{marginLeft: index%2 == 0?'':'20px',color: item.status == 1 ?'#67c23a':'#909399'}"
|
|
|
|
|
|
+ :style="{marginLeft: index%2 == 0?'':'20px',color: item.status == 1 ?'#6F86FA':'#909399'}"
|
|
v-for="(item,index) in getPerFormList(data)"
|
|
v-for="(item,index) in getPerFormList(data)"
|
|
>
|
|
>
|
|
{{ item.performTimeStart }}-{{ item.performTimeEnd }}
|
|
{{ item.performTimeStart }}-{{ item.performTimeEnd }}
|
|
@@ -375,8 +376,10 @@ export default {
|
|
}
|
|
}
|
|
|
|
|
|
.disable_time {
|
|
.disable_time {
|
|
- user-select: none;
|
|
|
|
- cursor: not-allowed;
|
|
|
|
|
|
+ .calendar_box-select {
|
|
|
|
+ user-select: none;
|
|
|
|
+ cursor: not-allowed;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
.is-select_time_self {
|
|
.is-select_time_self {
|