From 3d66ebbd639ce6d47475f1729b0c9957f735ced0 Mon Sep 17 00:00:00 2001
From: luxiaotao1123 <t1341870251@163.com>
Date: 星期三, 10 六月 2020 13:56:23 +0800
Subject: [PATCH] #

---
 src/main/webapp/static/js/pakStore/pakStore.js |   92 +++++++++++++++++++++++++++++++++++++++++++---
 1 files changed, 86 insertions(+), 6 deletions(-)

diff --git a/src/main/webapp/static/js/pakStore/pakStore.js b/src/main/webapp/static/js/pakStore/pakStore.js
index 3ea4fbc..0f2a8d4 100644
--- a/src/main/webapp/static/js/pakStore/pakStore.js
+++ b/src/main/webapp/static/js/pakStore/pakStore.js
@@ -1,3 +1,7 @@
+
+var initCountVal = 0;
+var matCodeData = [];
+
 layui.use(['table','laydate', 'form'], function() {
     var table = layui.table;
     var $ = layui.jquery;
@@ -11,29 +15,99 @@
         even: true,
         limit: 500,
         cellMinWidth: 50,
+        toolbar: '#toolbar',
         cols: [[
-            {type: 'checkbox'},
-            {field: 'matNo', align: 'center', title: '鐗╂枡缂栫爜', sort: 'true'},
+            {fixed: 'left', title:'鎿嶄綔', align: 'center', toolbar: '#operate', width:80},
+            {field: 'matNo', align: 'center', title: '鐗╂枡缂栫爜'},
             {field: 'barcode', align: 'center', title: '鏉$爜'},
             {field: 'matName', align: 'center', title: '鐗╂枡鍚嶇О'},
             {field: 'str1', align: 'center', title: '鐗╂枡鍗曚綅'},
             {field: 'str2', align: 'center', title: '鐗╂枡瑙勬牸'},
-            {field: 'count', title: '鏁伴噺', align: 'center', edit:'text', width: 100}
+            {fixed: 'right', field: 'count', title: '鏁伴噺', align: 'center', edit:'text', width: 100}
         ]],
         done: function (res, curr, count) {
+            $('td[data-field=count] div').html(initCountVal);
+            setMatCodeData(res.data);
         }
     });
 
-});
+    // 椤甸潰淇敼
+    table.on('edit(chooseData)', function (obj) {
+        if (!isNaN(obj.value)) {
+            updateMatCodeData(obj.data.matNo, Number(obj.value));
+            tableIns.reload({data: matCodeData,done:function (res) {
+                    // 瑕嗙洊render鏂规硶鐨刣one
+                }});
+        } else {
+            layer.msg("璇疯緭鍏ユ暟瀛�");
+        }
+    });
 
+    // 鐩戝惉澶村伐鍏锋爮浜嬩欢
+    table.on('toolbar(chooseData)', function (obj) {
+        var checkStatus = table.checkStatus(obj.config.id);
+        var data = checkStatus.data;
+        switch(obj.event) {
+            case 'comb':
+                if (data.length === 0){
+                    layer.msg('璇烽�夋嫨鏁版嵁');
+                } else {
+                    layer.open({
+                        type: 1,
+                        title: '缁勭洏',
+                        maxmin: true,
+                        shadeClose: true,
+                        content: $('#combDiv'),
+                        success: function (layero, index) {
+
+                        }
+                    })
+                }
+                break;
+        }
+    });
+
+    // 鐩戝惉琛屽伐鍏蜂簨浠�
+    table.on('tool(chooseData)', function(obj){
+        var data = obj.data;
+        switch (obj.event) {
+            // 璇︽儏
+            case 'remove':
+                for (var i = matCodeData.length - 1; i >= 0; i--) {
+                    if (matCodeData[i].matNo === data.matNo) {
+                        matCodeData.splice(i, 1);
+                    }
+                }
+                tableIns.reload({data: matCodeData,done:function (res) {
+                        // 瑕嗙洊render鏂规硶鐨刣one
+                    }});
+                break;
+        }
+    });
+
+    function setMatCodeData(data) {
+        matCodeData = data;
+        for (var i=0;i<matCodeData.length;i++){
+            matCodeData[i]["count"] = initCountVal;
+        }
+    }
+
+    function updateMatCodeData(matNo, count) {
+        for (var i=0;i<matCodeData.length;i++){
+            if (matCodeData[i]["matNo"] === matNo){
+                matCodeData[i]["count"] = count;
+            }
+        }
+    }
+});
 
 // 鎻愬彇鐗╂枡
 var matCodeLayerIdx;
 function getMat() {
-    tableIns.reload({data: []});
+    // tableIns.reload({data: []});
     matCodeLayerIdx = layer.open({
         type: 2,
-        title: '搴撲綅鐗╂枡',
+        title: '鎻愬彇鐗╂枡',
         maxmin: true,
         area: [top.detailWidth, top.detailHeight],
         shadeClose: true,
@@ -41,4 +115,10 @@
         success: function(layero, index){
         }
     });
+}
+
+// 鍚姩鍏ュ簱
+function putMat() {
+
+
 }
\ No newline at end of file

--
Gitblit v1.9.1