Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
- <!-- 查询列表 有结果 -->
- <view class="tabTit box tc bg_f clearfix">
- <view class="flex1{{!tab[index]?' active':''}} fl" wx:for="{{tabTxt}}" wx:key="index" data-index="{{index}}" data-idss="{{item.idss}}" bindtap="filterTab">
- <text wx:if="{{index==0}}" class="{{index==idss?'active3':''}}">{{tabTxt[0].title}}</text>
- <text wx:if="{{index!=0}}" class="{{index==idss?'active3':''}}">{{item.title}}</text>
- <image src="../../static/images/arrow.png"></image>
- </view>
- </view>
- <!-- 日期 -->
- <view class="tabLayer tc" hidden="{{tab[1]}}">
- <view class="picker_group">
- <picker mode="date" value="{{date}}" end="{{date2}}" fields="day" bindchange="bindDateChange1">
- <view wx:if="{{!date}}" class="picker">开始日期</view>
- <view wx:if="{{date}}" class="picker">{{date}}</view>
- </picker>
- 至
- <picker mode="date" value="{{date2}}" start="{{date}}" fields="day" bindchange="bindDateChange2">
- <view wx:if="{{!date2}}" class="picker">结束日期</view>
- <view wx:if="{{date2}}" class="picker">{{date2}}</view>
- </picker>
- <button class='btns' data-ids="1" hover-class='active1' bindtap='search' data-index='dateindex1'>查询</button>
- </view>
- </view>
- <!-- 类型 -->
- <view class="tabLayer tc clearfix" hidden="{{tab[2]}}">
- <a class='{{type===item.id?"active2":""}}' data-ids="2" data-id="{{item.id}}" wx:for="{{billtypes}}" wx:key="index" data-billTypeValue='{{item.billTypeValue}}' bindtap='search'>
- {{item.name}}
- </a>
- </view>
- <!-- 状态 -->
- <view class="tabLayer tc clearfix" hidden="{{tab[3]}}">
- <a class='{{status===item.id?"active2":""}}' data-ids="3" wx:for="{{statustypes}}" wx:key="index" wx:if="index" data-id="{{item.id}}" bindtap='search' data-status='{{item.status}}'>
- {{item.name}}
- </a>
- </view>
- <!-- 来源 -->
- <view class="tabLayer tc clearfix" hidden="{{tab[4]}}">
- <a class='{{source===item.id?"active2":""}}' data-ids="4" wx:for="{{auditWayOptions}}" wx:key="index" wx:if="index" data-id="{{item.id}}" bindtap='search' data-status='{{item.status}}'>
- {{item.name}}
- </a>
- </view>
- <view class='lists'>
- <view wx:for="{{allBillList}}" wx:key="index">
- <view class='list'>
- <view class='clearfix'>
- <text class='txt1 fl' wx:if="{{item.orderId}}">{{item.orderId}}</text>
- <text class='fr time'>{{item.createDate01}}</text>
- </view>
- <view class='clearfix'>
- <text class='time fl'>{{item.sourceStr+" "+item.typeStr}}</text>
- <text class='fr money'>应收:{{item.subsidyStr}}</text>
- </view>
- <view wx:if="{{item.statusStr&&item.status==0}}" class="status status1">{{item.statusStr}}</view>
- <view wx:if="{{item.statusStr&&item.status!==0}}" class="status status3">{{item.statusStr}}</view>
- </view>
- </view>
- </view>
- <!-- </scroll-view> -->
- <view wx:if="{{allBillList.length!==0}}" class="loading {{allBillList.length==0?'mr':''}}">{{content}}</view>
-
- <!-- 查询列表 无结果 -->
- <view class='recond' wx:if="{{allBillList.length==0}}">暂无数据!</view>
- <view class="bottom">
- <view class="b-left">总计应收</view>
- <view class="b-right">¥{{subsidy}}</view>
- </view>
|