12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- <!--detail.wxml-->
- <view class="container">
- <view class="art-header">
- <view class="auto-title">
- <text>{{characteristics.title}}</text>
- </view>
- <view class="auto-text">
- <view wx:for="{{characteristics.array}}" wx:for-item="item">
- <view><text>{{item.text}}</text></view>
- </view>
- </view>
- </view>
- <view class="art-content">
- <view class="auto-title">
- <text>{{productOverview.title}}</text>
- </view>
- <view class="auto-text">
- <text>{{productOverview.text}}</text>
- </view>
- <view class="auto-title">
- <text>{{productAppearance.title}}</text>
- </view>
- <view class="auto-text">
- <image src="{{productAppearance.url}}"></image>
- </view>
- <view class="auto-title">
- <text>{{productCharacteristics.title}}</text>
- </view>
- <view class="auto-text">
- <view wx:for="{{productCharacteristics.array}}" wx:for-item="item">
- <view class="caption"><text>{{item.title}}</text></view>
- <view wx:for="{{item.array}}" wx:for-item="Itemitem">
- <view><text>{{Itemitem.text}}</text></view>
- </view>
- </view>
- </view>
- <view class="auto-title">
- <text>{{productSpecification.title}}</text>
- </view>
- <view class="auto-text">
- <view class="table" wx:for="{{productSpecification.array}}" wx:for-item="tableitem">
- <view class="tr">
- <view class="td td1">{{tableitem.key}}</view>
- <view class="td td3">{{tableitem.value}}</view>
- </view>
- </view>
- </view>
- <view class="auto-title">
- <text>{{orderingInformation.title}}</text>
- </view>
- <view class="auto-text">
- <view wx:for="{{orderingInformation.array}}" wx:for-item="item">
- <view class="caption"><text>{{item.title}}</text></view>
- <view class="table" wx:for="{{item.array}}" wx:for-item="tableitem">
- <view class="tr">
- <view class="td td1">{{tableitem.key}}</view>
- <view class="td td3">{{tableitem.value}}</view>
- </view>
- </view>
- </view>
- </view>
- <view class="auto-title">
- <text>{{relatedApplications.title}}</text>
- </view>
- <view class="auto-text">
- <text>{{relatedApplications.text}}</text>
- </view>
- <view class="auto-title">
- <text>{{applicationsImage.title}}</text>
- </view>
- <view class="auto-text">
- <view wx:for="{{applicationsImage.array}}" wx:for-item="item">
- <view><text>{{item.title}}</text></view>
- <image src="{{item.image}}"></image>
- </view>
- </view>
- <view class="auto-title">
- <text>{{installationAndUse.title}}</text>
- </view>
- <view class="auto-text">
- <text>{{installationAndUse.text}}</text>
- <view wx:for="{{installationAndUse.array}}" wx:for-item="item">
- <view class="caption"><text>{{item.title}}</text></view>
- <view><text>{{item.text}}</text></view>
- <image src="{{item.url}}"></image>
- </view>
- </view>
- <image class="auto-image" src="{{productBottom.images}}"></image>
- </view>
- </view>
|