index.jsx 3.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. import { View, Image } from "@tarojs/components"
  2. import CustomNav from "@/components/CustomNav"
  3. import withLayout from '@/layouts'
  4. import './style.less'
  5. export default withLayout((props) => {
  6. return (
  7. <View className='page-index'>
  8. <View className='index-navbar'>
  9. <CustomNav title='帮助中心' />
  10. </View>
  11. <scroll-view scrollY style='height: 100%;' >
  12. <View className='help-center-cell'>
  13. <Image src='https://profile.csdnimg.cn/8/3/5/1_yunqiinsight' />
  14. <View className='help-center-cell-bottom' >
  15. <View className='help-center-cell-bottom-title' >收割机的最新消息!!</View>
  16. <View className='help-center-cell-bottom-content' >构建互联共享的“互联网+农业”信息服务体系以最终实现科学指导农业生产经营管理,政府决策监管和社会公众服务。</View>
  17. </View>
  18. </View>
  19. <View className='help-center-cell'>
  20. <Image src='https://profile.csdnimg.cn/8/3/5/1_yunqiinsight' />
  21. <View className='help-center-cell-bottom' >
  22. <View className='help-center-cell-bottom-title' >收割机的最新消息!!</View>
  23. <View className='help-center-cell-bottom-content' >构建互联共享的“互联网+农业”信息服务体系以最终实现科学指导农业生产经营管理,政府决策监管和社会公众服务。</View>
  24. </View>
  25. </View>
  26. <View className='help-center-cell'>
  27. <Image src='https://profile.csdnimg.cn/8/3/5/1_yunqiinsight' />
  28. <View className='help-center-cell-bottom' >
  29. <View className='help-center-cell-bottom-title' >收割机的最新消息!!</View>
  30. <View className='help-center-cell-bottom-content' >构建互联共享的“互联网+农业”信息服务体系以最终实现科学指导农业生产经营管理,政府决策监管和社会公众服务。</View>
  31. </View>
  32. </View>
  33. <View className='help-center-cell'>
  34. <Image src='https://profile.csdnimg.cn/8/3/5/1_yunqiinsight' />
  35. <View className='help-center-cell-bottom' >
  36. <View className='help-center-cell-bottom-title' >收割机的最新消息!!</View>
  37. <View className='help-center-cell-bottom-content' >构建互联共享的“互联网+农业”信息服务体系以最终实现科学指导农业生产经营管理,政府决策监管和社会公众服务。</View>
  38. </View>
  39. </View>
  40. <View className='help-center-cell'>
  41. <Image src='https://profile.csdnimg.cn/8/3/5/1_yunqiinsight' />
  42. <View className='help-center-cell-bottom' >
  43. <View className='help-center-cell-bottom-title' >收割机的最新消息!!</View>
  44. <View className='help-center-cell-bottom-content' >构建互联共享的“互联网+农业”信息服务体系以最终实现科学指导农业生产经营管理,政府决策监管和社会公众服务。</View>
  45. </View>
  46. </View>
  47. </scroll-view>
  48. </View>
  49. )
  50. })