微信小程序
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

paymentTemplate.wxml 3.3 KiB

hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <!--pages/apply/paymentTemplate/paymentTemplate.wxml height:{{isIPX?'88px':'64px'}};-->
  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="pure_top" style="top:{{isIPX?'88px':'64px'}};"></view>
  7. <view class="main-box top-box" style="margin-top:{{isIPX?'100px':'75px'}};">
  8. <text class="box-title">审批事项</text>
  9. <input class="input_tit" placeholder="房屋出租整年费用" readonly value="{{form.approvalItemTemplate.approvalItems}}"/>
  10. <text>支出总金额</text>
  11. <view class="money_box">¥<input class="input_money" readonly placeholder="总金额" placeholder-style="color:#E90000;" value="{{countMoney}}"/></view>
  12. <text>提交单位:{{form.approvalItemTemplate.submitCompany}}</text>
  13. <text>提交日期:{{form.approvalItemTemplate.submitDate}}</text>
  14. <text>提 交 人:{{form.approvalItemTemplate.submitter}}</text>
  15. <text>联系电话:{{form.approvalItemTemplate.telephone}}</text>
  16. </view>
  17. <block wx:for="{{form.transfers}}" wx:key="index">
  18. <text class="title">事项{{item.num}}</text>
  19. <view class="main-box top-box">
  20. <text>支出金额</text>
  21. <view class="money_box">¥<input class="input_money" readonly placeholder="金额" placeholder-style="color:#E90000;" value="{{item.expenditureAmount}}"/></view>
  22. <van-cell-group border="{{ false }}">
  23. <van-cell title="{{item.remark}}" border="{{ false }}" >
  24. <view slot="icon" style="width: 15%;">事由:</view>
  25. </van-cell>
  26. <van-cell title="{{item.payer}}" border="{{ false }}" center >
  27. <view slot="icon" style="width: 15%;"><image src="/image/apply/icon_fu.png" style="width: 20px;height: 20px;"></image></view>
  28. </van-cell>
  29. <van-cell title="{{item.payeeList[0].payee}}" center border="{{ false }}" >
  30. <view slot="icon" style="width: 15%;"><image src="/image/apply/icon_shou.png" style="width: 20px;height: 20px;"></image></view>
  31. </van-cell>
  32. <view class="btnBox">
  33. <image src="/image/apply/down.png" class="down" bindtap="goSee"></image>
  34. <image src="/image/apply/icon_update.png" class="update" bindtap="goUpdate"></image>
  35. <image src="/image/apply/icon_delete.png" class="delete" data-index="{{index}}" bindtap="goDelete"></image>
  36. </view>
  37. </van-cell-group>
  38. </view>
  39. </block>
  40. <view class="bottomBtn">
  41. <view bindtap="showPopup">
  42. <image src="/image/apply/icon_pres.png"></image>
  43. <text>保存模板</text>
  44. </view>
  45. <view bindtap="goUpdate">
  46. <image src="/image/apply/icon_add.png"></image>
  47. <text>新增事项</text>
  48. </view>
  49. </view>
  50. <view class="bottom">
  51. <view class="btn1" data-type="3" bindtap="goSubmit">提交复核</view>
  52. <view class="btn2" data-type="0" bindtap="goSubmit">下一步</view>
  53. </view>
  54. <van-dialog
  55. use-slot
  56. title="支付模板"
  57. show="{{ show }}"
  58. bind:close="onClose"
  59. theme='round-button'
  60. confirmButtonText="保存"
  61. data-type="1"
  62. bind:confirm="goSubmit"
  63. closeOnClickOverlay="{{ true }}"
  64. >
  65. <input class="input_tit" placeholder="请输入模板名称" style="width: 90%;margin: 0 auto;margin-top: 15px;margin-bottom: 10px;text-align: center;" value="{{form.approvalItemTemplate.templateName}}" bindinput="bindNameInput"/>
  66. </van-dialog>