<!--pages/circleMoment/circleMoment.wxml-->
<custom-navi text="圈子动态" back="{{true}}" home="{{true}}" bg1="#fff" bg2="#fff" bg3="#fff"></custom-navi>
<view class="title">
	<view></view>
	圈子动态
</view>
<view class='circleMoment'>
	<view class="momentNewBtn" bindtap="momentNew" wx:if="{{isOwner}}">
		发布动态
	</view>
	<view class="momentItem" wx:for="{{momentList}}" wx:for-item='momentDat'>
		<view class="momenttitle">
			<view class="comment">{{momentDat.comment}}[{{momentDat.registration_date}}]</view>
			<view class="actionRow" wx:if="{{isOwner}}">
				<view bindtap="deleteMoment" data-index="{{momentDat.id}}">删除</view>
			</view>
		</view>
		<view class="images">
			<image src='{{item}}' wx:for="{{momentDat.images}}"></image>
		</view>

	</view>
</view>
<van-notify id="van-notify" />
<van-dialog id="van-dialog" />