forked from liweijie/education
1 line
3.0 KiB
JSON
1 line
3.0 KiB
JSON
{"remainingRequest":"C:\\Users\\Admin\\Desktop\\education\\frontend\\node_modules\\vue-loader\\lib\\index.js??vue-loader-options!C:\\Users\\Admin\\Desktop\\education\\frontend\\src\\views\\teachBusiness\\semester\\calendar.vue?vue&type=style&index=0&id=7e612951&scoped=true&lang=css","dependencies":[{"path":"C:\\Users\\Admin\\Desktop\\education\\frontend\\src\\views\\teachBusiness\\semester\\calendar.vue","mtime":1787567871680},{"path":"C:\\Users\\Admin\\Desktop\\education\\frontend\\node_modules\\css-loader\\dist\\cjs.js","mtime":1787309792478},{"path":"C:\\Users\\Admin\\Desktop\\education\\frontend\\node_modules\\vue-loader\\lib\\loaders\\stylePostLoader.js","mtime":1787309794547},{"path":"C:\\Users\\Admin\\Desktop\\education\\frontend\\node_modules\\postcss-loader\\src\\index.js","mtime":1787309793084},{"path":"C:\\Users\\Admin\\Desktop\\education\\frontend\\node_modules\\cache-loader\\dist\\cjs.js","mtime":1787309791955},{"path":"C:\\Users\\Admin\\Desktop\\education\\frontend\\node_modules\\vue-loader\\lib\\index.js","mtime":1787309793790}],"contextDependencies":[],"result":[{"type":"Buffer","data":"base64:CgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKDQoudGVhY2gtY2FsZW5kYXIgew0KICBoZWlnaHQ6IDEwMCU7DQogIGRpc3BsYXk6IGZsZXg7DQogIGZsZXgtZGlyZWN0aW9uOiBjb2x1bW47DQogIHBhZGRpbmc6IDEycHg7DQogIGJveC1zaXppbmc6IGJvcmRlci1ib3g7DQp9DQouY2FsZW5kYXItZW1wdHkgew0KICBmbGV4OiAxOw0KICBkaXNwbGF5OiBmbGV4Ow0KICBhbGlnbi1pdGVtczogY2VudGVyOw0KICBqdXN0aWZ5LWNvbnRlbnQ6IGNlbnRlcjsNCiAgY29sb3I6ICM5MDkzOTk7DQogIGZvbnQtc2l6ZTogMTRweDsNCn0NCg=="},{"version":3,"sources":["calendar.vue"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAqCA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA","file":"calendar.vue","sourceRoot":"src/views/teachBusiness/semester","sourcesContent":["<template>\r\n <div class=\"teach-calendar app-container\">\r\n <school-calendar-editor\r\n v-if=\"nd\"\r\n :nd=\"nd\"\r\n :semester-name=\"semesterName\"\r\n @close=\"handleClose\"\r\n />\r\n <div v-else class=\"calendar-empty\">未指定学期,请从学期管理页面进入。</div>\r\n </div>\r\n</template>\r\n\r\n<script>\r\nimport SchoolCalendarEditor from '@/views/teachBusiness/calendar/components/SchoolCalendarEditor'\r\n\r\nexport default {\r\n name: 'SemesterCalendarEdit',\r\n components: { SchoolCalendarEditor },\r\n data() {\r\n return {\r\n nd: '',\r\n semesterName: ''\r\n }\r\n },\r\n created() {\r\n this.nd = this.$route.query.nd || ''\r\n this.semesterName = this.$route.query.name || ''\r\n },\r\n methods: {\r\n handleClose() {\r\n this.$router.replace({ path: '/teachBusiness/semester' })\r\n }\r\n }\r\n}\r\n</script>\r\n\r\n<style scoped>\r\n.teach-calendar {\r\n height: 100%;\r\n display: flex;\r\n flex-direction: column;\r\n padding: 12px;\r\n box-sizing: border-box;\r\n}\r\n.calendar-empty {\r\n flex: 1;\r\n display: flex;\r\n align-items: center;\r\n justify-content: center;\r\n color: #909399;\r\n font-size: 14px;\r\n}\r\n</style>\r\n"]}]} |