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.
68 lines
3.2 KiB
68 lines
3.2 KiB
<view class="pages"> |
|
<mp-navigation-bar ext-class="set-bar" title="测算" back="{{false}}"></mp-navigation-bar> |
|
|
|
<view class="top look-top"> |
|
<!-- <view class="search center" bindtap="showInput"> |
|
<image wx:if="{{!inputShow}}" src="../../assets/images/search-mini.png"></image> |
|
<input value="{{page.landListedId}}" bindconfirm="refresh" wx:if="{{inputShow}}" focus="true" bindblur="hideInput" class="form-input" bindinput="vmodel" type="text" /> |
|
</view> --> |
|
<view class="look-search center {{is_search?'focusing':''}}" bindtap="searchFun"> |
|
<image class="look-s-icon" src="../../assets/images/search.png"></image> |
|
<input type="text" focus="{{is_focusing}}" auto-focus="{{is_focusing}}" bindconfirm="refresh" model:value="{{page.landListedId}}" hold-keyboard="true" bindinput="vmodel" bindblur="blurFun" placeholder="请输入搜索内容" /> |
|
<image class="del ml10" bindtap="emptyFun" |
|
wx:if="{{page.landListedId != '' && page.landListedId}}" src="../../assets/images/del-icon.png" mode="widthFix"></image> |
|
</view> |
|
|
|
|
|
|
|
<view class="top-box center" bindtap="comeHistory"> |
|
<image class="top-icon" src="../../assets/images/jiankong.png"></image> |
|
<text>测算监控</text> |
|
</view> |
|
</view> |
|
|
|
<view class="tab-box"> |
|
<view class="table"> |
|
<view class="address"> |
|
<picker mode="region" value="{{region}}" bindchange="bindAddressChange"> |
|
<text>{{cityName}}</text> |
|
</picker> |
|
<image class="tag" src="../../assets/images/arrow-down.png"></image> |
|
</view> |
|
<view class="address" style="padding-left:30rpx"> |
|
<picker mode="date" value="{{nowTime}}" bindchange="bindTimeChange"> |
|
<text>{{page.queryDate}}</text> |
|
</picker> |
|
<image class="tag" src="../../assets/images/arrow-down.png"></image> |
|
</view> |
|
<!-- <view class="table-item center {{active===item.id?'table-active':''}}" wx:for="{{tabs}}" wx:key="id" |
|
wx:for-item="item" data-id="{{item.id}}" bindtap="tabDowm"> |
|
<text class="table-name">{{item.name}}</text> |
|
<image class="table-icon" src="../../assets/images/tab-icon.png"></image> |
|
</view> --> |
|
</view> |
|
<view class="top-box center" bindtap="goUnder"> |
|
<image class="top-icon" src="../../assets/images/dcs.png"></image> |
|
<text>待测算</text> |
|
</view> |
|
</view> |
|
<view class="main"> |
|
<view class="mark" wx:if="{{active}}" bindtap="hideMark"></view> |
|
<scroll-view class="list" scroll-y="{{setScroll}}" refresher-enabled refresher-triggered="{{refresher}}" |
|
bindscrolltolower="getList" bindrefresherrefresh="refresh"> |
|
<view class="list-item" wx:for="{{list}}" wx:for-index="i" wx:for-item="item" bindtap="comeDetail" data-id="{{item.landListedId}}" |
|
data-mid="{{item.measureDataId}}"> |
|
<view class="item-box"> |
|
<view class="title one-title">{{item.landListedId}}</view> |
|
<view class="info"> |
|
<text class="timer">测算日期:{{item.createDate}}</text> |
|
<text class="num">净利率:{{item.netProfitRatio?item.netProfitRatio:''}}</text> |
|
</view> |
|
</view> |
|
</view> |
|
<view class="noText" wx:if="{{list.length<=0}}"> |
|
暂无数据 |
|
</view> |
|
</scroll-view> |
|
</view> |
|
</view> |