ruzhuxuzhi.vue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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>
  8. </template>
  9. <script>
  10. export default {
  11. data() {
  12. return {
  13. xuzhiList: [{
  14. id: 1,
  15. list: '尊敬的家长,欢迎入住本公寓,为了给您的居住环境营造安全舒适的环境,在入住公寓前请仔细阅读并遵守本须知:'
  16. }, {
  17. id: 2,
  18. list: '一、入住人员凭本人有效身份证在前台办理入住手续。'
  19. },
  20. {
  21. id: 3,
  22. list: '二、办理住宿登记后,方可入住,退房时间为次日中午12点前,超过12点增收半天房费,晚上6点以后离店收取一天房费。'
  23. },
  24. {
  25. id: 4,
  26. list: '三、在9月3日之前均可免费取消,9月3号之后房间保留不退款,9月5号系统将关闭,所有用户需线下订房。'
  27. },
  28. {
  29. id: 5,
  30. list: '四、入住时需交定额押金,如有丢失失钥匙/ic卡,把被单、被罩染上油渍、污渍、血渍或被单烧坏将扣除押金或照价赔偿。'
  31. },
  32. {
  33. id: 6,
  34. list: '五、禁止在客房内吸烟,更不能在客房内燃烧物品。'
  35. },
  36. {
  37. id: 7,
  38. list: '六、为了防止影响其他入住人员休息,晚间外出请在12点前返回。'
  39. },
  40. {
  41. id: 8,
  42. list: '七、禁止使用电烤箱、电饭煲、电炉等大功率电器用品。'
  43. },
  44. {
  45. id: 9,
  46. list: '八、24小时热线电话:19807957890'
  47. },
  48. ]
  49. }
  50. },
  51. onLoad() {
  52. },
  53. methods: {
  54. }
  55. }
  56. </script>
  57. <style scoped>
  58. .container {
  59. display: flex;
  60. flex-direction: column;
  61. justify-content: center;
  62. align-items: center;
  63. background-color: #F2F3F5;
  64. }
  65. .title {
  66. font-size: 32rpx;
  67. font-weight: 600;
  68. text-align: center;
  69. width: 750rpx;
  70. height: 100rpx;
  71. line-height: 100rpx;
  72. background: rgba(255, 255, 255, 1);
  73. color: rgba(102, 102, 102, 1);
  74. box-sizing: border-box;
  75. }
  76. .items {
  77. width: 750rpx;
  78. height: calc(100vh - 100rpx);
  79. background: rgba(255, 255, 255, 1);
  80. color: rgba(102, 102, 102, 1);
  81. font-size: 28rpx;
  82. font-weight: 400;
  83. text-indent: 2em;
  84. box-sizing: border-box;
  85. padding-right: 20rpx;
  86. }
  87. </style>