fix
zhoucong
2022-04-26 12f5f889c8a13a2a942574debde0e42a405b12be
src/views/hiddenDangerManagement/fillRectification.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"
@@ -129,12 +129,14 @@
                        </el-table-column>
                    </el-table>
                </el-form>
                <div class="btns">
                <div class="btn">
                    <el-button
                        class="btns"
                        type="primary"
                        size="small"
                        @click="submitConfig('config')">保存</el-button>
                    <el-button
                        type="primary">关闭</el-button>
                        size="small" @click="close()">关闭</el-button>
                </div>
            </div>
        </div>
@@ -221,7 +223,12 @@
                    // cell.querySelector('.item__input').style.display = 'none'
                    // cell.querySelector('.item__txt').style.display = 'block'
                }
            }
            },
            close(){
                this.$router.push({
                    path:"/hiddenDangerManagement"
                })
            },
        }
    }
</script>
@@ -258,8 +265,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>