details.vue 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <template>
  2. <!-- 病虫害百科详情 -->
  3. <view class="page-panel pest-panel">
  4. <!-- 图片 -->
  5. <image src="@/static/demo/demo1.png" class="pest-cover" mode="widthFix"></image>
  6. <!-- 百科标题 -->
  7. <view class="pest-title">小麦赤霉病</view>
  8. <!-- 百科内容 -->
  9. <view class="pest-subtitle">别称</view>
  10. <view class="pest-paragraph">麦穗枯、烂麦头、红麦头</view>
  11. <view class="pest-subtitle">病原体</view>
  12. <view class="pest-paragraph">真菌、禾谷镰孢、燕麦镰孢等</view>
  13. <view class="pest-subtitle">分布</view>
  14. <view class="pest-paragraph">在全世界普遍发生,主要分布与潮湿和半潮湿区域</view>
  15. <view class="pest-subtitle">病原体特征</view>
  16. <view class="pest-paragraph">小麦赤霉病由多种镰刀菌引起。如禾谷镰孢(Fusarium graminearum schw.)、燕麦镰孢(Fusarium avenaceum (Fr.)
  17. Sacc.)、串珠镰孢(Fusarium moniliforme sheld.)、黄色镰孢(Fusarium culmorum (W. G. Smith) Sacc)和税顶镰孢(Fusarium acuminatum
  18. (ElL et Ev) Wr)等也能引起小麦赤霉病。</view>
  19. <view class="pest-subtitle">综合症状</view>
  20. <view class="pest-paragraph">麦生长的各个阶段都能受害,苗期侵染引小麦赤霉病的发生流行主要与小麦生育期、气候条件、菌源等因素引起苗腐,中后期侵染引起秆腐和穗腐,以穗腐危害性最大。</view>
  21. </view>
  22. </template>
  23. <script>
  24. export default {
  25. data() {
  26. return {
  27. };
  28. }
  29. }
  30. </script>
  31. <style lang="scss">
  32. // 病虫害百科面板
  33. .pest-panel {
  34. padding: 24rpx;
  35. }
  36. .pest-cover {
  37. display: block;
  38. width: 100%;
  39. margin-bottom: 48rpx;
  40. border-radius: 4rpx;
  41. }
  42. .pest-title {
  43. margin-bottom: 10rpx;
  44. font-size: 32rpx;
  45. color: #333;
  46. line-height: 45rpx;
  47. }
  48. .pest-subtitle {
  49. position: relative;
  50. padding-left: 36rpx;
  51. margin-bottom: 12rpx;
  52. font-size: 32rpx;
  53. color: #666666;
  54. line-height: 45rpx;
  55. &:before {
  56. content: '';
  57. position: absolute;
  58. top: 5rpx;
  59. left: 10rpx;
  60. display: block;
  61. width: 0;
  62. border-color:transparent transparent transparent #317AFD;
  63. border-width: 18rpx;
  64. border-style: solid;
  65. transform: scaleY(0.6);
  66. }
  67. }
  68. .pest-paragraph {
  69. word-break: break-word;
  70. margin-left: 36rpx;
  71. margin-bottom: 24rpx;
  72. font-size: 28rpx;
  73. font-weight: normal;
  74. color: #999999;
  75. line-height: 40rpx;
  76. }
  77. </style>