瀏覽代碼

add to local

stanley-king 8 年之前
父節點
當前提交
85785dedcc

+ 4 - 0
daemon/static_order.sql

@@ -29,6 +29,10 @@ SELECT COUNT(*) FROM lrlz_member WHERE member_time > UNIX_TIMESTAMP('2016-08-11'
 SELECT count(*) FROM lrlz_member;
 
 
+#检查商品和品牌关联
+
+
+
 
 
 

+ 2 - 3
data/resource/mobile/activity/js/app_count_down.js

@@ -22,19 +22,18 @@ $(function()
         left_h = parseInt(left_secs / h_secs);
         left_m = parseInt((left_secs % h_secs) / m_secs);
         left_s = parseInt(left_secs % m_secs);
-//        判断是否为个位数
+
         function add_zero(time,id){
             if(time<10){
                 document.getElementById(id).innerHTML ="0"+time;
             }
             else {
-                document.getElementById(id).innerHTML =time;
+                document.getElementById(id).innerHTML = time;
             }
         }
         add_zero(left_h,"hour");
         add_zero(left_m,"min");
         add_zero(left_s,"second");
     }
-    setInterval(GetRTime,1000);
 });
 

+ 5 - 5
data/resource/mobile/shake/css/main.css

@@ -153,7 +153,7 @@ body {
     background: rgba(191,191,191,0.26);
     border-radius: 10px;
     z-index: 15;
-    opacity: 1;
+    opacity: 0;
     -webkit-transition: all 1s ease;
 }
 .head_icon {
@@ -195,15 +195,15 @@ body {
     padding-left: 0.3rem
 }
 [data-dpr="2"] .name {
-    font-size: 32px;
+    font-size: 30px;
 }
 [data-dpr="3"] .name {
-    font-size: 48px;
+    font-size: 46px;
 }
 [data-dpr="2"] .results_msg {
-	font-size: 24px;
+	font-size: 22px;
 }
 [data-dpr="3"] .results_msg {
-    font-size: 36px;
+    font-size: 34px;
 }
 

+ 12 - 0
mobile/templates/default/activity/limit_entra.php

@@ -147,5 +147,17 @@
             //alert('on webviewgggg click X');
             call_native_handler('on_native_click','{"action":"groupbuy","params":null}');
         });
+
+        setInterval(function ()
+        {
+            nowTime = new Date();
+            cur_sec = parseInt(nowTime.getTime() / 1000) + delta_secs;
+
+            if(cur_sec < server_start_time) {
+                GetRTime();
+            } else {
+                location.reload();
+            }
+        },1000);
     </script>
 </html>