From 1bd6821c8ccc6861c74505bab0e8c52fe38f69f7 Mon Sep 17 00:00:00 2001 From: YYC <1833023622@qq.com> Date: 星期四, 15 六月 2023 19:36:57 +0800 Subject: [PATCH] 出入库调整 --- igds-app/js/admin/inout-out-handle-list.js | 62 +++--------------------------- 1 files changed, 7 insertions(+), 55 deletions(-) diff --git a/igds-app/js/admin/inout-out-handle-list.js b/igds-app/js/admin/inout-out-handle-list.js index 7d0eb95..387cc5a 100644 --- a/igds-app/js/admin/inout-out-handle-list.js +++ b/igds-app/js/admin/inout-out-handle-list.js @@ -33,7 +33,9 @@ data.data.deptId = selectDeptId; getInHandleList(); } - +window.addEventListener('refresh1', function(e){//鎵ц鍒锋柊 + getInHandleList(); +}); //鏌ヨ鍑哄簱璁板綍 function getInHandleList() { outHandleData = null; @@ -49,7 +51,7 @@ success: function(result) { if (result.code == "0000") { outHandleData = result.data; - console.log("if", JSON.stringify(result)) + // console.log("if", JSON.stringify(result)) renderData(); } else { renderData(); @@ -61,67 +63,17 @@ mui.alert("绯荤粺绻佸繖,璇烽噸璇曪紒", "鎻愮ず", ["纭畾"], function() {}, "div") } }) - // outHandleData = [{ - // "id": "44", - // "plateNum": "97", - // "deHandle": "ut", - // "depotId": "16", - // "depotName": "闈掑紶鍒楀仛鎬�", - // "foodVariety": "magna pariatur laboris sunt dolor", - // "foodVarietyName": "鎻愭竻闄�", - // "foodLevel": "fugiat", - // "foodLevelName": "搴斿彂鐑洓姘戞槸濮�", - // "storeKeeperName": "" - // }, - // { - // "id": "62", - // "plateNum": "71", - // "deHandle": "dolore ut non", - // "depotId": "79", - // "depotName": "澧炶薄瀹氱珛鏍�", - // "foodVariety": "Lorem est", - // "foodVarietyName": "甯傛潯缇ゆ眰琚洟涓�", - // "foodLevel": "ex labore", - // "foodLevelName": "鎸佸湪鍐欑О鎯呭苟", - // "storeKeeperName": "2" - // }, - // { - // "id": "96", - // "plateNum": "61", - // "deHandle": "nulla magna ut proident cillum", - // "depotId": "42", - // "depotName": "鏉″叏浠�", - // "foodVariety": "aliquip", - // "foodVarietyName": "杩炲紑闃跺姩闄呭共", - // "foodLevel": "in id sunt", - // "foodLevelName": "娌$疆瀹氫娇鏂�", - // "storeKeeperName": "3" - // }, - // { - // "id": "61", - // "plateNum": "17", - // "deHandle": "commodo", - // "depotId": "80", - // "depotName": "灞曡蹇伀鍏ㄩ", - // "foodVariety": "voluptate eu Lorem", - // "foodVarietyName": "浠栬竟娲炬柉閲嶇", - // "foodLevel": "dolor", - // "foodLevelName": "瑁呯涓�", - // "storeKeeperName": "4" - // } - // ] - renderData(); } - //娓叉煋椤甸潰 function renderData() { var html = ''; if (outHandleData && outHandleData.length > 0) { $.each(outHandleData, function(index, item) { + // console.log(JSON.stringify(item.depotName)) html += '<li><div class="con"><div class="top">'; html += '<div class="info">杞︾墝鍙�: <b>' + (item.plateNum == null ? "" : item.plateNum) + '</b></div>'; - html += '<a href="" id = "' + item.id + '" plateNum = "' + item.plateNum + '" depotName = "' + item.depotName + '" storeKeeperName = "' + - (item.storeKeeperName == "" || item.storeKeeperName == "" ? '--' : item.storeKeeperName) + '" class="link">鍊间粨<span class="mui-icon mui-icon-arrowright"></span></a>'; + html += '<a href="" id = "' + item.id + '" plateNum = "' + item.plateNum + '" depotName = "' + (item.depotName == null ? "" : item.depotName) + '" storeKeeperName = "' + + (item.storeKeeperName == null || item.storeKeeperName == "" ? '--' : item.storeKeeperName) + '" class="link">鍊间粨<span class="mui-icon mui-icon-arrowright"></span></a>'; html += '</div><div class="box">'; html += '<div class="item"><div class="conbox" style="background-image: url(images/icons/g-i19.png);">'; html += '<div class="h3">' + (item.depotName == null ? "" : item.depotName) + '</div>'; -- Gitblit v1.9.3