huaisianhuang 3 anni fa
parent
commit
477252fac8
2 ha cambiato i file con 40 aggiunte e 0 eliminazioni
  1. BIN
      step_question/.DS_Store
  2. 40 0
      step_question/apis/static/controller.html

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);
+    });
+   }
+
+   onshow();
+   function offshow() {
+    axios.get('http://q.ptt.cx/coffee/set/0').then(res => {
+        console.log(res.data);
+    });
+   }
+</script>
+
+</body>
+</html>