index.html 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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. <script src="https://unpkg.com/axios/dist/axios.min.js"></script>
  15. <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>
  16. <div class="my-5 container text-center col-sm-12 col-md-8">
  17. <h2 class="mb-5">幸福經紀人-客戶手機號碼批次查詢</h2>
  18. <form role="form" id="form_check">
  19. <!-- <div class="mb-5">
  20. <input type="text" class="form-control" id="cellphone" placeholder="手機號碼" name="cellphone">
  21. </div> -->
  22. <div class="form-group">
  23. <label for="description"><b>手機號碼清單</b></label>
  24. <textarea class="form-control" rows="10" id="cellphone_list" name="cellphone_list" placeholder="請輸入手機號碼清單"></textarea>
  25. </div
  26. <div>
  27. <button id="form_check_submit" type="submit" class="btn btn-light">
  28. <span class="lead font-weight-bold">
  29. 立即查詢 <i class="ml-1 fas fa-sign-in-alt"></i>
  30. </span>
  31. </button>
  32. </div>
  33. </form>
  34. </div>
  35. <div id="customer_note">備註</div>
  36. </body>
  37. <script>
  38. $(document).ready(function () {
  39. $("#form_check").submit(function(e) {
  40. var cellphone_list = $('#cellphone_list').val();
  41. alert('cellphone_list = ' + cellphone_list); // test
  42. axios.get('http://139.162.121.30:8887/check', {
  43. params: {
  44. cellphone: cellphone_list
  45. }
  46. })
  47. .then(function (response) {
  48. console.log(response);
  49. $("#customer_note").text(response.data.customer_note);
  50. })
  51. .catch(function (error) {
  52. console.log(error);
  53. });
  54. // axios({
  55. // method: 'get',
  56. // url: 'http://139.162.121.30:8887/check',
  57. // 'Content-Type': 'application/json',
  58. // })
  59. // .then((result) => {
  60. // console.log(result.data)
  61. // $("#customer_note").text(result.data.customer_note);
  62. // })
  63. // .catch((err) => { console.error(err) })
  64. return false;
  65. });
  66. });
  67. </script>
  68. </html>