| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- <template>
- <view class="container">
- <view class="title">研究生公寓入住温馨提示</view>
- <view class="items">
- <view style="margin-left: 50rpx;margin-top: 15rpx;margin-right: 15rpx;" v-for="( item, index ) in xuzhiList" :key="index">{{ item.list }}</view>
- </view>
- <view class="inscribe">研究生公寓</view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- xuzhiList: [{
- id: 1,
- list: '尊敬的新生家长:'
- }, {
- id: 2,
- list: '欢迎选择入住研究生公寓,为维护公寓正常秩序,保障大家的人身、财产平安,根据学校《研究生公寓管理规定》,现将公寓入住有关事项提示如下:'
- },
- {
- id: 3,
- list: '1、新生家长入住,须出示有效证件,核对预定信息,办理登记手续。'
- },
- {
- id: 4,
- list: '2、入住期间公寓不提供早餐,如有需要可到选择到学校食堂或商业街用餐。'
- },
- {
- id: 5,
- list: '3、为保障入住环境,公寓每天会安排保洁人员对各房间和楼层进行卫生保洁,并配置一次性洗漱用品。'
- },
- {
- id: 6,
- list: '4、外出时,请注意门是否锁上,切勿将贵重物品留在房间内,如有遗失,概不负责。'
- },
- {
- id: 7,
- list: '5、公寓退房时间为次日中午12:00前,超过中午12:00增收半天房费,晚上(下午)18:00以后离开收取1天的房费。'
- },
- {
- id: 8,
- list: '6、为了您的健康和平安,请勿卧床吸烟,烟蒂请投入烟灰缸内。'
- },
- {
- id: 9,
- list: '7、请保持室内外卫生,不要随地吐痰,乱扔废弃物,更不要在洗脸池内乱扔脏物,以免堵塞管道。'
- },
- {
- id: 10,
- list: '8、入住时需缴纳押金200元,如有遗失钥匙或把被单、被罩染上油渍、污渍、血渍或被单烧坏将扣除押金或照价赔偿。'
- },{
- id: 11,
- list: '感谢您的支持与配合!'
- }
- ]
- }
- },
- onLoad() {
- },
- methods: {
- }
- }
- </script>
- <style scoped>
- .container {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- background-color: #F2F3F5;
- }
- .title {
- font-size: 32rpx;
- font-weight: 800;
- text-align: center;
- width: 750rpx;
- height: 100rpx;
- line-height: 100rpx;
- background: rgba(255, 255, 255, 1);
- color: rgba(102, 102, 102, 1);
- box-sizing: border-box;
- }
- .items {
- width: 750rpx;
- height: auto;
- background: rgba(255, 255, 255, 1);
- color: rgba(102, 102, 102, 1);
- font-size: 28rpx;
- font-weight: 400;
- text-indent: 2em;
- box-sizing: border-box;
- padding-right: 20rpx;
- }
-
- .inscribe {
- width: 750rpx;
- text-align: right;
- box-sizing: border-box;
- font-size: 28rpx;
- font-weight: 400;
- background: rgba(255, 255, 255, 1);
- color: rgba(102, 102, 102, 1);
- padding: 0 50rpx 80rpx 0;
- }
- </style>
|