index.wxml 3.5 KB

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