Commit 412cc6bd authored by 罗超's avatar 罗超

no message

parent 90812a85
...@@ -287,9 +287,19 @@ ...@@ -287,9 +287,19 @@
<div> <div>
<div class="eventsCalendar_Form"> <div class="eventsCalendar_Form">
<div style="text-align:right;margin:12px 20px 8px 0"> <div style="text-align:right;margin:12px 20px 8px 0">
<el-date-picker style="width:190px" v-model="date" type="month" size="small"  value-format="yyyy-M-d" <el-date-picker
@change="getList()" placeholder="选择日期"> style="width:190px"
v-model="date"
type="date"
:clearable="false"
value-format="yyyy-MM-d"
:picker-options="pickerOptions"
:editable="false"
placeholder="选择日期"
@change="getList"
>
</el-date-picker> </el-date-picker>
</div> </div>
<template> <template>
<el-calendar v-model="date" id="calendar" style="margin-bottom:40px;"> <el-calendar v-model="date" id="calendar" style="margin-bottom:40px;">
......
...@@ -127,7 +127,7 @@ ...@@ -127,7 +127,7 @@
</div> --> </div> -->
<q-btn-group <q-btn-group
outline outline
style="position: fixed;top: 75px;right:20px;z-index: 666666;" style="position: fixed;top: 15px;right:20px;z-index: 666666;"
> >
<q-btn <q-btn
dense dense
......
...@@ -9,16 +9,16 @@ ...@@ -9,16 +9,16 @@
</div> --> </div> -->
<q-btn <q-btn
flat flat
@click="changeMenu(5)" @click="changeMenu(6)"
:color="chosenMenu == 5 ? 'primary' : 'blue-grey-14'" :color="chosenMenu == 6 ? 'primary' : 'blue-grey-14'"
:class="[chosenMenu == 5 ? 'text-weight-bold' : '']" :class="[chosenMenu == 6 ? 'text-weight-bold' : '']"
label="活动日历" label="活动日历"
></q-btn> ></q-btn>
<q-btn <q-btn
flat flat
@click="changeMenu(6)" @click="changeMenu(5)"
:color="chosenMenu == 6 ? 'primary' : 'blue-grey-14'" :color="chosenMenu == 5 ? 'primary' : 'blue-grey-14'"
:class="[chosenMenu == 6 ? 'text-weight-bold' : '']" :class="[chosenMenu == 5 ? 'text-weight-bold' : '']"
label="工作台" label="工作台"
></q-btn> ></q-btn>
<q-btn <q-btn
...@@ -79,10 +79,10 @@ ...@@ -79,10 +79,10 @@
label="我的上课计划" label="我的上课计划"
></q-btn> ></q-btn>
</div> </div>
<div class="bg-white col" v-if="chosenMenu == 5"> <div class="bg-white col" v-if="chosenMenu == 6">
<eventsCalendar></eventsCalendar> <eventsCalendar></eventsCalendar>
</div> </div>
<div class="bg-white col" v-if="chosenMenu == 6"> <div class="bg-white col" v-if="chosenMenu == 5">
<work></work> <work></work>
</div> </div>
<div v-if="chosenMenu == 1" class="flex col" style="flex: 1"> <div v-if="chosenMenu == 1" class="flex col" style="flex: 1">
...@@ -143,7 +143,7 @@ export default { ...@@ -143,7 +143,7 @@ export default {
model: "one", model: "one",
AccountType: 1, AccountType: 1,
ispower: false, //是否显示备课管理 ispower: false, //是否显示备课管理
chosenMenu: 5, chosenMenu: 6,
okrMenu: 1, okrMenu: 1,
//通知请求参数 //通知请求参数
...@@ -271,7 +271,7 @@ export default { ...@@ -271,7 +271,7 @@ export default {
.sub-header { .sub-header {
position: fixed; position: fixed;
height: 56px; height: 56px;
top: 60px; top: 0;
left: 0; left: 0;
right: 0; right: 0;
transition: top 0.3s ease; transition: top 0.3s ease;
......
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