Commit 8cbad040 authored by lei's avatar lei

add:摄像头配置页面

parent 7e5efd6e
# 页面标题 # 页面标题
VUE_APP_TITLE = AI 智能系统 VUE_APP_TITLE = AI 视频推理平台
# 开发环境配置 # 开发环境配置
ENV = 'development' ENV = 'development'
......
# 页面标题 # 页面标题
VUE_APP_TITLE = 若依管理系统 VUE_APP_TITLE = AI视频推理平台
# 生产环境配置 # 生产环境配置
ENV = 'production' ENV = 'production'
......
# 页面标题 # 页面标题
VUE_APP_TITLE = 若依管理系统 VUE_APP_TITLE = AI视频推理平台
BABEL_ENV = production BABEL_ENV = production
......
{ {
"name": "gemho", "name": "gemho",
"version": "2.0.0", "version": "2.0.0",
"description": "Ai智能系统", "description": "Ai视频推理平台",
"author": "leiy", "author": "leiy",
"license": "MIT", "license": "MIT",
"scripts": { "scripts": {
......
...@@ -10,36 +10,36 @@ ...@@ -10,36 +10,36 @@
</template> </template>
<script> <script>
import iframeToggle from "./IframeToggle/index" import iframeToggle from "./IframeToggle/index";
export default { export default {
name: 'AppMain', name: "AppMain",
components: { iframeToggle }, components: { iframeToggle },
computed: { computed: {
cachedViews() { cachedViews() {
return this.$store.state.tagsView.cachedViews return this.$store.state.tagsView.cachedViews;
}, },
key() { key() {
return this.$route.path return this.$route.path;
} },
}, },
watch: { watch: {
$route() { $route() {
this.addIframe() this.addIframe();
} },
}, },
mounted() { mounted() {
this.addIframe() this.addIframe();
}, },
methods: { methods: {
addIframe() { addIframe() {
const {name} = this.$route const { name } = this.$route;
if (name && this.$route.meta.link) { if (name && this.$route.meta.link) {
this.$store.dispatch('tagsView/addIframeView', this.$route) this.$store.dispatch("tagsView/addIframeView", this.$route);
}
} }
} },
} },
};
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
...@@ -49,6 +49,7 @@ export default { ...@@ -49,6 +49,7 @@ export default {
width: 100%; width: 100%;
position: relative; position: relative;
overflow: hidden; overflow: hidden;
background: rgba(247 250 252);
} }
.fixed-header + .app-main { .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