微信小程序
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

project.wxml 2.1 KiB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <!--pages/project/project.wxml-->
  2. <view class="ns" style="height:{{isIPX?'88px':'64px'}};">
  3. <image src="../../image/apply/back.png" style="top:{{isIPX?'54px':'30px'}};" mode="widthFix" bindtap="back"></image>
  4. <text style="top:{{isIPX?'54px':'30px'}};">银行汇票</text>
  5. </view>
  6. <view class="search_box" style="margin-top:{{isIPX?'100px':'75px'}};">
  7. <van-search
  8. value="{{ value }}"
  9. shape="round"
  10. background="transparent"
  11. placeholder="请输入搜索关键词"
  12. clearable
  13. bind:change="goSearch"
  14. />
  15. <view class="add_btn" bindtap="goAdd"><text>新增</text></view>
  16. </view>
  17. <van-swipe-cell right-width="{{ 65 }}" class="workflow">
  18. <view class="li" bindtap="goUpdate">
  19. <view class="tit_box">
  20. <view class="tit_box_left">
  21. <van-tag plain type="danger" color="#FC9A55" style="margin-right:10px;">汇票号</van-tag>
  22. <text class="tit">3564353245345</text>
  23. </view>
  24. <view class="tit_type">
  25. <text>商业承兑</text>
  26. </view>
  27. </view>
  28. <view class="detail_box">
  29. <view class="detail_box_left">
  30. <text class="fkmc">家家悦\n集团体育基地店</text>
  31. <text class="fkdw">付票单位</text>
  32. </view>
  33. <view class="detail_box_center">
  34. <text class="detail_box_money">¥5000.00</text>
  35. <image src="/image/icon/icon_zfz.png" style="width:40px;" mode="widthFix"></image>
  36. </view>
  37. <view class="detail_box_right">
  38. <text class="fkmc">张村\n经济合作社</text>
  39. <text class="skdw">收票单位</text>
  40. </view>
  41. </view>
  42. <view class="detail_time">
  43. <image src="/image/icon/icon_date.png" style="width: 14px;height: 14px;"></image>
  44. <text>2021.09.01-2022.08.31</text>
  45. </view>
  46. </view>
  47. <view slot="right" class="deleteBox">
  48. <view style="flex: 1;height: 100%;display: flex;align-items: center;">
  49. <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>
  50. </view>
  51. </view>
  52. </van-swipe-cell>