<!--pages/volunteers/volunteers.wxml-->
<custom-navi text="{{title}}" back="{{true}}" home="{{true}}" bg1="#fff" bg2="#fff" bg3="#fff"></custom-navi>
<view class="activity_con">
	<block wx:for="{{list}}" wx:key="id" wx:index="index">
		<view class="view_content" bindtap='volunteersEventDetail' data-id='{{item.id}}'>
			<image src="{{item.front_image}}"></image>
			<text style="background:#{{item.status_title=='征集中'?'c1527e':'0a9a7b'}}">{{item.status_title}}</text>
			<view>
				<view>征集范围:{{item.scope}}</view>
				<view>征集人数:{{item.max_member}}</view>
				<view>发布单位:{{item.author}}</view>
				<view>报名截止:{{item.enroll_time}}</view>
			</view>
		</view>
	</block>
</view>