| 1234567891011121314151617181920 |
- <!--mHome/pages/goldPrice/goldPrice.wxml-->
- <!-- container -->
- <view class="container">
- <!-- title -->
- <view class="title"><text>最新黄金铂金价格查询</text></view>
- <!-- 滚动视图 -->
- <scroll-view class="scroll-view" style="margin-bottom: {{safeBottom}}px;" scroll-y scroll-with-animation>
- <!-- 列头 -->
- <view class="table_header"><text wx:for="{{headers}}" wx:key="index">{{item}}</text></view>
- <!-- 内容 -->
- <view class="table_content" wx:for="{{values}}" wx:for-item="row" wx:key="index">
- <text wx:for="{{row}}" wx:for-item="value" wx:key="index">{{value}}</text>
- </view>
- </scroll-view>
- </view>
|