Browse Source

看板接口

chenc 4 years ago
parent
commit
f30204418e

+ 2 - 2
js/service.js

@@ -68,8 +68,8 @@ var ServiceOperation = {
         dataType: "json",
         async: isAsync,
         success: function(data) {
-          // if (callback != undefined)
-          //   callback(data);
+          if (callback != undefined)
+            callback(data);
         },
         complete: function(XMLHttpRequest, textStatus) {},
         error: function(XMLHttpRequest, textStatus) {

+ 19 - 0
js/service/method-get-service.js

@@ -0,0 +1,19 @@
+/**
+ * 公用GET请求
+ * chenchuang
+ * 20201019
+ */
+var MethodGetService={
+    methodGet:function(url){
+        var ret = null;
+        var functionUrl = url;
+        ServiceOperation.send(ServiceOperation.MethodGet, ServiceOperation.getFullUrl(functionUrl),"", false, function(data){
+            if(!data.success){
+                DialogOperation.alertDialog(data.message); 
+            }else{
+                ret = data.result;
+            }
+        }, false, false);
+        return ret;
+    }
+}

+ 14 - 14
js/service/person.js

@@ -56,20 +56,20 @@ var ServicePerson={
     },
     // 人员月出勤率,考勤人数,总人数
     getMonthAttendance:function(){
-        const list = [];
-        list.push({label:"10",sum1:45,sum2:50});
-        list.push({label:"11",sum1:48,sum2:50});
-        list.push({label:"12",sum1:47,sum2:50});
-        list.push({label:"01",sum1:40,sum2:50});
-        list.push({label:"02",sum1:42,sum2:50});
-        list.push({label:"03",sum1:44,sum2:50});
-        list.push({label:"04",sum1:45,sum2:50});
-        list.push({label:"05",sum1:47,sum2:50});
-        list.push({label:"06",sum1:48,sum2:50});
-        list.push({label:"07",sum1:46,sum2:50});
-        list.push({label:"08",sum1:49,sum2:50});
-        list.push({label:"09",sum1:50,sum2:50});
-        return list;
+        // const list = [];
+        // list.push({label:"10",sum1:45,sum2:50});
+        // list.push({label:"11",sum1:48,sum2:50});
+        // list.push({label:"12",sum1:47,sum2:50});
+        // list.push({label:"01",sum1:40,sum2:50});
+        // list.push({label:"02",sum1:42,sum2:50});
+        // list.push({label:"03",sum1:44,sum2:50});
+        // list.push({label:"04",sum1:45,sum2:50});
+        // list.push({label:"05",sum1:47,sum2:50});
+        // list.push({label:"06",sum1:48,sum2:50});
+        // list.push({label:"07",sum1:46,sum2:50});
+        // list.push({label:"08",sum1:49,sum2:50});
+        // list.push({label:"09",sum1:50,sum2:50});
+        return MethodGetService.methodGet("/fbsWorkshopDispatchList/fbsWorkshopDispatchList/getAttendance");
     },
     // 人员日出勤率,考勤人数,总人数
     getDayAttendance:function(){

+ 10 - 9
js/service/product.js

@@ -98,15 +98,16 @@ var ServiceProduct = {
     },
     // 根据产品分类获取质量异常数量
     getQualityExceptionByCategory: function () {
-        return {
-            "分类A": 800,
-            "分类B": 900,
-            "分类C": 1000,
-            "分类D": 700,
-            "分类E": 600,
-            "分类F": 1100,
-            "分类G": 500
-        };
+        return MethodGetService.methodGet("/fbsWorkshopDispatchList/fbsWorkshopDispatchList/getAbnormalHoursMonthReport");
+        // return {
+        //     "分类A": 800,
+        //     "分类B": 900,
+        //     "分类C": 1000,
+        //     "分类D": 700,
+        //     "分类E": 600,
+        //     "分类F": 1100,
+        //     "分类G": 500
+        // };
     },
     // 某月产品良数量
     getMonthGood: function () {

+ 7 - 6
js/service/workhour.js

@@ -6,12 +6,13 @@
 var ServiceWorkhour={
     // 根据物料统计
     getByMaterial:function(){
-        return {
-            "物料A 20*30":150,
-            "物料B 20*35":250,
-            "物料C 20*35":200,
-            "物料D 20*35":400,
-        };
+        return MethodGetService.methodGet("/fbsWorkshopDispatchList/fbsWorkshopDispatchList/getProductHoursMonthReport");
+        // return {
+        //     "物料A 20*30":250,
+        //     "物料B 20*35":250,
+        //     "物料C 20*35":200,
+        //     "物料D 20*35":400,
+        // };
     },
     // 当天根据物料统计
     getDayByMaterial:function(){

+ 6 - 0
pages/dashboard/produce.html

@@ -9,6 +9,12 @@
     <link href="/lib/bootstrap/bootstrap.min.css" rel="stylesheet" />
     <link href="/css/dashboard.css" rel="stylesheet" />
 
+    <script type="text/javascript" src="/js/service.js"></script>
+    <script type="text/javascript" src="/js/session.js"></script>
+    <script type="text/javascript" src="/js/service/method-get-service.js"></script>
+
+    <script type="text/javascript" src="/lib/jquery-3.4.1.js"></script>
+    <script type="text/javascript" src="/lib/jquery-3.4.1.min.js"></script>
 
 </head>