1234567891011121314151617181920212223 |
- <wxs src="../../../wxs/util-fun.wxs" module="util"></wxs>
- <i-cell-group>
- <view class="bg-white p20 fc" style="text-align:center;font-size:40rpx;margin-top:10rpx" > {{info.title}}</view>
- <i-cell title="部门" value="{{info.department}}"> </i-cell>
- <i-cell title="分类" value="{{util.getCategory(info.category)}}"> </i-cell>
- <i-cell title="文件状态" value="{{util.getStatus(info.status)}}" is-link> </i-cell>
- <i-cell title="发布人" value="{{info.username}}"> </i-cell>
- <i-cell title="下载量" value="{{info.downloadCount}}"> </i-cell>
- <i-cell title="浏览量" value="{{info.viewCount}}"> </i-cell>
- <i-cell title="文件简介" label="{{info.brief}}"> </i-cell>
- <i-cell title="操作记录">
- <view wx:for="{{logs}}" wx:key="articalId" wx:for-index="index" bindtap="getDetail" class="mt20" >
- <i-card extra="{{item.nickname}}" title="{{item.action}}" full>
- <view slot="content">操作描述: {{item.content}}</view>
- <view slot="footer">操作时间:{{util.getDatetime(item.createAt)}}</view>
- </i-card>
- </view>
- </i-cell>
- </i-cell-group>
|