12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <!--detail.wxml-->
- <view class="container">
- <view class="art-header">
- <view class="auto-title"><text>{{pageTitleData.title}}</text></view>
- <view class="auto-text">
- <view wx:for="{{pageTitleData.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">
- <image src="{{productAppearance.image}}"></image>
- <view><text>{{productAppearance.text}}</text></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="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-text">
- <view wx:for="{{relatedApplicationsImage.array}}" wx:for-item="item">
- <view class="caption"><text>{{item.title}}</text></view>
- <image class="auto-image" src="{{item.image}}"></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>
|