123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- <scroll-view scroll-x class="scroll-header scroll">
- <view class='boxs' >
- <view class='box-image-l'data-type="{{i}}" bindtap='tabs' wx:for="{{activitylist}}" wx:key="item" class='imgwidth' wx:for-index="i">
- <image src='{{item.attribute3}}' class='h100 br15'></image>
- <view class='txt-center'>
- <text class='news-container-txt'>{{item.itemname}}</text>
- </view>
- </view>
- <!-- <view class='box-image-l'>
- <navigator url='../../../pages/home/index/ practiceExperience/ practiceExperience'>
- <image src='/assets/cjz/hdsys.png'></image>
- <text class='img-txt2'>活动实验室</text>
- </navigator>
- </view>
- <view class='box-image-l' bindtap='cityExperience'>
- <image src='/assets/cjz/csty.png'></image>
- <text class='img-txt3'>城市体验</text>
- </view> -->
- </view>
- </scroll-view>
- <view wx:if="{{partTrue}}">
- <view class='i-tab' >
- <i-tabs current="{{ current }}" bindchange="handleChange">
- <i-tab key="tab1" title="最新"></i-tab>
- <block wx:for="{{partlist}}" wx:key="itemlist" wx:for-item="itemlist">
- <i-tab key="{{itemlist.itemcode}}" title="{{itemlist.itemname}}" ></i-tab>
- </block>
- </i-tabs>
- </view>
- <block wx:if="{{totalCount>0}}" >
- <scroll-view class="container img-content" scroll-top="{{scrollTop}}" scroll-y="true" style="height:{{scrollHeight}}px;" bindscrolltolower="bindDownLoad" bindscrolltoupper="topLoad" bindscroll="scroll">
- <view data-id="{{item.id}}" bindtap='seeDetails' wx:for="{{listitem}}" wx:key="item" class="list flex-box" >
- <view class="list-img">
- <image class="img" src="{{item.headUrl}}"></image>
- </view>
- <view class="list-main flex-btn">
- <view class="list-title list-brief">
- <text>{{item.title}}</text>
- </view>
- <view class="list-brief">
- <block wx:for="{{item.tags}}" wx:for-item="tag">
- <text class="sale">{{tag.workTagName}}</text>
- </block>
- <text class="price">{{item.price}}</text><text class="txt">元/{{item.unitName}}</text>
- </view>
- <view class="list-brief">
- <text>{{item.address}}</text>
- </view>
- <view class="list-brief">
- <text>{{item.workdateStart}}-{{item.workdateEnd}}</text>
- </view>
- </view>
- <view class="list-sale"><text class="sales">{{item.statusName}}</text></view>
- </view>
- <view class='nomore {{currPage>=totalPage?"":"hidden"}}' >
- — 我是有底线的 —
- </view>
- </scroll-view>
- </block>
- </view>
- <block wx:if="{{totalCount<=0}}">
- <view class='tc h100'>
- <image src="{{nodata}}" class='nodata-img'></image>
- </view>
- </block>
- <view wx:if="{{activityTrue}}">
- <view class='downMenu'>
- <view class="section">
- <picker mode="multiSelector" bindchange="bindMultiPickerChange" bindcolumnchange="bindMultiPickerColumnChange" value="{{cityIndex}}" range="{{allcity}}" range-key="codename">
- <view class="picker">
- {{allcity[1][cityIndex[1]].codename}}
- </view>
- </picker>
- </view>
- <view class="section">
- <picker bindchange="bindPickerChange" value="{{produindex}}" range="{{arraylist}}" range-key='name' >
- <view class="picker">
- <text>{{arraylist[produindex].name}}</text>
- <i class="iconfont icon-xiasanjiaoxing gray"></i>
- </view>
- </picker>
- </view>
- <view class="section">
- <picker bindchange="bindPickerChanger" value="{{produindexone}}" range="{{arraystatus}}" range-key='name' >
- <view class="picker">
- <text>{{arraystatus[produindexone].name}}</text>
- <i class="iconfont icon-xiasanjiaoxing gray"></i>
- </view>
- </picker>
- </view>
- </view>
- <view class='marginTop'>
-
- <view class='boxm' data-id="{{item.id}}" bindtap='activeDetail' wx:for="{{listActivity}}" wx:key="item">
- <image src='{{item.thumbnailImg}}'></image>
- <view class='txt-center'>
- <text class='news-container-txtfir'>{{item.title}}</text>
- <text class='news-container-txtsec'>{{item.startTime}}</text>
- </view>
- <!-- <image src='{{item.thumbnailImg}}'>
- <text class='txt-t'>{{item.title}}</text>
- <text class='txt-bone'>{{item.startTime}}</text>
- </image> -->
- <view class='volunteer-box'>
- <!-- <image src=""></image> -->
- <view class='volunteer-location'>
- <text class='iconfont icon-dingwei font35 color-w'></text>
- <text class='txtall'>{{item.address}}</text>
- </view>
- <view class='volunteer-people'>
- <text class='iconfont icon-duorenyonghu- font35 color-w'> </text>
- <text class='txtall'>{{item.willnum}}</text>
- </view>
- </view>
-
- </view>
-
- </view>
- </view>
|