- 从物料跟踪页面移除订单号列和表单字段 - 从导航菜单移除PDI管理,添加设备巡检 - 新增InspectionLocation和InspectionRecord后端模型和API - 新增设备巡检前端页面(左侧点位列表,右侧设备和历史记录)
19 lines
358 B
Vue
19 lines
358 B
Vue
<template>
|
|
<div id="app">
|
|
<router-view />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default { name: 'App' }
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
@import '@/assets/styles/global';
|
|
|
|
#app { height: 100vh; overflow: hidden; display: flex; flex-direction: column; }
|
|
|
|
// NProgress 颜色适配
|
|
#nprogress .bar { background: var(--sms-highlight) !important; }
|
|
</style>
|