爱简收旧衣按件回收前端代码仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

229 lines
7.2 KiB

1 week ago
1 week ago
1 week ago
1 week ago
1 week ago
  1. <template>
  2. <view class="about-container">
  3. <!-- 顶部导航栏 -->
  4. <view class="nav-bar" :style="{height: (statusBarHeight + 88) + 'rpx', paddingTop: statusBarHeight + 'px'}">
  5. <view class="back" @tap="goBack">
  6. <uni-icons type="left" size="20"></uni-icons>
  7. </view>
  8. <text class="title">关于我们</text>
  9. </view>
  10. <!-- 主卡片 -->
  11. <view class="main-card" :style="{marginTop: (statusBarHeight + 88) + 'rpx'}">
  12. <text class="main-title">瀚海回收</text>
  13. <text class="main-desc">瀚海回收致力于打造一个便捷高效且环保的旧衣回收平台为用户提供符合环保理念的旧衣回收解决方案助力资源循环利用和可持续发展</text>
  14. <view class="service-tags">
  15. <view class="tag-item">
  16. <image class="tag-icon" src="/static/about/free.png" mode="aspectFit"></image>
  17. <text class="tag-text">免费寄</text>
  18. </view>
  19. <view class="tag-item">
  20. <image class="tag-icon" src="/static/about/inspect.png" mode="aspectFit"></image>
  21. <text class="tag-text">逐件验</text>
  22. </view>
  23. <view class="tag-item">
  24. <image class="tag-icon" src="/static/about/fast.png" mode="aspectFit"></image>
  25. <text class="tag-text">秒到账</text>
  26. </view>
  27. <view class="tag-item">
  28. <image class="tag-icon" src="/static/about/eco.png" mode="aspectFit"></image>
  29. <text class="tag-text">助环保</text>
  30. </view>
  31. </view>
  32. <!-- 服务介绍区块 -->
  33. <view class="service-section">
  34. <view class="section-title">
  35. <image class="section-icon" src="/static/home/② 快递上门.png" mode="aspectFit"></image>
  36. <text>免费寄</text>
  37. </view>
  38. <text class="section-desc">我们为用户提供一个便捷且无负担的旧衣回收服务用户只需在平台上提交旧衣回收申请我们会提供免费的上门取件服务无论您有多少衣物想要处理都可以轻松寄出让旧衣变资源</text>
  39. <image class="section-img" src="/static/回收/回收规则.png" mode="aspectFit"></image>
  40. </view>
  41. <view class="service-section">
  42. <view class="section-title">
  43. <image class="section-icon" src="/static/home/③ 透明质检.png" mode="aspectFit"></image>
  44. <text>逐件验</text>
  45. </view>
  46. <text class="section-desc">我们对每一件回收的旧衣进行严格的逐件验收确保衣物符合回收标准我们的专业团队会仔细检查每一件衣物的状况包括是否破损是否有严重污染异味等只有符合要求的旧衣才会进入后续的处理流程以保证回收质量和效率</text>
  47. <image class="section-img" src="/static/回收/回收规则.png" mode="aspectFit"></image>
  48. </view>
  49. <view class="service-section">
  50. <view class="section-title">
  51. <image class="section-icon" src="/static/home/④ 现金打款.png" mode="aspectFit"></image>
  52. <text>秒到账</text>
  53. </view>
  54. <text class="section-desc">我们深知用户对资金结算的及时性要求因此建立了高效的结算系统订单成功推单回收订单后佣金会及时到账无论订单有多少件我们都承诺在最短时间内为您发放奖励确保用户收益的及时性和稳定性</text>
  55. <image class="section-img" src="/static/回收/回收规则.png" mode="aspectFit"></image>
  56. </view>
  57. <view class="service-section">
  58. <view class="section-title">
  59. <image class="section-icon" src="/static/home/碳循再生.png" mode="aspectFit"></image>
  60. <text>助环保</text>
  61. </view>
  62. <text class="section-desc">我们的使命是通过旧衣回收推动环保事业的发展实现资源的循环再利用我们始终以环保为核心理念不断优化服务流程提高用户体验以实现经济效益与环保效益的双赢加入我们一起为环保事业贡献力量让旧衣焕发新的价值</text>
  63. <image class="section-img" src="/static/回收/回收规则.png" mode="aspectFit"></image>
  64. </view>
  65. <!-- 底部说明 -->
  66. <view class="about-footer">
  67. <view class="footer-divider"></view>
  68. <text class="footer-text">如有任何问题或建议请随时与我们联系我们将竭诚为您服务</text>
  69. </view>
  70. </view>
  71. </view>
  72. </template>
  73. <script>
  74. import pullRefreshMixin from '@/pages/mixins/pullRefreshMixin.js'
  75. export default {
  76. mixins: [pullRefreshMixin],
  77. data() {
  78. return {
  79. statusBarHeight: 0
  80. }
  81. },
  82. onLoad() {
  83. this.statusBarHeight = uni.getSystemInfoSync().statusBarHeight
  84. },
  85. methods: {
  86. goBack() {
  87. uni.navigateBack();
  88. },
  89. async onRefresh() {
  90. // 模拟刷新数据
  91. await new Promise(resolve => setTimeout(resolve, 1000))
  92. this.stopPullRefresh()
  93. }
  94. }
  95. }
  96. </script>
  97. <style scoped lang="scss">
  98. .about-container {
  99. min-height: 100vh;
  100. background: linear-gradient(180deg, #fff3db 0%, #fffefb 30%);
  101. padding-bottom: 40rpx;
  102. }
  103. .nav-bar {
  104. position: fixed;
  105. top: 0;
  106. left: 0;
  107. right: 0;
  108. z-index: 999;
  109. display: flex;
  110. align-items: center;
  111. background: #fffbe6;
  112. padding: 0 30rpx;
  113. .back {
  114. padding: 20rpx;
  115. margin-left: -20rpx;
  116. }
  117. .title {
  118. flex: 1;
  119. text-align: center;
  120. font-family: PingFang SC;
  121. font-weight: 500;
  122. font-size: 16px;
  123. line-height: 140%;
  124. letter-spacing: 0%;
  125. text-align: center;
  126. vertical-align: middle;
  127. font-weight: 500;
  128. color: #222;
  129. }
  130. }
  131. .main-card {
  132. background: #ffffff;
  133. border-radius: 36rpx;
  134. box-shadow: 0 8rpx 32rpx rgba(255, 156, 0, 0.08);
  135. margin: 32rpx 24rpx 0 24rpx;
  136. padding: 40rpx 32rpx 32rpx 32rpx;
  137. display: flex;
  138. flex-direction: column;
  139. align-items: stretch;
  140. }
  141. .main-title {
  142. font-size: 32rpx;
  143. font-weight: bold;
  144. color: #222;
  145. margin-bottom: 18rpx;
  146. }
  147. .main-desc {
  148. font-size: 26rpx;
  149. color: #444;
  150. margin-bottom: 32rpx;
  151. line-height: 1.7;
  152. }
  153. .service-tags {
  154. display: grid;
  155. grid-template-columns: 1fr 1fr;
  156. gap: 24rpx 24rpx;
  157. margin-bottom: 36rpx;
  158. }
  159. .tag-item {
  160. background: #fff8ea;
  161. border-radius: 24rpx;
  162. box-shadow: 0 2rpx 8rpx rgba(255, 156, 0, 0.06);
  163. display: flex;
  164. flex-direction: row;
  165. align-items: center;
  166. justify-content: center;
  167. padding: 28rpx 0 18rpx 0;
  168. min-height: 90rpx;
  169. gap: 12rpx;
  170. }
  171. .tag-icon {
  172. width: 40rpx;
  173. height: 40rpx;
  174. margin: 0;
  175. }
  176. .tag-text {
  177. font-size: 26rpx;
  178. color: #222;
  179. font-weight: 500;
  180. }
  181. .service-section {
  182. margin-bottom: 36rpx;
  183. }
  184. .section-title {
  185. display: flex;
  186. align-items: center;
  187. font-size: 28rpx;
  188. font-weight: bold;
  189. color: #222;
  190. margin-bottom: 12rpx;
  191. .section-icon {
  192. width: 32rpx;
  193. height: 32rpx;
  194. margin-right: 12rpx;
  195. }
  196. }
  197. .section-desc {
  198. font-size: 24rpx;
  199. color: #666;
  200. line-height: 1.7;
  201. margin-bottom: 18rpx;
  202. }
  203. .section-img {
  204. width: 80%;
  205. margin: 0 auto;
  206. display: block;
  207. border-radius: 24rpx;
  208. box-shadow: 0 2rpx 8rpx rgba(255, 156, 0, 0.04);
  209. }
  210. .about-footer {
  211. margin-top: 24rpx;
  212. text-align: center;
  213. }
  214. .footer-divider {
  215. width: 100%;
  216. height: 1rpx;
  217. background: #f0f0f0;
  218. margin: 32rpx 0 18rpx 0;
  219. }
  220. .footer-text {
  221. color: #bcbcbc;
  222. font-size: 24rpx;
  223. margin-bottom: 18rpx;
  224. }
  225. </style>