rlxf_pass.axml 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <view class='content' ref='saveChildRef0'>
  2. <view class='top'>
  3. <view class='btn'>
  4. <btn onTap='antmoveAction' data-antmove-tap='back'>
  5. {{isMachine?'切换用户':'重新认证'}}
  6. </btn>
  7. </view>
  8. <view class='basic'>
  9. <view class='info'>
  10. <text>
  11. {{userInfo.username || '***'}}
  12. </text>
  13. <text a:if='{{!isMachine}}'>
  14. 手机号:{{userInfo.phone || '***********'}}
  15. </text>
  16. <text a:if='{{wxLoginType===1}}'>
  17. 身份证:{{userInfo.idNumber || '******************'}}
  18. </text>
  19. <text a:if='{{wxLoginType===2}}'>
  20. 卡号:{{userInfo.cardIdEx || '*****'}}
  21. </text>
  22. <text a:if='{{!isMachine}}'>
  23. 通行区域:{{userInfo.org || '*****'}}
  24. </text>
  25. </view>
  26. <view class='avatar'>
  27. <image
  28. a:if='{{userInfo.avatar}}'
  29. src='{{userInfo.avatar}}'
  30. onTap='antmoveAction'
  31. data-antmove-tap='preview'
  32. >
  33. </image>
  34. <image
  35. a:if='{{!userInfo.avatar}}'
  36. src='../../../static/images/avator.png'
  37. onTap='antmoveAction'
  38. data-antmove-tap='preview'
  39. >
  40. </image>
  41. </view>
  42. </view>
  43. <view class='time'>
  44. <text>
  45. 有效期至:
  46. </text>
  47. <text class='letter-sapce'>
  48. {{userInfo.createTime || '****-**-** **:**:**'}}
  49. </text>
  50. </view>
  51. </view>
  52. <view a:if='{{authFlag.showDisinfect||authFlag.showProblemReport}}' class='function-bar'>
  53. <view
  54. a:for='{{functionList}}'
  55. a:if='{{item.isShow}}'
  56. class='flex'
  57. a:key='{{index}}'
  58. data-item='{{item}}'
  59. ref-numbers='{{functionList}}'
  60. onTap='antmoveAction'
  61. data-antmove-tap='clickFun'
  62. >
  63. <image src='{{item.img}}' alt=" ">
  64. </image>
  65. <view class='tit'>
  66. {{item.tit}}
  67. </view>
  68. </view>
  69. </view>
  70. <view class='center'>
  71. <view
  72. class=" click {{isMachine?'machine-click':''}} {{timeCount > 0?' click-stop':''}}"
  73. onTap='antmoveAction'
  74. data-antmove-tap="{{isMachine?'doPassMachine':'doPass'}}"
  75. >
  76. <text>
  77. 点击申报
  78. <block a:if='{{timeCount > 0}}'>
  79. ({{timeCount}}s)
  80. </block>
  81. </text>
  82. <image a:if='{{timeCount == 0}}' src='../../../static/images/hand.gif'>
  83. </image>
  84. </view>
  85. <view class='tip'>
  86. <text>
  87. 申报后,可刷脸快速通行
  88. {{userInfo.org}}区域的闸机
  89. </text>
  90. </view>
  91. </view>
  92. </view>