|
@@ -92,7 +92,7 @@ $("input[name=submit]").click(function(){
|
|
|
stop = 0;
|
|
|
$('#term-error').text('');
|
|
|
}
|
|
|
-
|
|
|
+ showThankyou();
|
|
|
if(stop == 0) {
|
|
|
/* $.ajax({
|
|
|
url: '/step_questions/submit',
|
|
@@ -111,7 +111,14 @@ $("input[name=submit]").click(function(){
|
|
|
|
|
|
// 依據管道導頁
|
|
|
function showThankyou() {
|
|
|
- document.location = '/a1/index_complete_line.html';
|
|
|
+ axios.get('http://q.ptt.cx/coffee').then(res => {
|
|
|
+ if(res.data.coffee == 1) {
|
|
|
+ document.location = '/a1/index_complete_line.html';
|
|
|
+ } else {
|
|
|
+ document.location = '/a1/index_complete_line_after.html';
|
|
|
+ }
|
|
|
+ });
|
|
|
+ // document.location = '/a1/index_complete_line.html';
|
|
|
}
|
|
|
// 跳離頁面
|
|
|
$('.btn-exit').click(function() {
|