You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
<template> <div> <div class="head-container"> <p class="warning"> <svg-icon icon-class="warning" /> <span>温馨提示:如需配置层位,请直接前往库房管理进行设备维护</span> </p> <div> <el-button type="primary" class="el-icon-more" size="mini" @click="handleBindParam">绑定参数</el-button> </div> </div> </div> </template>
<script> export default {
} </script>
<style lang="scss" scoped> .head-container{ display: flex; justify-content: space-between; .el-button{ width: 106px; height: 32px; background-color: #1AAE93; border: none; } } ::v-deep .el-icon-more:before{ margin-right: 8px; } .app-container{ margin-top: 0; min-height: calc(100vh - 242px); } .warning{ font-size: 14px; color: #3A99FD; span{ margin-left: 5px; } } </style>
|