gongyujieshao.vue 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <template>
  2. <view class="content">
  3. <view class="xuzhi">
  4. <view class="xiang_title">公寓介绍</view>
  5. <view class="xiang_txt">
  6. 南昌交通学院研究生公寓由江西诚欣传统文化产业集团公司投资兴理,位于江西省靖安县墨轩湖大道1号南昌交通学院墨轩湖校区。研究生公寓实行酒店宾馆式服务管理理念。全天候24小时设有专人值班,目前设有豪华公寓、高级公寓和标准公寓三种房型共计220余套,各项生活设施一应俱全,欢迎新生和家长入住!<br>
  7. </view>
  8. </view>
  9. <!-- 第二部分,公寓设施 -->
  10. <view class="sheshi">
  11. <view class="sheshi_title">公寓设施</view>
  12. <view class="sheshi_txt">
  13. <view style="margin-top: 30rpx;flex-grow: 1; width: 300rpx;" v-for="(item, index) in sheshiList" :key="index">
  14. <image class="sheshi_icon" src="../../static/gongyuxiangqing/sheshi_icon.png"></image>{{item.list}}
  15. </view>
  16. </view>
  17. </view>
  18. </view>
  19. </template>
  20. <script>
  21. export default {
  22. data() {
  23. return {
  24. sheshiList: [{
  25. id: 1,
  26. list: '免费洗刷用品'
  27. },
  28. {
  29. id: 2,
  30. list: '24小时热水'
  31. },
  32. {
  33. id: 3,
  34. list: '客房wifi覆盖'
  35. },
  36. // {
  37. // id: 4,
  38. // list: '电视'
  39. // },
  40. {
  41. id: 6,
  42. list: '空调'
  43. },
  44. {
  45. id: 7,
  46. list: '吹风机'
  47. },
  48. {
  49. id: 9,
  50. list: '独立卫生间'
  51. },
  52. {
  53. id: 10,
  54. list: '拖鞋'
  55. },
  56. {
  57. id: 11,
  58. list: '电水壶'
  59. }
  60. ],
  61. phone: '0791-82293574'
  62. }
  63. },
  64. onLoad() {
  65. },
  66. methods: {
  67. //拨打电话
  68. telphone(phone) {
  69. uni.makePhoneCall({
  70. phoneNumber: phone,
  71. }) // 传参带入号码即可
  72. },
  73. }
  74. }
  75. </script>
  76. <style>
  77. @import url("./css/gongyuxiangqing.css");
  78. </style>