applyjoinapprovel.wxml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <view class='commonHview'>
  2. <view class='left_sty'>
  3. 申请人
  4. </view>
  5. <view class='right_sty'>
  6. <input class='input_sty' type='text' name='applyName' value='{{applyName}}' disabled='true'></input>
  7. </view>
  8. </view>
  9. <view class='commonhline' style='height:3rpx;'></view>
  10. <view class='commonHview'>
  11. <view class='left_sty'>
  12. 申请手机号
  13. </view>
  14. <view class='right_sty'>
  15. <input class='input_sty' type='text' name='applyPhone' value='{{applyPhone}}' disabled='true'></input>
  16. </view>
  17. </view>
  18. <view class='commonhline' style='height:3rpx;'></view>
  19. <view class='commonHview'>
  20. <view class='left_sty'>
  21. 入职日期
  22. </view>
  23. <view class='right_sty'>
  24. <input class='input_sty' type='text' name='enterDate' value='{{enterDate}}' disabled='true'></input>
  25. </view>
  26. </view>
  27. <view class='commonhline' style='height:3rpx;'></view>
  28. <view class='commonHview'>
  29. <view class='left_sty'>
  30. 出生日期
  31. </view>
  32. <view class='right_sty'>
  33. <input class='input_sty' type='text' name='birthDate' value='{{birthDate}}' disabled='true'></input>
  34. </view>
  35. </view>
  36. <view class='commonhline' style='height:3rpx;'></view>
  37. <view class='commonHview'>
  38. <view class='left_sty'>
  39. 邮箱
  40. </view>
  41. <view class='right_sty'>
  42. <input class='input_sty' type='text' name='applyMail' value='{{applyMail}}' disabled='true'></input>
  43. </view>
  44. </view>
  45. <view class='commonhline' style='height:3rpx;'></view>
  46. <view class='commonHview'>
  47. <view class='left_sty'>
  48. 加入公司
  49. </view>
  50. <view class='right_sty'>
  51. <input class='input_sty' type='text' name='companyName' value='{{companyName}}' disabled='true'></input>
  52. </view>
  53. </view>
  54. <view class='commonhline' style='height:3rpx;'></view>
  55. <view class='commonHview' style='margin-top:400rpx;' wx:if='{{approvelStatus == 0}}'>
  56. <button class='comBtn' style='background-color: #3C85EC;color:#FFF;' formType="submit" hover-class="commonclick-btn" bindtap='agreeBtnClick'>同意</button>
  57. <button class='comBtn' formType="submit" hover-class="commonclick-btn" bindtap='disagreeBtnClick'>不同意</button>
  58. </view>