Skip to content

Commit be6ffbc

Browse files
committed
fix: theme
1 parent 209f45d commit be6ffbc

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@
5959
"animate.css": "^4.1.1",
6060
"axios": "^1.7.2",
6161
"bootstrap": "^5.3.3",
62+
"bootstrap-icons": "^1.11.3",
6263
"codemirror": "^5",
6364
"codemirror-editor-vue3": "^2.7.0",
6465
"color": "^4.2.3",

src/views/house/resold-calendar/index.vue

+3-4
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,9 @@ import listPlugin from "@fullcalendar/list";
99
1010
import HouseAPI from "@/api/house";
1111
import { ChartHouseDataVO } from "@/api/house/model";
12-
import { log } from "console";
13-
1412
// install bootstrap@4 @fortawesome/fontawesome-free
1513
import "bootstrap/dist/css/bootstrap.css";
14+
import "bootstrap-icons/font/bootstrap-icons.css"; // needs additional webpack config!
1615
import "@fortawesome/fontawesome-free/css/all.css"; // needs additional webpack config!
1716
import { aN } from "@fullcalendar/core/internal-common";
1817
@@ -315,7 +314,7 @@ const calendarOptions: any = reactive({
315314
//initialView: "listMonth",
316315
initialView: "dayGridMonth",
317316
initialDate: new Date(),
318-
themeSystem: "bootstrap",
317+
//themeSystem: "bootstrap",
319318
showNonCurrentDates: false,
320319
eventTextColor: "#00aa66",
321320
eventBorderColor: "#00000000",
@@ -377,7 +376,7 @@ onMounted(() => {
377376
:options="calendarOptions"
378377
>
379378
<template #eventContent="arg">
380-
<div style=" font-weight: 900;text-align: center">
379+
<div style="font-weight: 900; text-align: center">
381380
<!-- <b>{{ arg.timeText }}</b> -->
382381
<i
383382
v-if="arg.event.extendedProps.display"

0 commit comments

Comments
 (0)