index.html 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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. <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
  9. <!-- Bootstrap CSS -->
  10. <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
  11. <title>幸福經紀人</title>
  12. </head>
  13. <body>
  14. <div class="my-5 container text-center col-sm-12 col-md-6">
  15. <h2 class="mb-3"><b>幸福經紀人</b></h2>
  16. <h4 class="mb-5"><b>手機號碼批次查詢系統</b></h4>
  17. <form role="form" id="form_check">
  18. <div class="mb-4 form-group">
  19. <textarea class="form-control" rows="10" id="cellphone" name="cellphone" placeholder="請輸入手機號碼清單"></textarea>
  20. </div>
  21. <div>
  22. <button id="form_check_submit" type="submit" class="btn btn-light">
  23. <span class="lead font-weight-bold">
  24. 立即查詢 <i class="ml-1 fas fa-sign-in-alt"></i>
  25. </span>
  26. </button>
  27. </div>
  28. </form>
  29. <div class="mt-5" id="result">查詢結果</div>
  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. var cellphone = $('#cellphone').val();
  39. axios.get('http://139.162.121.30:8887/check', {
  40. params: {
  41. cellphone: cellphone
  42. }
  43. })
  44. .then(function (response) {
  45. console.log(response);
  46. html = ''
  47. count = response.data.count;
  48. cellphone = response.data.cellphone;
  49. for (let i = 0; i < cellphone.length; i++) {
  50. html += cellphone[i] + "<br>";
  51. }
  52. if (count == 0) { // 無手機資料
  53. $("#result").text("沒有符合的資料");
  54. } else { // 有手機資料
  55. Swal.fire({
  56. title: '查詢結果',
  57. icon: 'success',
  58. confirmButtonColor: '#3085d6',
  59. html: html
  60. });
  61. $("#result").html(html);
  62. }
  63. })
  64. .catch(function (error) {
  65. console.log(error);
  66. });
  67. // axios({
  68. // method: 'get',
  69. // url: 'http://139.162.121.30:8887/check',
  70. // 'Content-Type': 'application/json',
  71. // })
  72. // .then((result) => {
  73. // console.log(result.data)
  74. // $("#customer_note").text(result.data.customer_note);
  75. // })
  76. // .catch((err) => { console.error(err) })
  77. return false;
  78. });
  79. });
  80. </script>
  81. </html>