|
@@ -41,22 +41,34 @@
|
|
<script>
|
|
<script>
|
|
$(document).ready(function () {
|
|
$(document).ready(function () {
|
|
$("#form_check").submit(function(e) {
|
|
$("#form_check").submit(function(e) {
|
|
- var param_string = $('#form_check').serialize();
|
|
|
|
- alert('param_string = ' + param_string); // test
|
|
|
|
|
|
+ var cellphone_list = $('#cellphone_list').val();
|
|
|
|
+ alert('cellphone_list = ' + cellphone_list); // test
|
|
|
|
|
|
- axios({
|
|
|
|
- method: 'get',
|
|
|
|
- url: 'http://139.162.121.30:8887/check',
|
|
|
|
- 'Content-Type': 'application/json',
|
|
|
|
|
|
+ axios.get('http://139.162.121.30:8887/check', {
|
|
|
|
+ params: {
|
|
|
|
+ cellphone: cellphone_list
|
|
|
|
+ }
|
|
})
|
|
})
|
|
- .then((result) => {
|
|
|
|
- console.log(result.data)
|
|
|
|
- $("#customer_note").text(result.data.customer_note);
|
|
|
|
|
|
+ .then(function (response) {
|
|
|
|
+ console.log(response);
|
|
|
|
+ $("#customer_note").text(response.data.customer_note);
|
|
})
|
|
})
|
|
- .catch((err) => { console.error(err) })
|
|
|
|
- return false;
|
|
|
|
|
|
+ .catch(function (error) {
|
|
|
|
+ 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;
|
|
});
|
|
});
|
|
});
|
|
});
|
|
</script>
|
|
</script>
|