微信小程序
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.

90 lines
4.1 KiB

  1. <!--pages/apply/index.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. <!-- 付款单位开始 -->
  7. <view class="top" style="margin-top:{{isIPX?'100px':'75px'}};">
  8. <image src="/image/apply/dress_icon.png" mode="widthFix"></image>
  9. <view class="top-tit">收入单位</view>
  10. <view class="top-title">{{bookName}}</view>
  11. </view>
  12. <text class="title">基础信息</text>
  13. <view class="main-box table-box">
  14. <view class="flex-block">
  15. <text class="rules">收入时间</text>
  16. <view class="wrap">
  17. {{formData.accountDate}}
  18. </view>
  19. </view>
  20. <view class="flex-block">
  21. <text class="rules">收入金额</text>
  22. <input disabled class="wrap" data-prop="formData.jieAmount" type="digit" value="{{formData.jieAmount}}" bindinput="inputChange" placeholder="收入金额"/>
  23. </view>
  24. <view class="flex-block">
  25. <text class="rules">存入账户</text>
  26. <view class="wrap">
  27. <text>{{formData.accountName}}</text>
  28. </view>
  29. </view>
  30. <view class="flex-block">
  31. <text class="rules">收入类型</text>
  32. <view class="wrap">
  33. <text>{{incomeTypeText}}</text>
  34. </view>
  35. </view>
  36. <view class="flex-block"><text class="rules no">单据编码</text> <input disabled class="wrap" bindinput="inputChange" data-prop="formData.billNum" value="{{formData.billNum}}" placeholder="单据编码"/></view>
  37. <!-- <view class="flex-block">
  38. <text class="rules no">对方科目</text>
  39. <view class="wrap">
  40. <text>{{formData.subjectNameAll == null ? '':formData.subjectNameAll}}</text>
  41. </view>
  42. </view> -->
  43. <view class="flex-block"><text class="rules">备注说明</text> <input disabled class="wrap" bindinput="inputChange" data-prop="formData.accountSummary" placeholder="请输入备注说明" value="{{formData.accountSummary}}"/></view>
  44. <view class="flex-block" wx:if="{{formData.checkedStatus == 4}}"><text class="rules">挂起原因</text> <input disabled class="wrap" bindinput="inputChange" data-prop="formData.remark" placeholder="挂起原因" value="{{formData.remark}}"/></view>
  45. </view>
  46. <block wx:if="{{formData.incomeType == 2}}">
  47. <view class="title">
  48. <text>关联合同</text>
  49. </view>
  50. <view class="main-box table-box">
  51. <view class="flex-block">
  52. <text class="rules {{formData.incomeType == '2' ?'':'no'}}">付款人{{}}</text>
  53. <view class="wrap">
  54. <text>{{payerText}}</text>
  55. </view>
  56. </view>
  57. <view class="flex-block"><text class="rules {{formData.incomeType == '2' ?'':'no'}}">合同编码</text>
  58. <view class="wrap" bindtap="selectContraction">
  59. <text>{{contractionIdID}}</text>
  60. </view>
  61. </view>
  62. </view>
  63. </block>
  64. <view class="main-box table-box" style="margin-top: 15px;">
  65. <van-cell>
  66. <!-- <view slot="icon">
  67. <van-icon class-prefix="my-icon" name="extra" />
  68. </view> -->
  69. <view slot="title">
  70. <view class="van-cell-text">附件<van-tag type="danger" style="margin-left: 10px;">可拍照</van-tag></view>
  71. </view>
  72. <view>
  73. <view class="van-cell-text">总数<van-tag round color="#5CAE77" plain style="margin-left: 10px;"> {{fileNum}}张 </van-tag></view>
  74. </view>
  75. </van-cell>
  76. <view class="fj-box">
  77. <view class="fj-li" wx:for="{{uploadOptions}}" wx:key="index">
  78. <view>
  79. <text>{{item.dictLabel}}</text>
  80. </view>
  81. <view class="img_box">
  82. <view class="img_list" wx:for="{{item.Pics}}" wx:for-index="childrenIndex" wx:for-item="item2" wx:key="childrenIndex">
  83. <image class="img_li" src="{{item2.tempFilePath}}" bindlongpress="bindlongpressimg" data-status="sjPics" bindtap="imgPreviewImage" data-id='{{childrenIndex}}' data-option="{{item.Pics}}" data-index="{{childrenIndex}}"></image>
  84. </view>
  85. </view>
  86. </view>
  87. </view>
  88. </view>
  89. <view class="ipXbtn"></view>