123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- <!--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>
- <view class="auto-title"><text>{{productBottom.title}}</text></view>
- <view class="auto-text">
- <view class="caption"><text>{{productBottom.address}}</text></view>
- <view class="caption"><text>{{productBottom.url}}</text></view>
- <view class="caption"><text>{{productBottom.phone}}</text></view>
- <view class="caption"><text>{{productBottom.email}}</text></view>
- </view>
- </view>
- </view>
|