页面修改
parent
3e47cfe093
commit
356baa8785
File diff suppressed because it is too large
Load Diff
@ -1,12 +1,49 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="guide"></div>
|
<div class="guide">
|
||||||
|
<div
|
||||||
|
class="guide-box mr64"
|
||||||
|
v-for="(item, index) in list"
|
||||||
|
:key="index"
|
||||||
|
@click="go(index)"
|
||||||
|
>{{item.label}}</div>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
export default {
|
export default {
|
||||||
name: "guide"
|
name: "guide",
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
list: [
|
||||||
|
{
|
||||||
|
label: "随行监控系统"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "盘点任务模式"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
};
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
go(index) {
|
||||||
|
if (index === 0) {
|
||||||
|
this.$router.push({ name: "realTime" });
|
||||||
|
} else {
|
||||||
|
this.$message.info("暂未开放");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style>
|
<style lang='scss'>
|
||||||
|
.guide {
|
||||||
|
min-height: 100vh;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
&-box {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
@ -0,0 +1 @@
|
|||||||
|
export default {}
|
||||||
@ -1 +1 @@
|
|||||||
|
export default {}
|
||||||
|
|||||||
Loading…
Reference in New Issue