市北党建引领小程序初始化
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.

83 lines
4.0 KiB

<!-- <view class="item-list">
<view wx:for="{{orgList}}" data-type="{{item.type}}" data-value ="{{item.value}}" bind:tap="handleClickTo" class="item"><view>{{item.label}}</view> <image src="../../images/right.png" mode=""/></view>
</view> -->
<wux-popover visible="{{ visible }}" placement="bottom" mask="true" controlled="true" >
<view slot="content" style="max-height: 30vh;overflow-y: auto;display: flex;padding: 20rpx;justify-content: space-around;width: 80vw;" >
<view>
<view class="{{first ? 'active' : ''}}" wx:for ="{{multiArray[0]}}" wx:key="index" data-id="{{0}}" bindtap='bindMultiPickerColumnChange' style="margin: 30rpx 0;">
{{item}}>
</view>
</view>
<view style="border-right: 1px solid #ccc;">
</view>
<view style="max-height: 30vh;overflow-y: auto;" wx:if="{{first}}">
<view class="{{second &&secondIndex==index ?'active' : ''}}" wx:for ="{{multiArray[1]}}" wx:key="index" data-id="{{1}}" bindtap='bindMultiPickerColumnChange' data-index="{{index}}" style="margin: 30rpx 0;">
{{item}}>
</view>
</view>
<view style="border-right: 1px solid #ccc;" wx:if="{{second}}">
</view>
<view style="max-height: 30vh;overflow-y: auto;" wx:if="{{second}}">
<view class="{{third &&thirdIndex==index ?'active' : ''}}" wx:for ="{{multiArray[2]}}" wx:key="index" data-id="{{2}} "bindtap='bindMultiPickerColumnChange' data-index="{{index}}" style="margin: 30rpx 0;">
{{item}}
</view>
</view>
</view>
<view style="display: flex; width: 100vw;justify-content: center;">
<view class="item-list">
<view bindtap='changeVisible' class="item" wx-if="{{multiArray[1][secondIndex]&&multiArray[2][thirdIndex]}}">
{{multiArray[0][multiIndex[0]]}}-{{multiArray[1][secondIndex]}}-{{multiArray[2][thirdIndex]}}
<image src="../../images/right.png" mode=""/>
</view>
<view bindtap='changeVisible' class="item" wx-if="{{multiArray[1][secondIndex]&&!multiArray[2][thirdIndex]}}">
{{multiArray[0][multiIndex[0]]}}-{{multiArray[1][secondIndex]}}
<image src="../../images/right.png" mode=""/>
</view>
<view bindtap='changeVisible' class="item" wx-if="{{!multiArray[1][secondIndex]&&!multiArray[2][thirdIndex]}}">
{{multiArray[0][multiIndex[0]]}}
<image src="../../images/right.png" mode=""/>
</view></view>
<!-- <picker mode="multiSelector" bindchange="bindMultiPickerChange" bindcolumnchange="bindMultiPickerColumnChange" value="{{multiIndex}}" range="{{multiArray}}">
<view class="item" wx-if="{{multiArray[1][multiIndex[1]]}}">
{{multiArray[0][multiIndex[0]]}},{{multiArray[1][multiIndex[1]]}},{{multiArray[2][multiIndex[2]]}}
<image src="../../images/right.png" mode=""/>
</view>
<view class="item" wx:else>
{{multiArray[0][multiIndex[0]]}}
<image src="../../images/right.png" mode=""/>
</view>
</picker> -->
</view>
</wux-popover>
<view class="content">
<view class="notice-list">
<view class="list-item" wx:if="{{noticeList.length>0}}" wx:for="{{noticeList}}">
<view class="title">
<view class="proleft">
<image class="image" src="{{item.faceImg}}" />
</view>
<view class="proright">
<view class="tit">{{item.dutyCategoryName}}</view>
<view class="name">{{item.realName}} I {{item.sex == 1?'男':'女'}}</view>
<view class="add">{{item.workUnit}}</view>
<view class="tel">
<text>{{item.mobile}}</text>
<image src="../../images/call.jpg" data-phone="{{item.mobile}}" bindtap='to_call' />
</view>
</view>
</view>
<!-- <view class="tip">{{item.remark}}</view> -->
</view>
<view wx:if="{{noticeList.length==0}}">
<view class="nodata">
<image src="../../images/nodata.png" mode="widthFix"/>
</view>
<view class="nodatatxt">暂无数据~</view>
</view>
</view>
<load-more loadMoreVisible="{{issueLoadMoreVisible}}" loadMoreType="{{loadMoreType}}"></load-more>
</view>