Commit 8cbad040 authored by lei's avatar lei

add:摄像头配置页面

parent 7e5efd6e
# 页面标题
VUE_APP_TITLE = AI 智能系统
VUE_APP_TITLE = AI 视频推理平台
# 开发环境配置
ENV = 'development'
......
# 页面标题
VUE_APP_TITLE = 若依管理系统
VUE_APP_TITLE = AI视频推理平台
# 生产环境配置
ENV = 'production'
......
# 页面标题
VUE_APP_TITLE = 若依管理系统
VUE_APP_TITLE = AI视频推理平台
BABEL_ENV = production
......
{
"name": "gemho",
"version": "2.0.0",
"description": "Ai智能系统",
"description": "Ai视频推理平台",
"author": "leiy",
"license": "MIT",
"scripts": {
......
......@@ -10,36 +10,36 @@
</template>
<script>
import iframeToggle from "./IframeToggle/index"
import iframeToggle from "./IframeToggle/index";
export default {
name: 'AppMain',
name: "AppMain",
components: { iframeToggle },
computed: {
cachedViews() {
return this.$store.state.tagsView.cachedViews
return this.$store.state.tagsView.cachedViews;
},
key() {
return this.$route.path
}
return this.$route.path;
},
},
watch: {
$route() {
this.addIframe()
}
this.addIframe();
},
},
mounted() {
this.addIframe()
this.addIframe();
},
methods: {
addIframe() {
const {name} = this.$route
const { name } = this.$route;
if (name && this.$route.meta.link) {
this.$store.dispatch('tagsView/addIframeView', this.$route)
}
this.$store.dispatch("tagsView/addIframeView", this.$route);
}
}
}
},
},
};
</script>
<style lang="scss" scoped>
......@@ -49,6 +49,7 @@ export default {
width: 100%;
position: relative;
overflow: hidden;
background: rgba(247 250 252);
}
.fixed-header + .app-main {
......
<template>
<div class="app-container">报警日志</div>
</template>
<script>
export default {
name: "Alarmlog",
props: {},
components: {},
data() {
return {};
},
computed: {},
watch: {},
created() {},
mounted() {},
methods: {},
};
</script>
<style scoped lang="scss"></style>
<template>
<div class="app-container">报警推送</div>
</template>
<script>
export default {
name: "Alarmpush",
props: {},
components: {},
data() {
return {};
},
computed: {},
watch: {},
created() {},
mounted() {},
methods: {},
};
</script>
<style scoped lang="scss"></style>
<template>
<div class="app-container">报警提醒</div>
</template>
<script>
export default {
name: "Alarmreminder",
props: {},
components: {},
data() {
return {};
},
computed: {},
watch: {},
created() {},
mounted() {},
methods: {},
};
</script>
<style scoped lang="scss"></style>
<template>
<div class="app-container">算法配置</div>
</template>
<script>
export default {
name: "AlgorithmConfig",
props: {},
components: {},
data() {
return {};
},
computed: {},
watch: {},
created() {},
mounted() {},
methods: {},
};
</script>
<style scoped lang="scss"></style>
This diff is collapsed.
<template>
<div class="app-container">视频分析任务</div>
</template>
<script>
export default {
name: "VideoAnalysisTasks",
props: {},
components: {},
data() {
return {};
},
computed: {},
watch: {},
created() {},
mounted() {},
methods: {},
};
</script>
<style scoped lang="scss"></style>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment