gongyuxiangqing.vue 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <template>
  2. <view class="content">
  3. <view class="xuzhi">
  4. <view class="xiang_title">公寓介绍</view>
  5. <view class="xiang_txt">
  6. 我们从分享时机、分享形式、分享动机、分享场景4个维度来聊聊「社交分享」的那些事儿。<br>
  7. <text style="display: block;text-indent: 56rpx;">所以监听用户的截图操作,提示用户进行分享,既缩短了以前分享截图的操作路径,避免了在之前长路径中的行为流失(比如截图完成后忘记分享或觉得麻烦放弃分享等等),也让用户觉得更加贴心。</text>
  8. <text style="display: block;text-indent: 56rpx;">用户分享内容到社交媒体或好友,不应该是一种粗暴的强制行为,我们应该在保证产品本身内容有吸引力的核心前提下,仔细揣摩用户心理,结合产品本身的特色,在不同情境下提供给用户最合适的分享平台及方式,让用户分享成为一种水到渠。</text>
  9. <text style="display: block;text-indent: 56rpx;">营业时间:24小时</text>
  10. <text style="display: block;text-indent: 56rpx;">联系电话:<text style="color:rgba(41, 109, 227, 1);">0791-256987</text></text>
  11. </view>
  12. </view>
  13. <!-- 第二部分,公寓设施 -->
  14. <view class="sheshi">
  15. <view class="sheshi_title">公寓设施</view>
  16. <view class="sheshi_txt" v-for="(item,index) in sheshiList" :key="index">
  17. <image class="sheshi_icon" src="../../static/gongyuxiangqing/sheshi_icon.png"></image>{{item.list}}
  18. </view>
  19. <view class="sheshi_txt_right">
  20. <view style="margin-top: 30rpx;" v-for="(item,index) in sheshiList2" :key="index">
  21. <image class="sheshi_icon" src="../../static/gongyuxiangqing/sheshi_icon.png"></image>{{item.list}}
  22. </view>
  23. </view>
  24. </view>
  25. </view>
  26. </template>
  27. <script>
  28. export default {
  29. data() {
  30. return {
  31. sheshiList:[
  32. {id:1,list:'免费洗刷用品'},
  33. {id:2,list:'24小时热水'},
  34. {id:3,list:'客房wifi覆盖'},
  35. {id:4,list:'电视'},
  36. {id:5,list:'电吹风'},
  37. {id:6,list:'分体式空调'},
  38. ],
  39. sheshiList2:[
  40. {id:1,list:'吹风机'},
  41. {id:2,list:'宽带上网接口'},
  42. {id:3,list:'独立卫生间'},
  43. {id:4,list:'拖鞋'},
  44. {id:5,list:'电水壶'},
  45. {id:6,list:'免费瓶装水'},
  46. ]
  47. }
  48. },
  49. onLoad() {
  50. },
  51. methods: {
  52. }
  53. }
  54. </script>
  55. <style>
  56. @import url("./css/gongyuxiangqing.css");
  57. </style>