锦水居民端小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

48 lines
1.9 KiB

<view class="volunteer-box">
<view class="left">
<block wx:for="{{gOfficialsList}}" wx:for-index="index" wx:for-item="item" wx:key="index">
<view class="item" wx:if="{{index%2==0}}">
<image class="photo" data-src="{{item.faceImg}}" bindtap="preViewImage" src="{{item.faceImg}}" />
<view class="name">{{item.name}}</view>
<view class="autograph-all">
<view class="autograph">格言:{{item.motto}}</view>
<view class="autograph">职责:{{item.duty}}</view>
<view class="autograph">负责区域:{{item.areaResponsibility}}</view>
<view class="autograph">电话:{{item.mobile}}</view>
</view>
<view class="click-button">
<button plain='true' hover-class="hover-btn" bindtap="onPhone" data-number="{{item.mobile}}">
<image class="button-bg" src="../../images/call.png" />
</button>
</view>
</view>
</block>
</view>
<view class="right">
<block wx:for="{{gOfficialsList}}" wx:for-index="index" wx:for-item="item" wx:key="index">
<view class="item" wx:if="{{index%2==1}}">
<image class="photo" data-src="{{item.faceImg}}" bindtap="preViewImage" src="{{item.faceImg}}" />
<view class="name">{{item.name}}</view>
<view class="autograph-all">
<view class="autograph">格言:{{item.motto}}</view>
<view class="autograph">职责:{{item.duty}}</view>
<view class="autograph">负责区域:{{item.areaResponsibility}}</view>
<view class="autograph">电话:{{item.mobile}}</view>
</view>
<view class="click-button">
<button plain='true' hover-class="hover-btn" bindtap="onPhone" data-number="{{item.mobile}}">
<image class="button-bg" src="../../images/call.png" />
</button>
</view>
</view>
</block>
</view>
</view>