|
@@ -75,10 +75,21 @@
|
|
|
<view class="info" v-if="item.MatterContent">事项内容:{{item.MatterContent}} </view>
|
|
|
|
|
|
<view class="info">添加时间:{{item.CreateTime|formatTime}}</view>
|
|
|
+ <view class="info" v-if="item.EditReason" style="display: flex;">
|
|
|
+ <view>最近修改记录:</view>
|
|
|
+ <view>
|
|
|
+ <view>{{item.EditReason}}</view>
|
|
|
+ <view style="color: #999;">{{item.ModifyTime|formatTime}}</view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
|
|
|
- <view class="bot-btns" v-if="haveActiyityStart(item)">
|
|
|
- <van-button type="primary" plain color="#3385FF" class="btn" size="small" block round @click.stop="handleAction(item,'del')">删除</van-button>
|
|
|
- <van-button type="primary" color="#3385FF" class="btn" size="small" block round @click.stop="handleAction(item,'edit')">修改</van-button>
|
|
|
+ <view class="bot-btns">
|
|
|
+ <van-button type="primary" plain color="#3385FF" class="btn" size="small" block round
|
|
|
+ v-if="!item.ButtonAuth.RemoveDisabled"
|
|
|
+ @click.stop="handleAction(item,'del')">删除</van-button>
|
|
|
+ <van-button type="primary" color="#3385FF" class="btn" size="small" block round
|
|
|
+ v-if="!item.ButtonAuth.EditDisabled"
|
|
|
+ @click.stop="handleAction(item,'edit')">修改</van-button>
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -337,8 +348,8 @@
|
|
|
|
|
|
.info {
|
|
|
margin-bottom: 16rpx;
|
|
|
- text-indent: -140rpx;
|
|
|
- margin-left: 140rpx;
|
|
|
+ /* text-indent: -140rpx;
|
|
|
+ margin-left: 140rpx; */
|
|
|
}
|
|
|
|
|
|
.info:last-child {
|