whychdw
2019-07-22 5fbb7b1a3210dbe4d8fe56b523946384eb87c3f4
修复报错
2个文件已修改
6 ■■■■ 已修改文件
src/components/MainMenu.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/home/state.vue 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/components/MainMenu.vue
@@ -47,7 +47,7 @@
                    subShowHover:false, // 是否显示对应的子导航
                    childrens: [
                        {
                            txt: '状态信息',
                            txt: '状态显示',
                            url: '/home/state',
                            active: true
                        },
src/views/home/state.vue
@@ -1,7 +1,7 @@
<template>
    <div class="layout">
        <Row>
            <Col v-for="(machine,key) in machines" :key="key" :span="getCol">
            <i-col v-for="(machine,key) in machines" :key="key" :span="getCol">
                <div class="machine-item">
                    <div class="machine-item-inner">
                        <img src="../../images/machine.png">
@@ -37,7 +37,7 @@
                        </div>
                    </div>
                </div>
            </Col>
            </i-col>
        </Row>
    </div>
</template>