| 12345678910111213141516171819202122232425 |
- <wxs module="_">
- module.exports.getClassName = function (value, prev, key) {
- return key !== 'reportTime' && prev && value[key] !== prev[key] ? 'highlight' : ''
- }
- </wxs>
- <!--module/user/pages/user-record/user-record.wxml-->
- <t-navbar title="基础信息更新记录" left-arrow />
- <view class="wrapper {{orientation}}" style="{{containerStyle}}">
- <view class="header">
- <block wx:for="{{columns}}" wx:key="value" wx:for-index="i" wx:for-item="r">
- <view class="row {{i === 0 ? 'title' : i % 2 ? 'odd' : 'even'}}" style="height: {{r.height}}px;">{{r.label}}</view>
- </block>
- </view>
- <scroll-view class="scrollable" type="list" scroll-x enable-flex style="flex-direction: row;">
- <view class="col" wx:for="{{dataset}}" wx:key="index">
- <block wx:for="{{columns}}" wx:key="value" wx:for-index="i" wx:for-item="r">
- <view class="row {{i === 0 ? 'title' : i % 2 ? 'odd' : 'even'}} {{_.getClassName(item, dataset[index-1], r.value)}}" style="height: {{r.height}}px;">
- <text max-lines="3" overflow="ellipsis">{{item[r.value]}}</text>
- </view>
- </block>
- </view>
- </scroll-view>
- </view>
- <t-message id="{{$messageId}}" />
|