Showing
1 changed file
with
3 additions
and
1 deletions
| @@ -36,7 +36,9 @@ | @@ -36,7 +36,9 @@ | ||
| 36 | <text>发起时间</text><text>{{ item.startTime }}</text> | 36 | <text>发起时间</text><text>{{ item.startTime }}</text> |
| 37 | </view> | 37 | </view> |
| 38 | <view class="footer"> | 38 | <view class="footer"> |
| 39 | - <button class="btn" type="primary" plain @click.stop="onDetail(item)">审核详情</button> | 39 | + <!-- completed true 已办 显示 审核详情按钮 --> |
| 40 | + <!-- completed false 待办 显示 去审核按钮 --> | ||
| 41 | + <button v-if="item.completed" class="btn" type="primary" plain @click.stop="onDetail(item)">审核详情</button> | ||
| 40 | <button class="btn" type="primary" plain @click.stop="onDetail(item)">去审核</button> | 42 | <button class="btn" type="primary" plain @click.stop="onDetail(item)">去审核</button> |
| 41 | </view> | 43 | </view> |
| 42 | </view> | 44 | </view> |