index.wxml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. <!--detail.wxml-->
  2. <view class="container">
  3. <view class="art-header">
  4. <view class="auto-title">
  5. <text>{{characteristics.title}}</text>
  6. </view>
  7. <view class="auto-text">
  8. <view wx:for="{{characteristics.array}}" wx:for-item="item">
  9. <view><text>{{item.text}}</text></view>
  10. </view>
  11. </view>
  12. </view>
  13. <view class="art-content">
  14. <view class="auto-title">
  15. <text>{{productOverview.title}}</text>
  16. </view>
  17. <view class="auto-text">
  18. <text>{{productOverview.text}}</text>
  19. </view>
  20. <view class="auto-title">
  21. <text>{{productAppearance.title}}</text>
  22. </view>
  23. <view class="auto-text">
  24. <image src="{{productAppearance.url}}"></image>
  25. </view>
  26. <view class="auto-title">
  27. <text>{{productCharacteristics.title}}</text>
  28. </view>
  29. <view class="auto-text">
  30. <view wx:for="{{productCharacteristics.array}}" wx:for-item="item">
  31. <view class="caption"><text>{{item.title}}</text></view>
  32. <view wx:for="{{item.array}}" wx:for-item="Itemitem">
  33. <view><text>{{Itemitem.text}}</text></view>
  34. </view>
  35. </view>
  36. </view>
  37. <view class="auto-title">
  38. <text>{{productSpecification.title}}</text>
  39. </view>
  40. <view class="auto-text">
  41. <view class="table" wx:for="{{productSpecification.array}}" wx:for-item="tableitem">
  42. <view class="tr">
  43. <view class="td td1">{{tableitem.key}}</view>
  44. <view class="td td3">{{tableitem.value}}</view>
  45. </view>
  46. </view>
  47. </view>
  48. <view class="auto-title">
  49. <text>{{orderingInformation.title}}</text>
  50. </view>
  51. <view class="auto-text">
  52. <view wx:for="{{orderingInformation.array}}" wx:for-item="item">
  53. <view class="caption"><text>{{item.title}}</text></view>
  54. <view class="table" wx:for="{{item.array}}" wx:for-item="tableitem">
  55. <view class="tr">
  56. <view class="td td1">{{tableitem.key}}</view>
  57. <view class="td td3">{{tableitem.value}}</view>
  58. </view>
  59. </view>
  60. </view>
  61. </view>
  62. <view class="auto-title">
  63. <text>{{relatedApplications.title}}</text>
  64. </view>
  65. <view class="auto-text">
  66. <text>{{relatedApplications.text}}</text>
  67. </view>
  68. <view class="auto-title">
  69. <text>{{applicationsImage.title}}</text>
  70. </view>
  71. <view class="auto-text">
  72. <view wx:for="{{applicationsImage.array}}" wx:for-item="item">
  73. <view><text>{{item.title}}</text></view>
  74. <image src="{{item.image}}"></image>
  75. </view>
  76. </view>
  77. <view class="auto-title">
  78. <text>{{installationAndUse.title}}</text>
  79. </view>
  80. <view class="auto-text">
  81. <text>{{installationAndUse.text}}</text>
  82. <view wx:for="{{installationAndUse.array}}" wx:for-item="item">
  83. <view class="caption"><text>{{item.title}}</text></view>
  84. <view><text>{{item.text}}</text></view>
  85. <image src="{{item.url}}"></image>
  86. </view>
  87. </view>
  88. <view class="auto-title"><text>{{productBottom.title}}</text></view>
  89. <view class="auto-text">
  90. <view class="caption"><text>{{productBottom.address}}</text></view>
  91. <view class="caption"><text>{{productBottom.url}}</text></view>
  92. <view class="caption"><text>{{productBottom.phone}}</text></view>
  93. <view class="caption"><text>{{productBottom.email}}</text></view>
  94. </view>
  95. </view>
  96. </view>