微信小程序
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

3 anni fa
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. <view class="work_plan" style="margin-top:{{isIPX?'100px':'75px'}};">
  7. <view>
  8. <view class="menu_item {{inOrOut?'active':''}}" bindtap="switchTab" data-gid='{{1}}'>收入流水<text class="remind">0</text></view>
  9. <view class="menu_item {{!inOrOut?'active':''}}" bindtap="switchTab" data-gid='{{2}}'>支出流水<text class="remind">0</text></view>
  10. </view>
  11. <view style="border:1px solid #ddd;background: #fff;border-radius: 30rpx;line-height: 60rpx;padding: 0 25rpx;">
  12. <picker bindchange="bindPickerChange" value="{{index}}" range="{{array}}">
  13. <view class="picker">
  14. {{array[index]}}
  15. <image src="../../../image/icon/triangle.png" style="height:25rpx;width:25rpx;margin-right: 10rpx;"></image>
  16. </view>
  17. </picker>
  18. </view>
  19. </view>
  20. <view class="main-box table-box" wx:if="{{inOrOut}}" wx:for="{{list}}" wx:key="id">
  21. <view style="flex:1;"><checkbox value="cb" checked="true" style="margin-top: 33rpx;"/></view>
  22. <view style="flex:4;">
  23. <view><text>银行流水</text></view>
  24. <view><image src="../../../image/icon/inCome.png" style="height:25rpx;width:25rpx;margin-right: 10rpx;"></image><text>罚款收入</text></view>
  25. </view>
  26. <view style="flex:3;">
  27. <view><text style="color:#a4ea64;">附件6</text> </view>
  28. <view><text style="color:#7c83a0">2020-02-11</text></view>
  29. </view>
  30. <view style="flex:3;text-align: right;">
  31. <view>
  32. <view style="display: inline-block;background: lightcoral;border-radius: 10rpx;padding:0 10rpx;">
  33. <image src="../../../image/icon/stop.png" style="height:25rpx;width:25rpx;margin-right: 10rpx;"></image><text>未提交</text>
  34. </view>
  35. </view>
  36. <view>
  37. <text style="color:#3c9370;">¥3300.00</text>
  38. </view>
  39. </view>
  40. </view>
  41. <view class="main-box table-box" wx:if="{{!inOrOut}}" wx:for="{{list1}}" wx:key="id">
  42. <view style="flex:1;"><checkbox value="cb" checked="true" style="margin-top: 33rpx;"/></view>
  43. <view style="flex:4;">
  44. <view><text>银行流水</text></view>
  45. <view><image src="../../../image/icon/inCome.png" style="height:25rpx;width:25rpx;margin-right: 10rpx;"></image><text>罚款支出</text></view>
  46. </view>
  47. <view style="flex:3;">
  48. <view><text style="color:#a4ea64;">附件6</text> </view>
  49. <view><text style="color:#7c83a0">2020-02-11</text></view>
  50. </view>
  51. <view style="flex:3;text-align: right;">
  52. <view>
  53. <view style="display: inline-block;background: lightcoral;border-radius: 10rpx;padding:0 10rpx;">
  54. <image src="../../../image/icon/stop.png" style="height:25rpx;width:25rpx;margin-right: 10rpx;"></image><text>未提交</text>
  55. </view>
  56. </view>
  57. <view>
  58. <text style="color:#3c9370;">¥3300.00</text>
  59. </view>
  60. </view>
  61. </view>