index.wxml 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. <!--detail.wxml-->
  2. <view class="container">
  3. <view class="art-header">
  4. <view class="auto-title">
  5. <text>{{matureScheme.title}}</text>
  6. </view>
  7. <view class="auto-text">
  8. <view wx:for="{{matureScheme.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. <view><text>{{productOverview.text}}</text></view>
  19. </view>
  20. <view class="auto-title">
  21. <text>{{productAppearance.title}}</text>
  22. </view>
  23. <view class="auto-text">
  24. <view wx:for="{{productAppearance.array}}" wx:for-item="item">
  25. <image class="auto-image" src="{{item.url}}"></image>
  26. </view>
  27. </view>
  28. <view class="auto-title">
  29. <text>{{productCharacteristics.title}}</text>
  30. </view>
  31. <view class="auto-text">
  32. <view wx:for="{{productCharacteristics.array}}" wx:for-item="item">
  33. <view class="caption"><text>{{item.title}}</text></view>
  34. <view wx:for="{{item.array}}" wx:for-item="itemItem">
  35. <view><text>{{itemItem.text}}</text></view>
  36. </view>
  37. </view>
  38. </view>
  39. <view class="auto-title">
  40. <text>{{productSpecification.title}}</text>
  41. </view>
  42. <view class="table" wx:for="{{productSpecification.array}}" wx:for-item="tableitem">
  43. <view class="tr">
  44. <view class="td td1">{{tableitem.key}}</view>
  45. <view class="td td3">{{tableitem.value}}</view>
  46. </view>
  47. </view>
  48. <view class="auto-title">
  49. <text>{{orderingInformation.title}}</text>
  50. </view>
  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 class="auto-title">
  61. <text>{{relatedApplications.title}}</text>
  62. </view>
  63. <view class="auto-text">
  64. <view><text>{{relatedApplications.text}}</text></view>
  65. </view>
  66. <view class="auto-text">
  67. <view wx:for="{{relatedApplications.array}}" wx:for-item="ites">
  68. <view class="caption"><text>{{ites.title}}</text></view>
  69. <image class="auto-image" src="{{ites.image}}"></image>
  70. </view>
  71. </view>
  72. <view class="auto-title">
  73. <text>{{installationAndUse.title}}</text>
  74. </view>
  75. <view class="auto-text">
  76. <view><text>{{installationAndUse.text}}</text></view>
  77. </view>
  78. <view class="auto-text">
  79. <view class="caption"><text>{{installationAndUse.imagedata.title}}</text></view>
  80. <view wx:for="{{installationAndUse.imagedata.array}}" wx:for-item="ites">
  81. <view class="caption"><text>{{ites.title}}</text></view>
  82. <image class="auto-image" src="{{ites.image}}"></image>
  83. </view>
  84. </view>
  85. </view>
  86. <view class="auto-title"><text>{{productBottom.title}}</text></view>
  87. <view class="auto-text">
  88. <view class="caption"><text>{{productBottom.address}}</text></view>
  89. <view class="caption"><text>{{productBottom.url}}</text></view>
  90. <view class="caption"><text>{{productBottom.phone}}</text></view>
  91. <view class="caption"><text>{{productBottom.email}}</text></view>
  92. </view>
  93. </view>