|
@@ -45,6 +45,9 @@ $(document).ready(function () {
|
|
|
axios.get('http://139.162.121.30:8887/check', {
|
|
|
params: {
|
|
|
cellphone: cellphone
|
|
|
+ },
|
|
|
+ headers: {
|
|
|
+ 'Access-Control-Allow-Origin': '*'
|
|
|
}
|
|
|
})
|
|
|
.then(function (response) {
|
|
@@ -59,9 +62,15 @@ $(document).ready(function () {
|
|
|
html += cellphone[i] + "<br>";
|
|
|
}
|
|
|
|
|
|
- if (count == 0) { // 無手機資料
|
|
|
- $("#result").text("沒有符合的資料");
|
|
|
- } else { // 有手機資料
|
|
|
+ if (count == 0) { // 無手機號碼資料
|
|
|
+ $("#result").text("沒有符合的手機號碼");
|
|
|
+ Swal.fire({
|
|
|
+ title: 'success',
|
|
|
+ icon: 'error',
|
|
|
+ confirmButtonColor: '#3085d6',
|
|
|
+ text: '沒有符合的手機號碼',
|
|
|
+ });
|
|
|
+ } else { // 有手機號碼資料
|
|
|
Swal.fire({
|
|
|
title: '查詢結果',
|
|
|
icon: 'success',
|
|
@@ -76,17 +85,6 @@ $(document).ready(function () {
|
|
|
console.log(error);
|
|
|
});
|
|
|
|
|
|
- // axios({
|
|
|
- // method: 'get',
|
|
|
- // url: 'http://139.162.121.30:8887/check',
|
|
|
- // 'Content-Type': 'application/json',
|
|
|
- // })
|
|
|
- // .then((result) => {
|
|
|
- // console.log(result.data)
|
|
|
- // $("#customer_note").text(result.data.customer_note);
|
|
|
- // })
|
|
|
- // .catch((err) => { console.error(err) })
|
|
|
-
|
|
|
return false;
|
|
|
});
|
|
|
});
|