personal.html 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. {extend name="layout:home" /}
  2. {block name="container"}
  3. <style>
  4. .information{
  5. margin-left: 100px;
  6. margin-top: 40px;
  7. }
  8. table{
  9. margin-left: 100px;
  10. margin-top: 10px;
  11. }
  12. .td_info{
  13. width: 150px;
  14. height: 60px;
  15. line-height: 60px;
  16. }
  17. .td_user_info{
  18. width: 240px;
  19. height: 60px;
  20. line-height: 60px;
  21. }
  22. table .user_info>input{
  23. border: 1px #aaa solid;
  24. border-radius: 2px;
  25. height: 30px;
  26. width: 210px;
  27. line-height:30px ;
  28. }
  29. .picture td{
  30. height: 180px;
  31. }
  32. .images{
  33. width: 200px;
  34. height: 150px;
  35. border: 1px #aaa solid;
  36. }
  37. </style>
  38. <div class="layui-tab layui-tab-card">
  39. <form method="post" enctype="multipart/form-data">
  40. <div class="information">
  41. <div style="color:dodgerblue;">请务必保证您填写的信息准确无误,否则有可能造成认证失败</div>
  42. <div style="margin-top: 10px;font-size: 11px;">当前内容适用大陆客户,若您非大陆用户,请点击 <a href="">非大陆客户</a></div>
  43. </div>
  44. <div class="info">
  45. <table>
  46. <tr>
  47. <td class="td_info">真实姓名</td>
  48. <td class="td_user_info user_info"><input type="text" name="name" placeholder="请输入姓名" value="{$userinfo['userInfo_name']}"></td>
  49. <td class="td_user_info"></td>
  50. </tr>
  51. <tr>
  52. <td class="td_info">身份证号码</td>
  53. <td class="td_user_info user_info"><input type="text" name="identity" placeholder="请身份证号码" value="{$userinfo['userInfo_identity']}"></td>
  54. <td class="td_user_info"></td>
  55. </tr>
  56. <tr>
  57. <td class="td_info">财务信息类型</td>
  58. <td class="td_user_info user_info"><input type="text" name="bank_card" placeholder="银行账号" value="{$userinfo['userInfo_bank_card']}"></td>
  59. <td class="td_user_info"></td>
  60. </tr>
  61. <tr>
  62. <td class="td_info">开户银行账号</td>
  63. <td class="td_user_info user_info"><input type="text" name="debit_card" placeholder="请输入借记卡卡号" value="{$userinfo['userInfo_debit_card']}"></td>
  64. <td class="td_user_info"></td>
  65. </tr>
  66. <tr class="picture">
  67. <td class="td_info"><div style="margin-top: -90px;">证件上传</div></td>
  68. <td class="td_user_info user_info">
  69. <div class="images"><input type="file" name="img_front" /></div>
  70. <div style="width:180px;height: 20px;margin-top: -20px;text-align: center;font-size: 10px;color: #AAA;">证件正面</div>
  71. </td>
  72. <td class="td_user_info">
  73. <div class="images"><input type="file" name="img_back"></div>
  74. <div style="width:180px;height: 20px;margin-top: -20px;text-align: center;font-size: 10px;color: #AAA;">证件反面</div>
  75. </td>
  76. </tr>
  77. <tr>
  78. <td class="td_info"></td>
  79. <td class="td_user_info"><input type="checkbox" name="ch_box" id="ch_box" onclick="c_box()" /><span>同意 <a href="shenming.html" target="_blank"> 真实性声明</a></span></td>
  80. <td class="td_user_info"></td>
  81. </tr>
  82. <tr>
  83. <td class="td_info"></td>
  84. <td class="td_user_info user_info">
  85. <input type="submit" value="确认" style="width: 70px;">&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp<input type="button" id="cancel" value="取消" style="width: 70px;">
  86. </td>
  87. <td class="td_user_info"></td>
  88. </tr>
  89. </table>
  90. </div>
  91. </form>
  92. </div>
  93. <script>
  94. $("#cancel").click(function(){
  95. window.history.back(-1);
  96. });
  97. </script>
  98. <script type="text/javascript">
  99. layui.use('laydate', function(){
  100. var laydate = layui.laydate;
  101. //执行一个laydate实例
  102. laydate.render({
  103. elem: '#creatTime' //指定元素
  104. });
  105. laydate.render({
  106. elem:'#timeRang',
  107. range:true,
  108. format: 'yyyy/MM/dd',
  109. done: function(value, date){
  110. /* 时间选择完成后的回调 */
  111. }
  112. })
  113. });
  114. </script>
  115. {/block}