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.
42 lines
1.7 KiB
42 lines
1.7 KiB
<view class="pages"> |
|
<mp-navigation-bar ext-class="set-bar" title="测算" back="{{false}}"></mp-navigation-bar> |
|
|
|
<view class="top"> |
|
<view class="search center"> |
|
<image src="../../assets/images/search-mini.png"></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="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"> |
|
<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"> |
|
<view class="item-box"> |
|
<view class="title one-title">{{item.title}}</view> |
|
<view class="info"> |
|
<text class="timer">测算日期:{{item.timer}}</text> |
|
<text class="num">净利率:{{item.num}}</text> |
|
</view> |
|
</view> |
|
</view> |
|
</scroll-view> |
|
</view> |
|
</view> |