|
- <!--pages/bank/bank.wxml-->
- <view class="ns" id="top_ban" style="height:{{isIPX?'88px':'64px'}};">
- <image src="../../image/apply/back.png" style="top:{{isIPX?'54px':'30px'}};height: 19.0909px;" mode="widthFix" bindtap="back"></image>
- <text style="top:{{isIPX?'54px':'30px'}};">银行汇票</text>
- </view>
-
- <view class="search_box" id="top_view" 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" id="top_view1" >
- <van-dropdown-item value="{{ value1 }}" options="{{ option1 }}" bind:change="changeTab" />
- <van-dropdown-item value="{{ value2 }}" options="{{ option2 }}" bind:change="changeTab2" />
- </van-dropdown-menu>
- <scroll-view scroll-y refresher-threshold="0" id="top_view2" style="height:{{scrollHeight}}px" bindscrolltolower="paging" lower-threshold="100">
- <van-swipe-cell right-width="{{ 130 }}" class="workflow" wx:for="{{moneyorderList}}" wx:key="index" wx:for-item="item">
- <view class="li" bindtap="goUpdate" data-id="{{item.id}}">
- <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;flex-direction: column;justify-content: center;background-color: rgb(255,0,0,0.2);" data-id="{{item.id}}" data-index="{{index}}" bindtap="delete" wx-if="{{item.orderStatus==1}}">
- <view>
- <image src="../../image/apply/icon_delete.png" style="width: 25px;height: 25px;margin: 0 auto;display: block;" ></image>
- </view>
- <view>
- <text style="color:red">删除</text>
- </view>
- </view>
- <view style="flex: 1;height: 100%;display: flex;align-items: center;flex-direction: column;justify-content: center;background-color: rgb(98,173,102,0.2);" data-id="{{item.id}}" data-index="{{index}}" bindtap="upload">
- <view>
- <image src="../../image/icon/upload_icon.png" style="width: 25px;height: 25px;margin: 0 auto;display: block;" ></image>
- </view>
- <view>
- <text style="color: #62AD66;">附件</text>
- </view>
- </view>
- </view>
- </van-swipe-cell>
- </scroll-view>
- <van-action-sheet show="{{showUpload}}" title="附件" bind:close="closeBox">
- <scroll-view scroll-y="true" style="height: 600rpx;" bindscrolltoupper="upper" bindscrolltolower="lower" bindscroll="scroll" scroll-top="0">
- <view class="fj-box">
- <view class="fj-li" wx:for="{{fileList}}" wx:key="index" wx:for-item="item" >
- <view>
- <text>{{item.dictLabel}}</text>
- </view>
- <view class="img_box">
- <view class="img_li">
- <van-upload file-list="{{ item.list }}" bind:after-read="afterRead" bind:delete="deleteImg" bind:click-preview="lookDown" data-idx="{{index}}">
- </van-upload>
- </view>
- </view>
- </view>
- </view>
- </scroll-view>
- </van-action-sheet>
- <modal hidden="{{!showPopup}}" title="是否删除?" confirm-text="是" cancel-text="否" bindcancel="cancelTem" bindconfirm="confirmTem">
-
- </modal>
- <modal hidden="{{!showPopupDel}}" title="是否删除?" confirm-text="是" cancel-text="否" bindcancel="cancelTemDel" bindconfirm="confirmTemDel">
- </modal>
|