微信小程序
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

90 行
3.8 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.daiAmount" type="digit" value="{{formData.daiAmount}}" 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>{{expenditureTypeText}}</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 class="wrap" disabled 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 class="wrap" disabled bindinput="inputChange" data-prop="formData.remark" placeholder="请输入挂起原因" value="{{formData.remark}}"/></view>
  45. </view>
  46. <block wx:if="{{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">
  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="title">
  67. <view class="van-cell-text">附件<van-tag type="danger" style="margin-left: 10px;">可拍照</van-tag></view>
  68. </view>
  69. <view>
  70. <view class="van-cell-text">总数<van-tag round color="#5CAE77" plain style="margin-left: 10px;"> {{fileNum}}张 </van-tag></view>
  71. </view>
  72. </van-cell>
  73. <view class="fj-box">
  74. <view class="fj-li" wx:for="{{uploadOptions}}" wx:key="index">
  75. <view>
  76. <text>{{item.dictLabel}}</text>
  77. </view>
  78. <view class="img_box">
  79. <view class="img_list" wx:for="{{item.Pics}}" wx:for-index="childrenIndex" wx:for-item="item2" wx:key="childrenIndex">
  80. <image class="img_li" src="{{item2.tempFilePath}}" bindlongpress="bindlongpressimg" data-status="sjPics" bindtap="imgPreviewImage" data-id='{{childrenIndex}}'></image>
  81. </view>
  82. </view>
  83. </view>
  84. </view>
  85. </view>