index.html 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. <!doctype html>
  2. <html lang="utf-8">
  3. <head>
  4. <!-- Required meta tags -->
  5. <meta charset="utf-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  8. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
  9. <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
  10. <!-- Bootstrap CSS -->
  11. <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
  12. <title>幸福經紀人</title>
  13. </head>
  14. <body>
  15. <div class="my-5 container text-center col-sm-12 col-md-6">
  16. <h1 class="mb-3" style="color:#ea068c;"><b>幸福經紀人</b></h1>
  17. <h4 class="mb-5">手機號碼批次查詢系統</h4>
  18. <form role="form" id="form_check">
  19. <div class="mb-4 form-group">
  20. <textarea class="form-control" rows="10" id="cellphone" name="cellphone" placeholder="請輸入要查詢的手機號碼 (每列1筆手機資料)"></textarea>
  21. </div>
  22. <div>
  23. <button id="form_check_submit" type="submit" class="btn btn-light">
  24. <span class="font-weight-bold">
  25. 立即查詢 <i class="ml-1 fas fa-sign-in-alt"></i>
  26. </span>
  27. </button>
  28. </div>
  29. </form>
  30. </div>
  31. </body>
  32. <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
  33. <script src="https://unpkg.com/axios/dist/axios.min.js"></script>
  34. <script src="//cdn.jsdelivr.net/npm/sweetalert2@11"></script>
  35. <script>
  36. $(document).ready(function () {
  37. $("#form_check").submit(function(e) {
  38. // 立即查詢按鈕控制
  39. var buttonStyle = '<span class="font-weight-bold"> \
  40. <i class="fa fa-spinner fa-spin"></i> 查詢中,請稍待 <i class="ml-1 fas fa-sign-in-alt"></i> \
  41. </span>'
  42. $('#form_check_submit').html(buttonStyle);
  43. var cellphone = $('#cellphone').val();
  44. if (cellphone == "") { // 未輸入手機號碼
  45. Swal.fire({
  46. title: '注意!',
  47. icon: 'error',
  48. confirmButtonColor: '#3085d6',
  49. text: '請先輸入要查詢的手機號碼',
  50. });
  51. } else { // 已輸入手機號碼
  52. axios.get('http://139.162.121.30:8887/check', {
  53. params: {
  54. cellphone: cellphone
  55. }
  56. })
  57. .then(function (response) {
  58. console.log(response);
  59. // 立即查詢按鈕控制
  60. var buttonStyle = '<span class="font-weight-bold"> \
  61. 立即查詢 <i class="ml-1 fas fa-sign-in-alt"></i> \
  62. </span>'
  63. $('#form_check_submit').html(buttonStyle);
  64. html = ''
  65. count = response.data.count;
  66. cellphone = response.data.cellphone;
  67. if (count == 0) { // 無手機號碼資料
  68. Swal.fire({
  69. title: '查詢結果',
  70. icon: 'success',
  71. confirmButtonColor: '#3085d6',
  72. text: '沒有符合的手機號碼',
  73. });
  74. } else { // 有手機號碼資料
  75. for (let i = 0; i < cellphone.length; i++) {
  76. html += '<div class="mb-1">' + cellphone[i] + '</div>';
  77. }
  78. Swal.fire({
  79. title: '符合的手機號碼',
  80. icon: 'success',
  81. confirmButtonColor: '#3085d6',
  82. html: html
  83. });
  84. }
  85. })
  86. .catch(function (error) {
  87. console.log(error);
  88. });
  89. }
  90. return false;
  91. });
  92. });
  93. </script>
  94. </html>