Files
education/frontend/node_modules/.cache/babel-loader/ceeb66e8d04ae942c9e087adbd660e92.json
T

1 line
4.7 KiB
JSON

{"remainingRequest":"C:\\Users\\Admin\\Desktop\\education\\frontend\\node_modules\\babel-loader\\lib\\index.js!C:\\Users\\Admin\\Desktop\\education\\frontend\\node_modules\\cache-loader\\dist\\cjs.js??ref--0-0!C:\\Users\\Admin\\Desktop\\education\\frontend\\node_modules\\vue-loader\\lib\\index.js??vue-loader-options!C:\\Users\\Admin\\Desktop\\education\\frontend\\src\\views\\teachingLog\\organLog\\index.vue?vue&type=script&lang=js","dependencies":[{"path":"C:\\Users\\Admin\\Desktop\\education\\frontend\\src\\views\\teachingLog\\organLog\\index.vue","mtime":1787567871710},{"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\\babel-loader\\lib\\index.js","mtime":1787309793142},{"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},{"path":"C:\\Users\\Admin\\Desktop\\education\\frontend\\babel.config.js","mtime":1787567871334},{"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\\babel-loader\\lib\\index.js","mtime":1787309793142},{"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:InVzZSBzdHJpY3QiOwoKdmFyIF9pbnRlcm9wUmVxdWlyZURlZmF1bHQgPSByZXF1aXJlKCJDOi9Vc2Vycy9BZG1pbi9EZXNrdG9wL2VkdWNhdGlvbi9mcm9udGVuZC9ub2RlX21vZHVsZXMvQGJhYmVsL3J1bnRpbWUvaGVscGVycy9pbnRlcm9wUmVxdWlyZURlZmF1bHQuanMiKS5kZWZhdWx0OwpPYmplY3QuZGVmaW5lUHJvcGVydHkoZXhwb3J0cywgIl9fZXNNb2R1bGUiLCB7CiAgdmFsdWU6IHRydWUKfSk7CmV4cG9ydHMuZGVmYXVsdCA9IHZvaWQgMDsKdmFyIF9sb2dWaWV3ID0gX2ludGVyb3BSZXF1aXJlRGVmYXVsdChyZXF1aXJlKCIuL2NvbXBvbmVudHMvbG9nVmlldy52dWUiKSk7CnZhciBfcmVwb3J0ZWRWaWV3ID0gX2ludGVyb3BSZXF1aXJlRGVmYXVsdChyZXF1aXJlKCIuL2NvbXBvbmVudHMvcmVwb3J0ZWRWaWV3LnZ1ZSIpKTsKdmFyIF9hdWRpdGVkVmlldyA9IF9pbnRlcm9wUmVxdWlyZURlZmF1bHQocmVxdWlyZSgiLi9jb21wb25lbnRzL2F1ZGl0ZWRWaWV3LnZ1ZSIpKTsKLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KdmFyIF9kZWZhdWx0ID0gZXhwb3J0cy5kZWZhdWx0ID0gewogIG5hbWU6ICdPcmdhbkxvZycsCiAgY29tcG9uZW50czogewogICAgTG9nVmlldzogX2xvZ1ZpZXcuZGVmYXVsdCwKICAgIFJlcG9ydGVkVmlldzogX3JlcG9ydGVkVmlldy5kZWZhdWx0LAogICAgQXVkaXRlZFZpZXc6IF9hdWRpdGVkVmlldy5kZWZhdWx0CiAgfSwKICBkYXRhOiBmdW5jdGlvbiBkYXRhKCkgewogICAgcmV0dXJuIHsKICAgICAgYWN0aXZlVGFiOiAncXVlcnknCiAgICB9OwogIH0KfTs="},{"version":3,"names":["_logView","_interopRequireDefault","require","_reportedView","_auditedView","name","components","LogView","ReportedView","AuditedView","data","activeTab"],"sources":["src/views/teachingLog/organLog/index.vue"],"sourcesContent":["<template>\r\n <div class=\"page-container\">\r\n <el-card shadow=\"never\" class=\"tab-card\">\r\n <el-tabs v-model=\"activeTab\" class=\"organ-tabs\">\r\n <el-tab-pane label=\"教学日志管理查询\" name=\"query\">\r\n <log-view v-if=\"activeTab === 'query'\" />\r\n </el-tab-pane>\r\n <el-tab-pane label=\"已上报机关教学日志\" name=\"reported\">\r\n <reported-view v-if=\"activeTab === 'reported'\" />\r\n </el-tab-pane>\r\n <el-tab-pane label=\"机关已审核教学日志\" name=\"audited\">\r\n <audited-view v-if=\"activeTab === 'audited'\" />\r\n </el-tab-pane>\r\n </el-tabs>\r\n </el-card>\r\n </div>\r\n</template>\r\n\r\n<script>\r\nimport LogView from './components/logView.vue'\r\nimport ReportedView from './components/reportedView.vue'\r\nimport AuditedView from './components/auditedView.vue'\r\n\r\nexport default {\r\n name: 'OrganLog',\r\n components: { LogView, ReportedView, AuditedView },\r\n data() {\r\n return {\r\n activeTab: 'query'\r\n }\r\n }\r\n}\r\n</script>\r\n\r\n<style scoped lang=\"scss\">\r\n.page-container {\r\n padding: 20px;\r\n}\r\n\r\n.tab-card {\r\n .organ-tabs {\r\n ::v-deep .el-tabs__header {\r\n margin-bottom: 8px;\r\n }\r\n\r\n ::v-deep .el-tabs__content {\r\n padding-top: 4px;\r\n }\r\n }\r\n}\r\n</style>"],"mappings":";;;;;;;AAmBA,IAAAA,QAAA,GAAAC,sBAAA,CAAAC,OAAA;AACA,IAAAC,aAAA,GAAAF,sBAAA,CAAAC,OAAA;AACA,IAAAE,YAAA,GAAAH,sBAAA,CAAAC,OAAA;;;;;;;;;;;;;;;;;;;iCAEA;EACAG,IAAA;EACAC,UAAA;IAAAC,OAAA,EAAAA,gBAAA;IAAAC,YAAA,EAAAA,qBAAA;IAAAC,WAAA,EAAAA;EAAA;EACAC,IAAA,WAAAA,KAAA;IACA;MACAC,SAAA;IACA;EACA;AACA","ignoreList":[]}]}