12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <view class="cloud_search">
- <search-bar
- id="SearchBar"
- addflag="{{addflag}}"
- bind:addhandle="addhandle"
- searchstr="{{searchstr}}"
- bind:searchList="searchList"
- bind:endsearchList="endsearchList"
- bind:cancelsearch="cancelsearch"
- bind:activity_clear="activity_clear"
- style="width:100%;"
- />
- </view>
- <!-- <view style="height:95rpx;"></view> -->
- <view class="cloud_tabs" wx:if="{{userType == 'C'}}">
- <i-tabs current="{{ current }}" color="#6b223e" bindchange="handleChange">
- <i-tab key="tab1" title="我证明的"></i-tab>
- <i-tab key="tab2" title="我的云证"></i-tab>
- </i-tabs>
- </view>
- <view class="cloud_title" wx:if="{{current == 'tab1'}}">
- <text>我的总收入:¥ {{money}}</text>
- <picker mode="date" value="{{date}}" start="2015-09-01" end="2100-09-01" fields="month" bindchange="bindTimeChange">
- <view class="picker">
- {{date}}
- <image src="/images/list/caret-down.png"/>
- </view>
- </picker>
- </view>
- <view class="cloud_title" wx:if="{{current == 'tab2'}}">
- <text>我的云证</text>
- <picker bindchange="bindPickerChange" value="{{index}}" range="{{array}}">
- <view class="picker">
- {{array[index]}}
- <image src="/images/list/caret-down.png"/>
- </view>
- </picker>
- </view>
- <!-- <view style="height:105rpx;"></view> -->
- <scroll-view wx:if="{{showList && list.length != 0}}" scroll-y bindscrolltolower="next" bindscroll="reload" style="height:{{scrollViewHeith}}px;" class='cloud_list'>
- <!-- bindscrolltoupper="reload" bindscroll="reload" -->
- <view class="one_card" wx:for="{{list}}" bindtap='viewDetail' data-id='{{item.id}}' data-status='{{item.statusName}}' data-phone='{{item.initiatorMobile}}' wx:key='this'>
- <i-card title="云证编号:{{item.ccNo}}" extra="{{item.statusName}}">
- <view slot="content" class="list">
- <view class="sponsor">发起人 : {{item.initiatorName}}</view>
- <view class="receiver">接收人 : {{item.receiverName!=null?item.receiverName:'暂无'}}
- <text wx:if="{{current == 'tab1'}}" style="float:right;color:#f00;">¥ {{item.accountingExpenses}}</text>
- </view>
- <view class="time">时间 : {{item.createTime}}</view>
- </view>
- </i-card>
- </view>
- <view wx:if="{{showList && list.length != 0}}" hidden="{{isHide}}">
- <i-load-more tip="暂无更多..." loading="{{ false }}" />
- </view>
- </scroll-view>
- <view wx:else class="noList">
- <image src="/images/list/nolist.png"/>
- <view>暂无云证数据</view>
- </view>
- <view class="cloud_create" bindtap="create" wx:if="{{current == 'tab2'}}">
- <image src="/images/list/create.png"/>
- </view>
|