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.
|
- <!--pages/bank/bank.wxml-->
- <view class="ns" style="height:{{isIPX?'88px':'64px'}};">
- <image src="../../image/apply/back.png" style="top:{{isIPX?'54px':'30px'}};" mode="widthFix" bindtap="back"></image>
- <text style="top:{{isIPX?'54px':'30px'}};">银行汇票</text>
- </view>
-
- <view class="search_box" style="margin-top:{{isIPX?'100px':'75px'}};">
- <van-search
- value="{{ value }}"
- shape="round"
- background="transparent"
- placeholder="请输入搜索关键词"
- clearable
- bind:change="goSearch"
- />
- <view class="add_btn" bindtap="goAdd"><text>新增</text></view>
- </view>
-
- <van-dropdown-menu active-color="#5CAE77" bind:change="changeTab">
- <van-dropdown-item value="{{ value1 }}" options="{{ option1 }}" bind:change="changeTab" />
- <van-dropdown-item value="{{ value2 }}" options="{{ option2 }}" bind:change="changeTab2" />
- </van-dropdown-menu>
-
- <van-swipe-cell right-width="{{ 65 }}" class="workflow" wx:for="{{moneyorderList}}" wx:key="index">
- <view class="li" bindtap="goUpdate">
- <view class="tit_box">
- <view class="tit_box_left">
- <van-tag plain type="danger" color="#FC9A55" style="margin-right:10px;">汇票号</van-tag>
- <text class="tit">{{item.orderNum}}</text>
- </view>
- <view class="tit_type">
- <text>{{item.orderTypeText}}</text>
- </view>
- </view>
-
- <view class="detail_box">
- <view class="detail_box_left">
- <text class="fkmc">{{item.billPayUnit}}</text>
- <text class="fkdw">付票单位</text>
- </view>
- <view class="detail_box_center">
- <text class="detail_box_money">¥{{item.orderAmount}}</text>
- <image src="/image/icon/{{item.orderStatus == 1 ? 'zk' : item.orderStatus == 2 ? 'zfz' : item.orderStatus == 3 ? 'zf' : item.orderStatus == 4 ? 'cd' : ''}}.png" style="width:38px;" mode="widthFix"></image>
- <text style="color: {{item.orderStatus == 1 ? '#FC9A55' : item.orderStatus == 2 ? '#5CAE77' : item.orderStatus == 3 ? '#E90000' : item.orderStatus == 4 ? '#878787' : ''}};font-size: 12px;">{{item.orderStatus == 1 ? '在库' : item.orderStatus == 2 ? '转付中' : item.orderStatus == 3 ? '转付' : item.orderStatus == 4 ? '承兑' : ''}}</text>
- </view>
- <view class="detail_box_right">
- <text class="fkmc">{{item.billReceiveUnit}}</text>
- <text class="skdw">收票单位</text>
- </view>
- </view>
-
- <view class="detail_time">
- <image src="/image/icon/icon_date.png" style="width: 14px;height: 14px;"></image>
- <text>{{item.startTime}} - {{item.endTime}}</text>
- </view>
- </view>
- <view slot="right" class="deleteBox">
- <view style="flex: 1;height: 100%;display: flex;align-items: center;">
- <image src="../../image/apply/icon_delete.png" style="width: 25px;height: 25px;margin: 0 auto;" data-id="{{item.id}}" data-index="{{index}}" bindtap="delete"></image>
- </view>
- </view>
- </van-swipe-cell>
|