ruzhuxuzhi.vue 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. <template>
  2. <view class="container">
  3. <view class="title">研究生公寓入住温馨提示</view>
  4. <view class="items">
  5. <view style="margin-left: 50rpx;margin-top: 15rpx;margin-right: 15rpx;" v-for="( item, index ) in xuzhiList" :key="index">{{ item.list }}</view>
  6. </view>
  7. <view class="inscribe">研究生公寓</view>
  8. </view>
  9. </template>
  10. <script>
  11. export default {
  12. data() {
  13. return {
  14. xuzhiList: [{
  15. id: 1,
  16. list: '尊敬的新生家长:'
  17. }, {
  18. id: 2,
  19. list: '欢迎选择入住研究生公寓,为维护公寓正常秩序,保障大家的人身、财产平安,根据学校《研究生公寓管理规定》,现将公寓入住有关事项提示如下:'
  20. },
  21. {
  22. id: 3,
  23. list: '1、新生家长入住,须出示有效证件,核对预定信息,办理登记手续。'
  24. },
  25. {
  26. id: 4,
  27. list: '2、入住期间公寓不提供早餐,如有需要可到选择到学校食堂或商业街用餐。'
  28. },
  29. {
  30. id: 5,
  31. list: '3、为保障入住环境,公寓每天会安排保洁人员对各房间和楼层进行卫生保洁,并配置一次性洗漱用品。'
  32. },
  33. {
  34. id: 6,
  35. list: '4、外出时,请注意门是否锁上,切勿将贵重物品留在房间内,如有遗失,概不负责。'
  36. },
  37. {
  38. id: 7,
  39. list: '5、公寓退房时间为次日中午12:00前,超过中午12:00增收半天房费,晚上(下午)18:00以后离开收取1天的房费。'
  40. },
  41. {
  42. id: 8,
  43. list: '6、为了您的健康和平安,请勿卧床吸烟,烟蒂请投入烟灰缸内。'
  44. },
  45. {
  46. id: 9,
  47. list: '7、请保持室内外卫生,不要随地吐痰,乱扔废弃物,更不要在洗脸池内乱扔脏物,以免堵塞管道。'
  48. },
  49. {
  50. id: 10,
  51. list: '8、入住时需缴纳押金200元,如有遗失钥匙或把被单、被罩染上油渍、污渍、血渍或被单烧坏将扣除押金或照价赔偿。'
  52. },{
  53. id: 11,
  54. list: '感谢您的支持与配合!'
  55. }
  56. ]
  57. }
  58. },
  59. onLoad() {
  60. },
  61. methods: {
  62. }
  63. }
  64. </script>
  65. <style scoped>
  66. .container {
  67. display: flex;
  68. flex-direction: column;
  69. justify-content: center;
  70. align-items: center;
  71. background-color: #F2F3F5;
  72. }
  73. .title {
  74. font-size: 32rpx;
  75. font-weight: 800;
  76. text-align: center;
  77. width: 750rpx;
  78. height: 100rpx;
  79. line-height: 100rpx;
  80. background: rgba(255, 255, 255, 1);
  81. color: rgba(102, 102, 102, 1);
  82. box-sizing: border-box;
  83. }
  84. .items {
  85. width: 750rpx;
  86. height: auto;
  87. background: rgba(255, 255, 255, 1);
  88. color: rgba(102, 102, 102, 1);
  89. font-size: 28rpx;
  90. font-weight: 400;
  91. text-indent: 2em;
  92. box-sizing: border-box;
  93. padding-right: 20rpx;
  94. }
  95. .inscribe {
  96. width: 750rpx;
  97. text-align: right;
  98. box-sizing: border-box;
  99. font-size: 28rpx;
  100. font-weight: 400;
  101. background: rgba(255, 255, 255, 1);
  102. color: rgba(102, 102, 102, 1);
  103. padding: 0 50rpx 80rpx 0;
  104. }
  105. </style>