goldPrice.wxml 655 B

1234567891011121314151617181920
  1. <!--mHome/pages/goldPrice/goldPrice.wxml-->
  2. <!-- container -->
  3. <view class="container">
  4. <!-- title -->
  5. <view class="title"><text>最新黄金铂金价格查询</text></view>
  6. <!-- 滚动视图 -->
  7. <scroll-view class="scroll-view" style="margin-bottom: {{safeBottom}}px;" scroll-y scroll-with-animation>
  8. <!-- 列头 -->
  9. <view class="table_header"><text wx:for="{{headers}}" wx:key="index">{{item}}</text></view>
  10. <!-- 内容 -->
  11. <view class="table_content" wx:for="{{values}}" wx:for-item="row" wx:key="index">
  12. <text wx:for="{{row}}" wx:for-item="value" wx:key="index">{{value}}</text>
  13. </view>
  14. </scroll-view>
  15. </view>