123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- <!--detail.wxml-->
- <view class="container">
- <view class="art-header">
- <view class="auto-title">
- <text>{{matureScheme.title}}</text>
- </view>
- <view class="auto-text">
- <view wx:for="{{matureScheme.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">
- <view><text>{{productOverview.text}}</text></view>
- </view>
- <view class="auto-title">
- <text>{{productAppearance.title}}</text>
- </view>
- <view class="auto-text">
- <view wx:for="{{productAppearance.array}}" wx:for-item="item">
- <image class="auto-image" src="{{item.url}}"></image>
- </view>
- </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="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 class="auto-title">
- <text>{{orderingInformation.title}}</text>
- </view>
- <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 class="auto-title">
- <text>{{relatedApplications.title}}</text>
- </view>
- <view class="auto-text">
- <view><text>{{relatedApplications.text}}</text></view>
- </view>
- <view class="auto-text">
- <view wx:for="{{relatedApplications.array}}" wx:for-item="ites">
- <view class="caption"><text>{{ites.title}}</text></view>
- <image class="auto-image" src="{{ites.image}}"></image>
- </view>
- </view>
- <view class="auto-title">
- <text>{{installationAndUse.title}}</text>
- </view>
- <view class="auto-text">
- <view><text>{{installationAndUse.text}}</text></view>
- </view>
- <view class="auto-text">
- <view class="caption"><text>{{installationAndUse.imagedata.title}}</text></view>
- <view wx:for="{{installationAndUse.imagedata.array}}" wx:for-item="ites">
- <view class="caption"><text>{{ites.title}}</text></view>
- <image class="auto-image" src="{{ites.image}}"></image>
- </view>
- </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>
|