index.wxml 646 B

123456789101112131415161718
  1. <wxs src="../../../wxs/util-fun.wxs" module="util"></wxs>
  2. <view>
  3. <view class="bg-white p20 fc" style="text-align:center;font-size:40rpx;margin-top:10rpx" > {{info.title}}</view>
  4. <view class="wxParse tc">
  5. <rich-text nodes="{{info.brief}}"></rich-text>
  6. </view>
  7. <view wx:for="{{logs}}" wx:key="articalId" wx:for-index="index" bindtap="getDetail" class="mt20" >
  8. <i-card extra="{{item.nickname}}" title="{{item.action}}" full>
  9. <view slot="content">操作描述: {{item.content}}</view>
  10. <view slot="footer">操作时间:{{util.getDatetime(item.createAt)}}</view>
  11. </i-card>
  12. </view>
  13. </view>