fix:新增报告模块

This commit is contained in:
2024-11-18 09:51:03 +08:00
parent 0c2b288cd7
commit 13c6607cbd
4 changed files with 295 additions and 69 deletions
@@ -0,0 +1,31 @@
<!--
* @Author: SunTao 328867980@qq.com
* @Date: 2024-11-18 09:13:34
* @LastEditors: SunTao 328867980@qq.com
* @LastEditTime: 2024-11-18 09:13:42
* @FilePath: \znxjxt-ui\src\views\xj\inspection-report\daily-monitoring.vue
* @Description: 巡检报告-日常监测报告
-->
<template>
<div class="content">日常监测报告</div>
</template>
<script>
export default {
name: "DailyMonitoring",
components: {},
data() {
return {};
},
created() {},
methods: {},
};
</script>
<style lang="scss" scoped>
.content {
width: 100%;
height: calc(100vh - 5.4rem);
padding: 1rem;
}
</style>
@@ -0,0 +1,40 @@
<!--
* @Author: SunTao 328867980@qq.com
* @Date: 2024-11-18 09:46:14
* @LastEditors: SunTao 328867980@qq.com
* @LastEditTime: 2024-11-18 09:48:10
* @FilePath: \znxjxt-ui\src\views\xj\inspection-report\maintenance-report\index.vue
* @Description: 巡检报告-养护评估报告
-->
<template>
<div class="content">养护评估报告</div>
</template>
<script>
export default {
name:"MaintenanceReport",
components:{
},
data(){
return{
}
},
created(){
},
methods:{
}
}
</script>
<style lang="scss" scoped>
.content {
width: 100%;
height: calc(100vh - 5.4rem);
padding: 1rem;
}
</style>
@@ -0,0 +1,38 @@
<!--
* @Author: SunTao 328867980@qq.com
* @Date: 2024-11-18 09:33:34
* @LastEditors: SunTao 328867980@qq.com
* @LastEditTime: 2024-11-18 09:34:52
* @FilePath: \znxjxt-ui\src\views\xj\inspection-report\special-report\index.vue
* @Description: 巡检信息-特殊事件报告
-->
<template>
<div class="content">巡检信息特殊事件报告</div>
</template>
<script>
export default {
name:"SpecialReport",
components:{},
data(){
return{
}
},
created(){
},
methods:{
}
}
</script>
<style lang="scss" scoped>
.content {
width: 100%;
height: calc(100vh - 5.4rem);
padding: 1rem;
}
</style>