【前端】智能库房综合管理系统前端项目
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.

46 lines
915 B

  1. <template>
  2. <div>
  3. <div class="head-container">
  4. <p class="warning">
  5. <svg-icon icon-class="warning" />
  6. <span>温馨提示如需配置层位请直接前往库房管理进行设备维护</span>
  7. </p>
  8. <div>
  9. <el-button type="primary" class="el-icon-more" size="mini" @click="handleBindParam">绑定参数</el-button>
  10. </div>
  11. </div>
  12. </div>
  13. </template>
  14. <script>
  15. export default {
  16. }
  17. </script>
  18. <style lang="scss" scoped>
  19. .head-container{
  20. display: flex;
  21. justify-content: space-between;
  22. .el-button{
  23. width: 106px;
  24. height: 32px;
  25. background-color: #1AAE93;
  26. border: none;
  27. }
  28. }
  29. ::v-deep .el-icon-more:before{
  30. margin-right: 8px;
  31. }
  32. .app-container{
  33. margin-top: 0;
  34. min-height: calc(100vh - 242px);
  35. }
  36. .warning{
  37. font-size: 14px;
  38. color: #3A99FD;
  39. span{
  40. margin-left: 5px;
  41. }
  42. }
  43. </style>