HeadInfo.vue 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <template>
  2. <div class="head-info" :class="center && 'center'">
  3. <span>{{ title }}</span>
  4. <p>{{ content }}</p>
  5. <em v-if="bordered"/>
  6. </div>
  7. </template>
  8. <script>
  9. export default {
  10. name: 'HeadInfo',
  11. props: {
  12. title: {
  13. type: String,
  14. default: ''
  15. },
  16. content: {
  17. type: String,
  18. default: ''
  19. },
  20. bordered: {
  21. type: Boolean,
  22. default: false
  23. },
  24. center: {
  25. type: Boolean,
  26. default: true
  27. }
  28. }
  29. }
  30. </script>
  31. <style lang="scss" scoped>
  32. .head-info {
  33. position: relative;
  34. text-align: left;
  35. padding: 0 32px 0 0;
  36. min-width: 125px;
  37. &.center {
  38. text-align: center;
  39. padding: 0 32px;
  40. }
  41. span {
  42. color: rgba(0, 0, 0, .45);
  43. display: inline-block;
  44. font-size: 14px;
  45. line-height: 22px;
  46. margin-bottom: 4px;
  47. }
  48. p {
  49. color: rgba(0, 0, 0, .85);
  50. font-size: 24px;
  51. line-height: 32px;
  52. margin: 0;
  53. }
  54. em {
  55. background-color: #e8e8e8;
  56. position: absolute;
  57. height: 56px;
  58. width: 1px;
  59. top: 0;
  60. right: 0;
  61. }
  62. }
  63. </style>