123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <view class="zxczxc" style="top: {{statusBarHeight + navHeight + 80}}px; height: calc(100% - {{statusBarHeight + navHeight + 80}}px);">
- <view class="page-title" style="padding-top: {{statusBarHeight}}px; height: {{navHeight}}px; background-image: url({{bgImg}});">
- <navigator url="/pages/ucenter/index/index">
- <image src="{{userInfo.avatar || '/static/images/avatar_default.png'}}" ></image>
- <image src="https://platform-wxmall.oss-cn-beijing.aliyuncs.com/upload/20180727/150547696d798c.png" wx:if="{{!userInfo && !userInfo.avatar}}" class="user-bg"></image>
- <text bindtap="">Hi~ {{userInfo ? userInfo.nickName : '游客'}}</text>
- </navigator>
- </view>
- <view class="search-layer" style="top: {{statusBarHeight + navHeight}}px; background-image: url({{bgImg}});background-position: 0 -{{statusBarHeight + navHeight}}px">
- <view class="search" bindtap="searchFocus">
- <input placeholder="请输入起火对象/单位名称" disabled placeholder-style="color:#C8C9CC;" value="{{keyword}}" bindinput="inputChange" bindconfirm="search" confirm-type="search"
- type="text"></input>
- <image wx:if="{{imgServer}}" src="{{imgServer + '/search.png'}}" class="icon"></image>
- <view bindtap="clearKeyword" class="clear" wx:if="{{showClear}}"><image src="/static/images/list_close.png" /></view>
- </view>
- </view>
- <image src="{{bgImg}}" class="bgimg"></image>
- <scroll-view class="container" style="min-height: {{brandList.length < 3 ? '300px': 'auto'}}" >
- <view class="body" id="tab-con">
- <!-- <lip-sync inner-text="Some text"></lip-sync> -->
- <view class="ul" wx:if="{{loading || brandList.length}}">
- <view bindtap="gotoWV" data-scene="{{item.sceneNum}}" data-id="{{item.id}}" class="li" wx:for='{{brandList}}'
- wx:key="id">
- <view class="ctp">
- <image mode="aspectFill" src="{{item.sceneCover|| '/static/images/fire_pic@2x.png'}}"></image>
- <image class="icon" src="/static/images/reserv_vr@2x.png" wx:if="{{item.sceneCover}}"></image>
- </view>
-
- <view class="item-content">
- <view class="b-title">
- <text>{{item.projectName}}</text>
- <view><image src="{{item.icon}}"></image>
- <text>{{item.projectSite}}</text></view>
- </view>
- <view class="b-info">
- <view>
- <text>{{item.organizerDeptName}}</text>
- </view>
- <view>
- <text>{{item.createTime}}</text>
- </view>
- </view>
- </view>
- </view>
- <view class="loadText" wx:if="{{!loading && currentPage < totalPages}}" bindtap="onReachBottom">加载更多</view>
- <view class="loadText" wx:if="{{!loading && currentPage >= totalPages}}">- 已加载所有数据 -</view>
- <view class="loadText loading" wx:if="{{loading}}" >
- <image src="/static/images/fire_loading@2x.png"></image>
- </view>
- </view>
- <view wx:else class="unbrand">
- <image src="/static/images/fire_pic_data@2x.png"></image>
- <view class="text">暂无数据或无查看权限~</view>
- </view>
- </view>
- <view class="linear-mask {{hideMask? '': 'mask-hidden'}}"></view>
- <view bindtap="tabHide" class="search-con" wx:if="{{showSearch}}" >
- <view class="sc-con" catchtap>
- <input focus="true" value="{{keyword}}" bindinput="inputChange" bindconfirm="search" confirm-type="search"
- type="text"></input>
- <image wx:if="{{imgServer}}" src="{{imgServer + '/fangdajing.png'}}"></image>
- </view>
- <view class="no-record" wx:if="{{noRecord}}">未搜索到相关内容</view>
- </view>
- </scroll-view>
- </view>
|