detail.wxml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <!--detail.wxml-->
  2. <view class="container">
  3. <view class="art-header">
  4. <view class="auto-title">
  5. <text>{{productOverview.tiele}}</text>
  6. </view>
  7. <view class="auto-text">
  8. <text>{{productOverview.text}}</text>
  9. </view>
  10. </view>
  11. <view class="art-content">
  12. <view class="auto-title">
  13. <text>{{productAppearance.title}}</text>
  14. </view>
  15. <view class="auto-text">
  16. <image src="{{productAppearance.image}}"></image>
  17. </view>
  18. <view class="auto-title">
  19. <text>{{productCharacteristics.title}}</text>
  20. </view>
  21. <view class="auto-text">
  22. <view wx:for="{{productCharacteristics.array}}" wx:for-item="item">
  23. <view><text>{{item.text}}</text></view>
  24. </view>
  25. </view>
  26. <view class="auto-title">
  27. <text>{{productSpecification.text}}</text>
  28. </view>
  29. <view wx:for="{{productSpecification.array}}" wx:for-item="item">
  30. <view class="caption"><text>{{item.text}}</text></view>
  31. <view class="table" wx:for="{{item.array}}" wx:for-item="tableitem">
  32. <view class="tr">
  33. <view class="td td1">{{tableitem.key}}</view>
  34. <view class="td td3">{{tableitem.value}}</view>
  35. </view>
  36. </view>
  37. </view>
  38. <view class="auto-title">
  39. <text>{{relatedProducts.text}}</text>
  40. </view>
  41. <view class="auto-text">
  42. <view wx:for="{{relatedProducts.array}}" wx:for-item="item">
  43. <image src="{{item.image}}"></image>
  44. <view class="caption"><text>{{item.text}}</text></view>
  45. </view>
  46. </view>
  47. <view class="auto-title">
  48. <text>{{relatedApplications.text}}</text>
  49. </view>
  50. <view class="auto-text">
  51. <view wx:for="{{relatedApplications.array}}" wx:for-item="item">
  52. <view><text>{{item.text}}</text></view>
  53. </view>
  54. </view>
  55. <view class="auto-text">
  56. <view wx:for="{{relatedBottomArray.array}}" wx:for-item="item">
  57. <image src="{{item.image}}"></image>
  58. <view class="caption"><text>{{item.text}}</text></view>
  59. </view>
  60. </view>
  61. <view class="auto-text">
  62. <view wx:for="{{relatedBottomImageArray.array}}" wx:for-item="item">
  63. <image src="{{item.image}}"></image>
  64. </view>
  65. </view>
  66. <view class="auto-title"><text>{{productBottom.title}}</text></view>
  67. <view class="auto-text">
  68. <view class="caption"><text>{{productBottom.address}}</text></view>
  69. <view class="caption"><text>{{productBottom.url}}</text></view>
  70. <view class="caption"><text>{{productBottom.phone}}</text></view>
  71. <view class="caption"><text>{{productBottom.email}}</text></view>
  72. </view>
  73. </view>
  74. </view>