guide.vue 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <template>
  2. <view class="pages">
  3. <view class="" style="font-size: 36rpx;font-weight: 700;">
  4. 专属森林向导提醒您
  5. </view>
  6. <view class="content">
  7. 旅行过程中使用的所有物品都必须装在行李中。行李的大小、重量、数量需要根据季节、距离、行程长短等因素,本着细心、简单的原则来决定。出行项目细致,一定要仔细考虑细节。如果能在旅途中补给,尽量不要从起点带走;而且一些应急物品一定要提前准备好。旅行需要一个小的贴身包和一个大行李箱。
  8. </view>
  9. <view class="" style="font-size: 36rpx;font-weight: 700;">
  10. 您的专属森林向导
  11. </view>
  12. <view class="image">
  13. </view>
  14. <view class="submit">
  15. 保存二维码到相册
  16. </view>
  17. </view>
  18. </template>
  19. <script>
  20. </script>
  21. <style lang="less">
  22. page{
  23. background-color: #F4F4F4;
  24. font-size: 28rpx;
  25. }
  26. .pages{
  27. margin: 40rpx 30rpx;
  28. .content{
  29. margin: 24rpx 0 94rpx;
  30. }
  31. .image{
  32. width: 200rpx;
  33. height: 200rpx;
  34. background-color: pink;
  35. margin: 40rpx auto 73rpx;
  36. }
  37. .submit{
  38. margin: 0 auto;
  39. box-sizing: border-box;
  40. text-align: center;
  41. color: #FFFFFF;
  42. width: 654rpx;
  43. height: 92rpx;
  44. line-height: 92rpx;
  45. background: #1E9F6A;
  46. border-radius: 8rpx 16rpx 8rpx 16rpx;
  47. }
  48. }
  49. </style>