5 changed files with 41 additions and 0 deletions
@ -0,0 +1,4 @@ |
|||
<!-- 动物防治(新版) --> |
|||
<template> |
|||
<router-view /> |
|||
</template> |
@ -0,0 +1,3 @@ |
|||
<template> |
|||
<router-view /> |
|||
</template> |
@ -0,0 +1,17 @@ |
|||
<!-- 巡查项详情 --> |
|||
<template> |
|||
<div class="patrol-items-details">巡查项详情</div> |
|||
</template> |
|||
<script> |
|||
export default { |
|||
data() { |
|||
return {}; |
|||
}, |
|||
created() {}, |
|||
methods: {}, |
|||
}; |
|||
</script> |
|||
<style scoped lang="scss"> |
|||
.patrol-items-details { |
|||
} |
|||
</style> |
@ -0,0 +1,17 @@ |
|||
<!-- 巡查项管理 --> |
|||
<template> |
|||
<div class="patrol-items-manage">巡查项管理</div> |
|||
</template> |
|||
<script> |
|||
export default { |
|||
data() { |
|||
return {}; |
|||
}, |
|||
created() {}, |
|||
methods: {}, |
|||
}; |
|||
</script> |
|||
<style scoped lang="scss"> |
|||
.patrol-items-manage { |
|||
} |
|||
</style> |
Loading…
Reference in new issue