Преглед изворни кода

Merge branch 'master' of http://git.choozmo.com:3000/choozmo/hhh_step_question into master

Your Name пре 3 година
родитељ
комит
80ecb275f3

BIN
step_question/.DS_Store


+ 40 - 0
step_question/apis/static/controller.html

@@ -0,0 +1,40 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+  <meta charset="UTF-8">
+  <meta name="viewport" content="width=device-width, initial-scale=1.0">
+  <title>幸福空間 - 咖啡券控制顯示</title>
+  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css">
+  <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp"
+    crossorigin="anonymous">
+  <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
+  <link rel="stylesheet" href="./style.css">
+  <script src="https://unpkg.com/axios/dist/axios.min.js"></script>
+</head>
+<body>
+    <div class="container text-center">
+        <h2 class="mt-5">咖啡券控制顯示</h2>
+        <div class="d-flex justify-content-center" style="margin-top: 10%;">
+            <button class="btn btn-warning d-inline-block" style="margin-right: 1rem;" onclick="onshow()">顯示咖啡券</button>
+            <button class="btn btn-warning" onclick="offshow()">不顯示咖啡券</button>
+        </div>
+    </div>
+<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
+  <script src='https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js'></script>
+<script>
+   function onshow() {
+    axios.get('http://q.ptt.cx/coffee/set/1').then(res => {
+        console.log(res.data);
+        window.alert('已開啟咖啡券顯示!咖啡券將顯示於頁尾');
+    });
+   }
+   function offshow() {
+    axios.get('http://q.ptt.cx/coffee/set/0').then(res => {
+        window.alert('關閉咖啡券顯示!');
+        console.log(res.data);
+    });
+   }
+</script>
+
+</body>
+</html>

BIN
step_question/apis/static/images/banner-bottom1.jpg


BIN
step_question/apis/static/images/banner_top1.jpg


+ 2 - 2
step_question/apis/static/index-line.html

@@ -14,7 +14,7 @@
 <body>
   <div class="container">
     <div class="text-center">
-      <img class="img-fluid" src="images/banner_top.jpg" alt="幸福空間 - 裝修市場問卷調查">
+      <img class="img-fluid" src="images/banner_top1.jpg" alt="幸福空間 - 裝修市場問卷調查">
     </div>
 
     <form action="/step_questions/line-submit" method="post" id="msform">
@@ -124,7 +124,7 @@
     </form>
         
     <div class="text-center coffee_b">
-      <img class="img-fluid mb-3" src="images/banner-bottom.jpg" alt="幸福空間 - 裝修市場問卷調查">
+      <img class="img-fluid mb-3" src="images/banner-bottom1.jpg" alt="幸福空間 - 裝修市場問卷調查">
     </div>
 
   </div>

+ 1 - 1
step_question/apis/static/index2.html

@@ -14,7 +14,7 @@
 <body>
   <div class="container">
     <div class="text-center">
-      <img class="img-fluid" src="images/banner_top.jpg" alt="幸福空間 - 裝修市場問卷調查">
+      <img class="img-fluid" src="images/banner_top1.jpg" alt="幸福空間 - 裝修市場問卷調查">
     </div>
 
     <form action="/step_questions/submit" method="post" id="msform">

+ 1 - 1
step_question/apis/static/style.css

@@ -54,7 +54,7 @@ body {
 } */
 
 .img_banner {
-	background-image: url('images/banner_top.jpg');
+	background-image: url('images/banner_top1.jpg');
 	background-repeat: no-repeat;
 	background-size: contain;
 	background-position: center;