landing.vue 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <template>
  2. <view class="container">
  3. <!-- 状态栏占位 -->
  4. <view :style="{ height: statusBarHeight + 'px' }"></view>
  5. <!-- 自定义导航栏 (返回按钮) -->
  6. <view class="nav-bar">
  7. <view class="back-icon" @click="goBack">‹</view>
  8. </view>
  9. <!-- 标题区域 -->
  10. <view class="header-area">
  11. <text class="main-title">加入宠宝履约者</text>
  12. <text class="sub-title">月薪最高可达1.5万元</text>
  13. </view>
  14. <!-- 白色内容卡片 -->
  15. <view class="content-card">
  16. <view class="benefit-item">
  17. <view class="icon-circle icon-money">
  18. <text class="icon-text">¥</text>
  19. </view>
  20. <view class="info">
  21. <text class="item-title">1、收入可观</text>
  22. <text class="item-desc">小默配送为您提供一种全新的赚钱选择,利用空闲时间,获得更多收入。</text>
  23. </view>
  24. </view>
  25. <view class="benefit-item">
  26. <view class="icon-circle icon-loc">
  27. <text class="icon-text">📍</text>
  28. </view>
  29. <view class="info">
  30. <text class="item-title">2、地点灵活</text>
  31. <text class="item-desc">小默配送覆盖国内各城市与港澳台等地,您可随时就近使用。</text>
  32. </view>
  33. </view>
  34. <view class="benefit-item">
  35. <view class="icon-circle icon-clock">
  36. <text class="icon-text">🕒</text>
  37. </view>
  38. <view class="info">
  39. <text class="item-title">3、时间自由</text>
  40. <text class="item-desc">不必再受繁琐事务约束,加入小默配送,自由分配个人时间,为自己工作。</text>
  41. </view>
  42. </view>
  43. </view>
  44. <!-- 底部按钮 -->
  45. <view class="footer-area">
  46. <button class="join-btn" @click="goToForm">我要加入</button>
  47. <view class="faq">
  48. <text class="help-icon">?</text> 常见问题
  49. </view>
  50. </view>
  51. </view>
  52. </template>
  53. <script>
  54. import logic from './landing.js';
  55. export default logic;
  56. </script>
  57. <style>
  58. @import './landing.css';
  59. </style>