guide.wxml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <!--pages/guide/guide.wxml-->
  2. <view class="container">
  3. <view class="header">
  4. <text class="title">旅游小程序使用指南</text>
  5. </view>
  6. <view class="section">
  7. <view class="section-title">
  8. <text>首页功能</text>
  9. </view>
  10. <view class="content">
  11. <text>1. 浏览推荐旅游路线:首页顶部轮播图展示精选路线</text>
  12. <text>2. 查看热门景点:滑动浏览各地热门景点推荐</text>
  13. <text>3. 发现当地美食:点击"美食"标签查看目的地特色餐饮</text>
  14. <text>4. 获取旅游资讯:实时更新的旅游攻略和出行提示</text>
  15. </view>
  16. </view>
  17. <view class="section">
  18. <view class="section-title">
  19. <text>路线规划</text>
  20. </view>
  21. <view class="content">
  22. <text>1. 点击"路线"进入路线规划页面</text>
  23. <text>2. 输入起点和目的地获取推荐路线</text>
  24. <text>3. 查看路线详情:包含景点介绍、交通方式和预计时间</text>
  25. <text>4. 收藏喜欢的路线方便下次查看</text>
  26. </view>
  27. </view>
  28. <view class="section">
  29. <view class="section-title">
  30. <text>美食探索</text>
  31. </view>
  32. <view class="content">
  33. <text>1. 按地区筛选:选择目的地查看当地美食</text>
  34. <text>2. 按类别筛选:中餐、西餐、小吃等分类浏览</text>
  35. <text>3. 查看餐厅详情:包括评分、人均消费和用户评价</text>
  36. <text>4. 收藏心仪餐厅建立个人美食清单</text>
  37. </view>
  38. </view>
  39. <view class="section">
  40. <view class="section-title">
  41. <text>实用功能</text>
  42. </view>
  43. <view class="content">
  44. <text>1. 天气查询:查看目的地近期天气情况</text>
  45. <text>2. 汇率换算:实时货币兑换计算工具</text>
  46. <text>3. 紧急联系:当地紧急联系电话一键拨打</text>
  47. <text>4. 语言助手:常用旅游短语翻译功能</text>
  48. </view>
  49. </view>
  50. <view class="footer">
  51. <text>祝您旅途愉快!如有任何问题,请联系客服。</text>
  52. </view>
  53. </view>