PeriodicInspection.vue 351 字节
<template>
  <div>定期检查</div>
</template>

<script lang="ts">
import { Component, Vue } from "vue-property-decorator";
/**
 * @Description 定期检查
 * @Author JiangTao
 * @Date 2021-11-10 下午 03:33
 */
@Component({
  name: "PeriodicInspection",
})
export default class PeriodicInspection extends Vue {}
</script>

<style scoped></style>