| | |
| | | mode="horizontal" |
| | | @select="checkMenu" |
| | | > |
| | | <el-menu-item index="0">历史记录查询</el-menu-item> |
| | | <el-menu-item index="1">位置标定</el-menu-item> |
| | | <el-menu-item index="2">轨迹图</el-menu-item> |
| | | <el-menu-item index="3">关联摄像机</el-menu-item> |
| | | </el-menu> |
| | | </div> |
| | | <div class="act-view"> |
| | | <template v-if="actMenuIndex=='0'"> |
| | | <History /> |
| | | </template> |
| | | <template v-if="actMenuIndex=='1'"> |
| | | <label-mark></label-mark> |
| | | </template> |
| | |
| | | import LabelMark from '../components/LabelMark'; |
| | | import TracePlot from '../components/TracePlot'; |
| | | import RelateCamera from '../components/RelateCamera'; |
| | | import History from '../components/History'; |
| | | export default { |
| | | components: { LabelMark, TracePlot, RelateCamera }, |
| | | components: { LabelMark, TracePlot, RelateCamera, History }, |
| | | data () { |
| | | return { |
| | | actMenuIndex: '1', |
| | | actMenuIndex: '0', |
| | | } |
| | | }, |
| | | methods: { |