| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <template>
- <view class="content">
- <view class="xuzhi">
- <view class="xiang_title">公寓介绍</view>
- <view class="xiang_txt">
- 南昌交通学院研究生公寓由江西诚欣传统文化产业集团公司投资兴理,位于江西省靖安县墨轩湖大道1号南昌交通学院墨轩湖校区。研究生公寓实行酒店宾馆式服务管理理念。全天候24小时设有专人值班,目前设有豪华公寓、高级公寓和标准公寓三种房型共计220余套,各项生活设施一应俱全,欢迎新生和家长入住!<br>
- </view>
- </view>
- <!-- 第二部分,公寓设施 -->
- <view class="sheshi">
- <view class="sheshi_title">公寓设施</view>
- <view class="sheshi_txt">
- <view style="margin-top: 30rpx;flex-grow: 1; width: 300rpx;" v-for="(item, index) in sheshiList" :key="index">
- <image class="sheshi_icon" src="../../static/gongyuxiangqing/sheshi_icon.png"></image>{{item.list}}
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- sheshiList: [{
- id: 1,
- list: '免费洗刷用品'
- },
- {
- id: 2,
- list: '24小时热水'
- },
- {
- id: 3,
- list: '客房wifi覆盖'
- },
- // {
- // id: 4,
- // list: '电视'
- // },
- {
- id: 6,
- list: '空调'
- },
- {
- id: 7,
- list: '吹风机'
- },
- {
- id: 9,
- list: '独立卫生间'
- },
- {
- id: 10,
- list: '拖鞋'
- },
- {
- id: 11,
- list: '电水壶'
- }
- ],
- phone: '0791-82293574'
- }
- },
- onLoad() {
- },
- methods: {
- //拨打电话
- telphone(phone) {
- uni.makePhoneCall({
- phoneNumber: phone,
- }) // 传参带入号码即可
- },
- }
- }
- </script>
- <style>
- @import url("./css/gongyuxiangqing.css");
- </style>
|