ShareholdersEquity.vue 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <template>
  2. <window-size class="gdbj">
  3. <div v-for="(val, catagory) in benefits">
  4. <div class="catagory-title">
  5. {{catagory}}
  6. </div>
  7. <div v-for="item in val">
  8. <div class="catagory-item">
  9. {{item.label}}
  10. </div>
  11. </div>
  12. </div>
  13. </window-size>
  14. </template>
  15. <script setup>
  16. const benefits = {
  17. '◆ 门诊福利': [
  18. { id: 1001, label: '专享挂号费2元', url: '' },
  19. { id: 1002, label: '知名专家挂号费5折', url: '' },
  20. { id: 1003, label: '门诊B超、CT、核磁8折', url: '' },
  21. { id: 1004, label: '中药95折', url: '' },
  22. { id: 1005, label: '康复理疗8折', url: '' },
  23. { id: 1006, label: '口腔免费拍片', url: '' },
  24. { id: 1007, label: '种植牙减免1000元', url: '' },
  25. { id: 1008, label: '视光配镜7折', url: '' },
  26. { id: 1009, label: '产检、产后康复套餐8折', url: '' },
  27. ],
  28. '◆ 体检福利': [
  29. { id: 2001, label: '体检5折', url: '' },
  30. { id: 2002, label: '股东亲友6折', url: '' },
  31. ],
  32. '◆ 住院福利': [
  33. { id: 3001, label: '住院包', url: '' },
  34. { id: 3002, label: '入院绿色通道', url: '' },
  35. { id: 3003, label: '免费陪诊服务', url: '' },
  36. { id: 3004, label: '工会福利', url: '' },
  37. ]
  38. }
  39. </script>
  40. <style scoped>
  41. .gdbj {
  42. background-image: url('https://staticweb.hnthyy.cn/images/gdbj.jpg');
  43. background-repeat: no-repeat;
  44. background-size: 100% 100%
  45. }
  46. .catagory-title {
  47. background-color: #343434;
  48. color: #ffc85a;
  49. font-size: 18px;
  50. font-weight: bold;
  51. line-height: 36px;
  52. padding-left: 12px;
  53. }
  54. .catagory-item {
  55. padding-left: 28px;
  56. line-height: 30px;
  57. font-size: 16px;
  58. font-weight: bold;
  59. }
  60. </style>