fix
zhoucong
2022-04-22 04031b86d12c54dad59ebca8819f03479e87924f
src/views/hiddenDangerManagement/fillInspector.vue
@@ -6,7 +6,7 @@
                <el-form :model="config" ref="configTableForm">
                    <el-table
                        :data="tableData"
                        size="mini"
                        border
                        style="width: 1600px"
                        @cell-mouse-enter="handleCellEnter"
                        @cell-mouse-leave="handleCellLeave"
@@ -153,12 +153,14 @@
                        </el-table-column>
                    </el-table>
                </el-form>
                <div class="btns">
                <div class="btn">
                    <el-button
                        class="btns"
                        size="small"
                        type="primary"
                        @click="submitConfig('config')">保存</el-button>
                    <el-button
                        type="primary">关闭</el-button>
                    <el-button  size="small"
                         @click="close()">关闭</el-button>
                </div>
            </div>
        </div>
@@ -254,6 +256,11 @@
                    // cell.querySelector('.item__input').style.display = 'none'
                    // cell.querySelector('.item__txt').style.display = 'block'
                }
            },
            close(){
                this.$router.push({
                    path:"/hiddenDangerManagement"
                })
            }
        }
    }
@@ -291,8 +298,17 @@
    /deep/ .is-center{
        font-size: 14px;
    }
    .btns{
    .btn{
        text-align: center;
        margin-top: 50px;
    }
    .btns{
        background-color: #034ea2;
        border: 1px solid #034ea2;
    }
    /*.el-button:hover {*/
    /*    background: #66b1ff;*/
    /*    border-color: #66b1ff;*/
    /*    color: #FFF;*/
    /*}*/
</style>