12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <template>
- <el-calendar class="page">
- <template #dateCell="{ data }">
- <p
- @click.stop="selectHandler(data)"
- style="height: 100%; width: 100%"
- :class="data.isSelected ? 'is-selected' : ''"
- >
- {{ data.day.split("-").slice(1).join("-") }} <br /><br />
- <template v-for="(event, index) in calendarEvents" :key="index">
- <el-tag
- @click.stop="handleEventClick(event)"
- v-if="
- data.day === event.startDate.substring(0, 10)
- "
- >
- {{ event.title }}
- </el-tag>
- </template>
- </p>
- </template>
- </el-calendar>
- <MyCalendarForm
- ref="myCalendarForm"
- @refreshDataList="refreshList"
- ></MyCalendarForm>
- </template>
- <script>
- import MyCalendarForm from "./MyCalendarForm";
- import myCalendarService from "@/api/calendar/myCalendarService";
- export default {
- data() {
- return {
- startDate: new Date(),
- endDate: new Date(),
- calendarEvents: [],
- };
- },
- components: {
- MyCalendarForm,
- },
- activated() {
- this.refreshList();
- },
- methods: {
- // 选择月份
- selectHandler(data) {
- this.startDate = data.day;
- this.endDate = data.day;
- this.$refs.myCalendarForm.init(
- "add",
- "",
- this.startDate,
- this.endDate
- );
- },
- handleEventClick(info) {
- this.$refs.myCalendarForm.init("edit", info.id);
- },
- refreshList() {
- myCalendarService.list().then((data) => {
- console.log('data', data)
- this.calendarEvents = data;
- });
- },
- },
- };
- </script>
- <style>
- .is-selected {
- color: #1989fa;
- }
- </style>
|