华西海圻ELN前端工程
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.

43 lines
867 B

  1. <template>
  2. <div class="content-title">
  3. <div class="line"></div>
  4. <div class="subtitle"> {{$t($attrs.label)}}</div>
  5. </div>
  6. </template>
  7. <script>
  8. export default {
  9. }
  10. </script>
  11. <style lang="scss" scoped>
  12. .content-title {
  13. width: 100%;
  14. background: #f9f9ff;
  15. font-size: 0.96rem;
  16. font-weight: bold;
  17. padding-left: 10px;
  18. height: 40px;
  19. line-height: 40px;
  20. display: flex;
  21. justify-content: flex-start;
  22. text-align: left;
  23. margin-top: 20px;
  24. page-break-inside: avoid;
  25. .line {
  26. width: 2px;
  27. float: left;
  28. height: 16px;
  29. margin-top: 12px;
  30. margin-right: 8px;
  31. border-left: #3178ff 3px solid;
  32. }
  33. .subtitle {
  34. height: 40px;
  35. line-height: 40px;
  36. color: #464647 !important;
  37. }
  38. }
  39. </style>