2019-03-26 00:07:24 +02:00
|
|
|
<template>
|
|
|
|
|
<Layout id="main-layout">
|
|
|
|
|
<Header id="main-header">
|
|
|
|
|
<Row type="flex" justify="start" align="middle" :gutter="10">
|
|
|
|
|
<Col span="12">
|
2019-03-29 18:20:40 +03:00
|
|
|
<chselect title="camera" :list="['1','2','3']" Xkey="camera"></chselect>
|
2019-03-26 00:07:24 +02:00
|
|
|
</Col>
|
|
|
|
|
<Col span="12">
|
2019-03-29 18:20:40 +03:00
|
|
|
<chselect title="pipline" :list="['0','1','2','3','4','5','6','7','8','9']" Xkey="pipeline"></chselect>
|
2019-03-26 00:07:24 +02:00
|
|
|
</Col>
|
|
|
|
|
</Row>
|
|
|
|
|
</Header>
|
|
|
|
|
<Content id="main-content">
|
|
|
|
|
<row type="flex" justify="start" align="middle" :gutter="5" >
|
|
|
|
|
<Col span="12">
|
|
|
|
|
<router-view></router-view>
|
|
|
|
|
</Col>
|
|
|
|
|
<img src="../assets/logo.png">
|
|
|
|
|
</Col>
|
|
|
|
|
</row>
|
|
|
|
|
</Content>
|
|
|
|
|
</Layout>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import Vue from "vue"
|
|
|
|
|
import chselect from './ch-select.vue'
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
name: 'Vision',
|
|
|
|
|
components: {
|
|
|
|
|
chselect
|
|
|
|
|
},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
}
|
|
|
|
|
},
|
2019-03-26 22:51:48 +02:00
|
|
|
methods: {
|
|
|
|
|
|
|
|
|
|
}
|
2019-03-26 00:07:24 +02:00
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
<style scoped>
|
|
|
|
|
</style>
|