diff --git a/src/assets/css/layout2.styl b/src/assets/css/layout2.styl new file mode 100644 index 0000000..7f13b54 --- /dev/null +++ b/src/assets/css/layout2.styl @@ -0,0 +1,133 @@ +@import 'mixin2.styl' + +// 样式测试 +.style_block + display none + position absolute + _wh(calc(100% / 3), calc(100% / 3)) + background red +// 页面跳转 +.tooltip_wrap + position fixed + bottom 10% + z-index 10 + _wh(auto, 40px) + padding 5px 5px + background-color rgba(228,233,237,1) + _fj(row) + &:hover + opacity 1 !important +.left_tooltip_wrap + right 0 + border-top-left-radius 12px + border-bottom-left-radius 12px +.right_tooltip_wrap + left 0 + border-top-right-radius 12px + border-bottom-right-radius 12px +.tooltip_arrow + _wh(40px, 100%) + _font(14px, 30px, #999,,) +.tooltip_pages + height 100% + _fj(row) + transition width .3s ease + overflow hidden +.tooltip_page + height 100% + margin 0 5px + _font(14px, 30px, #999,,) + border 1px solid #999 + border-radius: 30px; + box-sizing: border-box; + padding: 0 10px; + &:hover + background-color #03fcfd + border-color #03fcfd + color #fff +.current_page + background-color #02d0d0 + border-color #02d0d0 + color #fff + +// 弹窗 +.popup_block_wraper + position fixed + top 0 + left 0 + z-index 100 + width 550px + padding 20px 14px 30px 14px + _bis('../images/screen3/popup_bg.png') +.foldline + position absolute + right -109px + z-index 10 + _wh(127px,105px) + _bis('../images/screen3/dot_line.png') +.foldline_right + right -109px +.foldline_left + left -109px + transform rotateY(180deg) +.popup_bg + _wh(100%, 100%) + background top center / 100% 18px url(../images/screen3/popup_line.png) no-repeat + overflow hidden +.popup_block + _wh(100%,100%) + padding 15px 0 0 0 +.pop_header + _wh(100%, 28px) + padding 0 5px + _fj(row) +.pop_name + width 50% + _font(14px,28px,#32C5FF,,left) + text-shadow 2px 2px 4px #A6E6FF + margin-bottom 8px +.pop_status + _wh(50%, 28px) + _fj(row,flex-end) +.pop_status_dot + _wh(15px, 15px) + border-radius 50% + margin-right 10px +.pop_status_text + _font(16px, 28px, #fff,,) +.pop_content + _wh(100%, calc(100% - 28px)) + padding 0 5px + overflow-y auto + _fj(row,flex-start) + flex-wrap wrap +.pop_item + _wh(calc(50% - 2.5px), 30px) + _fj(row,flex-start) + background-color rgba(50,197,255,50%) + border-left 3px solid #fdfd0f + margin-bottom 5px + padding 0 5px + &:nth-child(2n+2) + width calc(50% - 2.5px) + margin-left 5px +.pop_label + width 100px + _font(12px, 24px, #fff,,left) +.pop_val + width calc(100% - 100px) + _font(13px, 24px, #0ff,,left) + white-space nowrap +.pop_val_s + width calc(100% - 118px) +.pop_unit + width 18px + _font(13px, 24px, #fff,,right) + overflow hidden +.icon-guanbi + position absolute + top 8px + right 9px + _wh(30px, 22px) + _font(15px, 22px, #fff,,center) + background-color #0a3679 \ No newline at end of file diff --git a/src/assets/css/mixin2.styl b/src/assets/css/mixin2.styl new file mode 100644 index 0000000..6b5e583 --- /dev/null +++ b/src/assets/css/mixin2.styl @@ -0,0 +1,48 @@ +$green = #30EBC9 +$yellow = #E2BB0E +$gray = #516282 +$gray1 = #8B90A6 +$orange = #F96700 +$green2 = #65d837 + +.green + background-color #11ff0d +.yellow + background-color #fdfd0f +.gray + background-color #bfbfbf +.gray1 + background-color #d8d1d1 +.red + background-color #ff1016 + +//宽高 +_wh(w, h) + width: w + height: h + +//字体大小、行高、颜色 +_font(size,height,color=#ffffff,weight=normal,align=center) + font-size: size + line-height: height + color: color + font-weight: weight + text-align: align + +// 背景图片地址和大小 +_bis(url,w=100%,h=100%,x=center,y=center,r=no-repeat) + background-position: x y + background-size: w h + background-image: url(url) + background-repeat: r + +// 背景图片改变颜色 +_shadow(w,c) + filter drop-shadow(w 0 0 c) + +//flex 布局和 子元素 对其方式 +_fj(c=column, x=space-between,y=center) + display: flex + flex-direction: c + justify-content: x + align-items: y diff --git a/src/assets/images/screen3/bg_content_r.jpg b/src/assets/images/screen3/bg_content_r.jpg new file mode 100644 index 0000000..34614ff Binary files /dev/null and b/src/assets/images/screen3/bg_content_r.jpg differ diff --git a/src/assets/images/screen3/bg_header.jpg b/src/assets/images/screen3/bg_header.jpg new file mode 100644 index 0000000..ecf469d Binary files /dev/null and b/src/assets/images/screen3/bg_header.jpg differ diff --git a/src/assets/images/screen3/bg_title_s.png b/src/assets/images/screen3/bg_title_s.png new file mode 100644 index 0000000..46320e1 Binary files /dev/null and b/src/assets/images/screen3/bg_title_s.png differ diff --git a/src/assets/images/screen3/bg_title_tip.png b/src/assets/images/screen3/bg_title_tip.png new file mode 100644 index 0000000..23ed926 Binary files /dev/null and b/src/assets/images/screen3/bg_title_tip.png differ diff --git a/src/assets/images/screen3/dot_line.png b/src/assets/images/screen3/dot_line.png new file mode 100644 index 0000000..3db129d Binary files /dev/null and b/src/assets/images/screen3/dot_line.png differ diff --git a/src/assets/images/screen3/hj.png b/src/assets/images/screen3/hj.png new file mode 100644 index 0000000..f9891d0 Binary files /dev/null and b/src/assets/images/screen3/hj.png differ diff --git a/src/assets/images/screen3/lz_hj_gray.png b/src/assets/images/screen3/lz_hj_gray.png new file mode 100644 index 0000000..c45751d Binary files /dev/null and b/src/assets/images/screen3/lz_hj_gray.png differ diff --git a/src/assets/images/screen3/lz_hj_green.png b/src/assets/images/screen3/lz_hj_green.png new file mode 100644 index 0000000..ab73505 Binary files /dev/null and b/src/assets/images/screen3/lz_hj_green.png differ diff --git a/src/assets/images/screen3/lz_hj_red.png b/src/assets/images/screen3/lz_hj_red.png new file mode 100644 index 0000000..9b4fb46 Binary files /dev/null and b/src/assets/images/screen3/lz_hj_red.png differ diff --git a/src/assets/images/screen3/lz_hj_yellow.png b/src/assets/images/screen3/lz_hj_yellow.png new file mode 100644 index 0000000..b451aed Binary files /dev/null and b/src/assets/images/screen3/lz_hj_yellow.png differ diff --git a/src/assets/images/screen3/popup_bg.png b/src/assets/images/screen3/popup_bg.png new file mode 100644 index 0000000..49efdb3 Binary files /dev/null and b/src/assets/images/screen3/popup_bg.png differ diff --git a/src/assets/images/screen3/popup_dot.png b/src/assets/images/screen3/popup_dot.png new file mode 100644 index 0000000..9b6f023 Binary files /dev/null and b/src/assets/images/screen3/popup_dot.png differ diff --git a/src/assets/images/screen3/popup_line.png b/src/assets/images/screen3/popup_line.png new file mode 100644 index 0000000..0e01a5f Binary files /dev/null and b/src/assets/images/screen3/popup_line.png differ diff --git a/src/assets/images/screen3/top_right.png b/src/assets/images/screen3/top_right.png new file mode 100644 index 0000000..9825c7e Binary files /dev/null and b/src/assets/images/screen3/top_right.png differ diff --git a/src/assets/js/getData0.js b/src/assets/js/getData0.js new file mode 100644 index 0000000..231c0f7 --- /dev/null +++ b/src/assets/js/getData0.js @@ -0,0 +1,1587 @@ +// import {post} from '@js/http.js' + +// 仓储监控-sh +export const trappedMaterialCondition = () => { + let res = { + 'code': 200, + 'desc': '操作成功', + 'result': { + 'TrappedIOStockList': [ + { + 'bom': '1', + 'device_name': '-', + 'create_time': '2023-06-29 15:38:32', + 'mix_num': '-', + 'weight': '-', + 'io_type': '入库', + 'vehicle_code': '0008', + 'point_code': 'KLHW01', + 'material_code': '1001C1' + }, + { + 'bom': '1', + 'device_name': '-', + 'create_time': '2023-06-29 15:38:32', + 'mix_num': '-', + 'weight': '-', + 'io_type': '入库', + 'vehicle_code': '0022', + 'point_code': 'KLHW01', + 'material_code': '1001C1' + }, + { + 'bom': '1', + 'device_name': '-', + 'create_time': '2023-06-29 15:38:32', + 'mix_num': '-', + 'weight': '-', + 'io_type': '入库', + 'vehicle_code': '0027', + 'point_code': 'KLHW42', + 'material_code': '1001C1' + }, + { + 'bom': '2', + 'device_name': '-', + 'create_time': '2023-06-29 15:38:32', + 'mix_num': '-', + 'weight': '-', + 'io_type': '入库', + 'vehicle_code': '0047', + 'point_code': 'KLHW46', + 'material_code': '1001C2' + }, + { + 'bom': '2', + 'device_name': '-', + 'create_time': '2023-06-29 15:38:32', + 'mix_num': '-', + 'weight': '-', + 'io_type': '出库', + 'vehicle_code': '0025', + 'point_code': 'KLHW14', + 'material_code': '1001C2' + }, + { + 'bom': '2', + 'device_name': '-', + 'create_time': '2023-06-29 15:38:32', + 'mix_num': '-', + 'weight': '-', + 'io_type': '出库', + 'vehicle_code': '0017', + 'point_code': 'KLHW02', + 'material_code': '1001C2' + }, + { + 'bom': '1', + 'device_name': '-', + 'create_time': '2023-06-29 15:38:32', + 'mix_num': '-', + 'weight': '-', + 'io_type': '出库', + 'vehicle_code': '0012', + 'point_code': 'KLHW03', + 'material_code': '1001C1' + }, + { + 'bom': '3', + 'device_name': '-', + 'create_time': '2023-06-29 15:38:32', + 'mix_num': '-', + 'weight': '-', + 'io_type': '出库', + 'vehicle_code': '0022', + 'point_code': 'KLHW01', + 'material_code': '1001C3' + }, + { + 'bom': '4', + 'device_name': '-', + 'create_time': '2023-06-29 15:38:32', + 'mix_num': '-', + 'weight': '-', + 'io_type': '出库', + 'vehicle_code': '0002', + 'point_code': 'KLHW01', + 'material_code': '1001C4' + }, + { + 'bom': '3', + 'device_name': '-', + 'create_time': '2023-06-29 15:38:32', + 'mix_num': '-', + 'weight': '-', + 'io_type': '出库', + 'vehicle_code': '0013', + 'point_code': 'KLHW03', + 'material_code': '1001C3' + }, + { + 'bom': '4', + 'device_name': '混料机2', + 'create_time': '2023-06-29 15:38:32', + 'mix_num': '20230629000', + 'weight': '1500', + 'io_type': '出库', + 'vehicle_code': '0029', + 'point_code': 'KLHW03', + 'material_code': '1001C4' + }, + { + 'bom': '4', + 'device_name': '-', + 'create_time': '2023-06-29 15:38:32', + 'mix_num': '-', + 'weight': '-', + 'io_type': '出库', + 'vehicle_code': '0022', + 'point_code': 'KLHW09', + 'material_code': '1001C4' + }, + { + 'bom': '2', + 'device_name': '-', + 'create_time': '2023-06-29 15:38:32', + 'mix_num': '-', + 'weight': '-', + 'io_type': '出库', + 'vehicle_code': '0030', + 'point_code': 'KLHW03', + 'material_code': '1001C2' + }, + { + 'bom': '2', + 'device_name': '-', + 'create_time': '2023-06-29 15:38:32', + 'mix_num': '-', + 'weight': '-', + 'io_type': '出库', + 'vehicle_code': '0026', + 'point_code': 'KLHW08', + 'material_code': '1001C2' + }, + { + 'bom': '1', + 'device_name': '-', + 'create_time': '2023-06-29 15:38:32', + 'mix_num': '-', + 'weight': '-', + 'io_type': '出库', + 'vehicle_code': '0008', + 'point_code': 'KLHW02', + 'material_code': '1001C1' + }, + { + 'bom': '1', + 'device_name': '-', + 'create_time': '2023-06-29 15:38:32', + 'mix_num': '-', + 'weight': '-', + 'io_type': '出库', + 'vehicle_code': '0002', + 'point_code': 'KLHW05', + 'material_code': '1001C1' + }, + { + 'bom': '3015C2', + 'device_name': '混料机2', + 'create_time': '2023-06-29 15:38:32', + 'mix_num': '20230629000', + 'weight': '1500', + 'io_type': '出库', + 'vehicle_code': '0029', + 'point_code': 'KLHW04', + 'material_code': 'GBMAC3015C2' + } + ], + 'TrappedStockList': [ + { + 'bom': '-', + 'stand_status_color': '', + 'device_name': '-', + 'mix_num': '-', + 'weight': '0', + 'standing_time': '-', + 'point_name': '困料货位1', + 'vehicle_code': '0047', + 'point_code': 'KLHW01', + 'point_status': '1', + 'material_code': '-', + 'stand_status_name': '-' + }, + { + 'bom': '3009L3', + 'stand_status_color': '2', + 'device_name': '混料机2', + 'mix_num': '20230629000', + 'weight': '1500', + 'standing_time': '24', + 'point_name': '困料货位2', + 'vehicle_code': '0029', + 'point_code': 'KLHW02', + 'point_status': '1', + 'material_code': 'GBMCZ3009L3', + 'stand_status_name': '静置完成' + }, + { + 'bom': '3009L3', + 'stand_status_color': '2', + 'device_name': '混料机2', + 'mix_num': '20230629000', + 'weight': '1500', + 'standing_time': '23', + 'point_name': '困料货位3', + 'vehicle_code': '0010', + 'point_code': 'KLHW03', + 'point_status': '1', + 'material_code': 'GBMCZ3009L3', + 'stand_status_name': '静置完成' + }, + { + 'bom': '-', + 'stand_status_color': '', + 'device_name': '-', + 'mix_num': '-', + 'weight': '0', + 'standing_time': '-', + 'point_name': '困料货位4', + 'vehicle_code': '-', + 'point_code': 'KLHW04', + 'point_status': '0', + 'material_code': '-', + 'stand_status_name': '-' + }, + { + 'bom': '-', + 'stand_status_color': '', + 'device_name': '-', + 'mix_num': '-', + 'weight': '0', + 'standing_time': '-', + 'point_name': '困料货位5', + 'vehicle_code': '-', + 'point_code': 'KLHW05', + 'point_status': '0', + 'material_code': '-', + 'stand_status_name': '-' + }, + { + 'bom': '-', + 'stand_status_color': '', + 'device_name': '-', + 'mix_num': '-', + 'weight': '0', + 'standing_time': '-', + 'point_name': '困料货位6', + 'vehicle_code': '0008', + 'point_code': 'KLHW06', + 'point_status': '1', + 'material_code': '-', + 'stand_status_name': '-' + }, + { + 'bom': '-', + 'stand_status_color': '', + 'device_name': '-', + 'mix_num': '-', + 'weight': '0', + 'standing_time': '-', + 'point_name': '困料货位7', + 'vehicle_code': '-', + 'point_code': 'KLHW07', + 'point_status': '0', + 'material_code': '-', + 'stand_status_name': '-' + }, + { + 'bom': '-', + 'stand_status_color': '', + 'device_name': '-', + 'mix_num': '-', + 'weight': '0', + 'standing_time': '-', + 'point_name': '困料货位8', + 'vehicle_code': '-', + 'point_code': 'KLHW08', + 'point_status': '0', + 'material_code': '-', + 'stand_status_name': '-' + }, + { + 'bom': '-', + 'stand_status_color': '', + 'device_name': '-', + 'mix_num': '-', + 'weight': '0', + 'standing_time': '-', + 'point_name': '困料货位9', + 'vehicle_code': '-', + 'point_code': 'KLHW09', + 'point_status': '0', + 'material_code': '-', + 'stand_status_name': '-' + }, + { + 'bom': '-', + 'stand_status_color': '', + 'device_name': '-', + 'mix_num': '-', + 'weight': '0', + 'standing_time': '-', + 'point_name': '困料货位10', + 'vehicle_code': '0025', + 'point_code': 'KLHW10', + 'point_status': '1', + 'material_code': '-', + 'stand_status_name': '-' + }, + { + 'bom': '-', + 'stand_status_color': '', + 'device_name': '-', + 'mix_num': '-', + 'weight': '0', + 'standing_time': '-', + 'point_name': '困料货位11', + 'vehicle_code': '0047', + 'point_code': 'KLHW11', + 'point_status': '1', + 'material_code': '-', + 'stand_status_name': '-' + }, + { + 'bom': '-', + 'stand_status_color': '', + 'device_name': '-', + 'mix_num': '-', + 'weight': '0', + 'standing_time': '-', + 'point_name': '困料货位12', + 'vehicle_code': '-', + 'point_code': 'KLHW12', + 'point_status': '0', + 'material_code': '-', + 'stand_status_name': '-' + }, + { + 'bom': '-', + 'stand_status_color': '', + 'device_name': '-', + 'mix_num': '-', + 'weight': '0', + 'standing_time': '-', + 'point_name': '困料货位13', + 'vehicle_code': '-', + 'point_code': 'KLHW13', + 'point_status': '0', + 'material_code': '-', + 'stand_status_name': '-' + }, + { + 'bom': '-', + 'stand_status_color': '', + 'device_name': '-', + 'mix_num': '-', + 'weight': '0', + 'standing_time': '-', + 'point_name': '困料货位14', + 'vehicle_code': '-', + 'point_code': 'KLHW14', + 'point_status': '0', + 'material_code': '-', + 'stand_status_name': '-' + }, + { + 'bom': '-', + 'stand_status_color': '', + 'device_name': '-', + 'mix_num': '-', + 'weight': '0', + 'standing_time': '-', + 'point_name': '困料货位15', + 'vehicle_code': '-', + 'point_code': 'KLHW15', + 'point_status': '0', + 'material_code': '-', + 'stand_status_name': '-' + }, + { + 'bom': '-', + 'stand_status_color': '', + 'device_name': '-', + 'mix_num': '-', + 'weight': '0', + 'standing_time': '-', + 'point_name': '困料货位16', + 'vehicle_code': '-', + 'point_code': 'KLHW16', + 'point_status': '0', + 'material_code': '-', + 'stand_status_name': '-' + }, + { + 'bom': '-', + 'stand_status_color': '', + 'device_name': '-', + 'mix_num': '-', + 'weight': '0', + 'standing_time': '-', + 'point_name': '困料货位17', + 'vehicle_code': '-', + 'point_code': 'KLHW17', + 'point_status': '0', + 'material_code': '-', + 'stand_status_name': '-' + }, + { + 'bom': '-', + 'stand_status_color': '', + 'device_name': '-', + 'mix_num': '-', + 'weight': '0', + 'standing_time': '-', + 'point_name': '困料货位18', + 'vehicle_code': '-', + 'point_code': 'KLHW18', + 'point_status': '0', + 'material_code': '-', + 'stand_status_name': '-' + }, + { + 'bom': '-', + 'stand_status_color': '', + 'device_name': '-', + 'mix_num': '-', + 'weight': '0', + 'standing_time': '-', + 'point_name': '困料货位19', + 'vehicle_code': '-', + 'point_code': 'KLHW19', + 'point_status': '0', + 'material_code': '-', + 'stand_status_name': '-' + }, + { + 'bom': '-', + 'stand_status_color': '', + 'device_name': '-', + 'mix_num': '-', + 'weight': '0', + 'standing_time': '-', + 'point_name': '困料货位20', + 'vehicle_code': '-', + 'point_code': 'KLHW20', + 'point_status': '0', + 'material_code': '-', + 'stand_status_name': '-' + }, + { + 'bom': '-', + 'stand_status_color': '', + 'device_name': '-', + 'mix_num': '-', + 'weight': '0', + 'standing_time': '-', + 'point_name': '困料货位21', + 'vehicle_code': '-', + 'point_code': 'KLHW21', + 'point_status': '0', + 'material_code': '-', + 'stand_status_name': '-' + }, + { + 'bom': '-', + 'stand_status_color': '', + 'device_name': '-', + 'mix_num': '-', + 'weight': '0', + 'standing_time': '-', + 'point_name': '困料货位22', + 'vehicle_code': '-', + 'point_code': 'KLHW22', + 'point_status': '0', + 'material_code': '-', + 'stand_status_name': '-' + }, + { + 'bom': '-', + 'stand_status_color': '', + 'device_name': '-', + 'mix_num': '-', + 'weight': '0', + 'standing_time': '-', + 'point_name': '困料货位23', + 'vehicle_code': '-', + 'point_code': 'KLHW23', + 'point_status': '0', + 'material_code': '-', + 'stand_status_name': '-' + }, + { + 'bom': '-', + 'stand_status_color': '', + 'device_name': '-', + 'mix_num': '-', + 'weight': '0', + 'standing_time': '-', + 'point_name': '困料货位24', + 'vehicle_code': '-', + 'point_code': 'KLHW24', + 'point_status': '0', + 'material_code': '-', + 'stand_status_name': '-' + }, + { + 'bom': '-', + 'stand_status_color': '', + 'device_name': '-', + 'mix_num': '-', + 'weight': '0', + 'standing_time': '-', + 'point_name': '困料货位25', + 'vehicle_code': '-', + 'point_code': 'KLHW25', + 'point_status': '0', + 'material_code': '-', + 'stand_status_name': '-' + }, + { + 'bom': '-', + 'stand_status_color': '', + 'device_name': '-', + 'mix_num': '-', + 'weight': '0', + 'standing_time': '-', + 'point_name': '困料货位26', + 'vehicle_code': '-', + 'point_code': 'KLHW26', + 'point_status': '0', + 'material_code': '-', + 'stand_status_name': '-' + }, + { + 'bom': '-', + 'stand_status_color': '', + 'device_name': '-', + 'mix_num': '-', + 'weight': '0', + 'standing_time': '-', + 'point_name': '困料货位27', + 'vehicle_code': '-', + 'point_code': 'KLHW27', + 'point_status': '0', + 'material_code': '-', + 'stand_status_name': '-' + }, + { + 'bom': '-', + 'stand_status_color': '', + 'device_name': '-', + 'mix_num': '-', + 'weight': '0', + 'standing_time': '-', + 'point_name': '困料货位28', + 'vehicle_code': '-', + 'point_code': 'KLHW28', + 'point_status': '0', + 'material_code': '-', + 'stand_status_name': '-' + }, + { + 'bom': '-', + 'stand_status_color': '', + 'device_name': '-', + 'mix_num': '-', + 'weight': '0', + 'standing_time': '-', + 'point_name': '困料货位29', + 'vehicle_code': '-', + 'point_code': 'KLHW29', + 'point_status': '0', + 'material_code': '-', + 'stand_status_name': '-' + }, + { + 'bom': '-', + 'stand_status_color': '', + 'device_name': '-', + 'mix_num': '-', + 'weight': '0', + 'standing_time': '-', + 'point_name': '困料货位30', + 'vehicle_code': '-', + 'point_code': 'KLHW30', + 'point_status': '0', + 'material_code': '-', + 'stand_status_name': '-' + }, + { + 'bom': '-', + 'stand_status_color': '', + 'device_name': '-', + 'mix_num': '-', + 'weight': '0', + 'standing_time': '-', + 'point_name': '困料货位31', + 'vehicle_code': '-', + 'point_code': 'KLHW31', + 'point_status': '0', + 'material_code': '-', + 'stand_status_name': '-' + }, + { + 'bom': '-', + 'stand_status_color': '', + 'device_name': '-', + 'mix_num': '-', + 'weight': '0', + 'standing_time': '-', + 'point_name': '困料货位32', + 'vehicle_code': '-', + 'point_code': 'KLHW32', + 'point_status': '0', + 'material_code': '-', + 'stand_status_name': '-' + }, + { + 'bom': '-', + 'stand_status_color': '', + 'device_name': '-', + 'mix_num': '-', + 'weight': '0', + 'standing_time': '-', + 'point_name': '困料货位33', + 'vehicle_code': '-', + 'point_code': 'KLHW33', + 'point_status': '0', + 'material_code': '-', + 'stand_status_name': '-' + }, + { + 'bom': '-', + 'stand_status_color': '', + 'device_name': '-', + 'mix_num': '-', + 'weight': '0', + 'standing_time': '-', + 'point_name': '困料货位34', + 'vehicle_code': '-', + 'point_code': 'KLHW34', + 'point_status': '0', + 'material_code': '-', + 'stand_status_name': '-' + }, + { + 'bom': '-', + 'stand_status_color': '', + 'device_name': '-', + 'mix_num': '-', + 'weight': '0', + 'standing_time': '-', + 'point_name': '困料货位35', + 'vehicle_code': '-', + 'point_code': 'KLHW35', + 'point_status': '0', + 'material_code': '-', + 'stand_status_name': '-' + }, + { + 'bom': '-', + 'stand_status_color': '', + 'device_name': '-', + 'mix_num': '-', + 'weight': '0', + 'standing_time': '-', + 'point_name': '困料货位36', + 'vehicle_code': '-', + 'point_code': 'KLHW36', + 'point_status': '0', + 'material_code': '-', + 'stand_status_name': '-' + }, + { + 'bom': '-', + 'stand_status_color': '', + 'device_name': '-', + 'mix_num': '-', + 'weight': '0', + 'standing_time': '-', + 'point_name': '困料货位37', + 'vehicle_code': '-', + 'point_code': 'KLHW37', + 'point_status': '0', + 'material_code': '-', + 'stand_status_name': '-' + }, + { + 'bom': '-', + 'stand_status_color': '', + 'device_name': '-', + 'mix_num': '-', + 'weight': '0', + 'standing_time': '-', + 'point_name': '困料货位38', + 'vehicle_code': '-', + 'point_code': 'KLHW38', + 'point_status': '0', + 'material_code': '-', + 'stand_status_name': '-' + }, + { + 'bom': '-', + 'stand_status_color': '', + 'device_name': '-', + 'mix_num': '-', + 'weight': '0', + 'standing_time': '-', + 'point_name': '困料货位39', + 'vehicle_code': '-', + 'point_code': 'KLHW39', + 'point_status': '0', + 'material_code': '-', + 'stand_status_name': '-' + }, + { + 'bom': '-', + 'stand_status_color': '', + 'device_name': '-', + 'mix_num': '-', + 'weight': '0', + 'standing_time': '-', + 'point_name': '困料货位40', + 'vehicle_code': '-', + 'point_code': 'KLHW40', + 'point_status': '0', + 'material_code': '-', + 'stand_status_name': '-' + }, + { + 'bom': '-', + 'stand_status_color': '', + 'device_name': '-', + 'mix_num': '-', + 'weight': '0', + 'standing_time': '-', + 'point_name': '压机1困料货位1', + 'vehicle_code': '-', + 'point_code': 'KLHW42', + 'point_status': '0', + 'material_code': '-', + 'stand_status_name': '-' + }, + { + 'bom': '-', + 'stand_status_color': '', + 'device_name': '-', + 'mix_num': '-', + 'weight': '0', + 'standing_time': '-', + 'point_name': '压机1困料货位2', + 'vehicle_code': '-', + 'point_code': 'KLHW43', + 'point_status': '0', + 'material_code': '-', + 'stand_status_name': '-' + }, + { + 'bom': '-', + 'stand_status_color': '', + 'device_name': '-', + 'mix_num': '-', + 'weight': '0', + 'standing_time': '-', + 'point_name': '压机1困料货位3', + 'vehicle_code': '-', + 'point_code': 'KLHW44', + 'point_status': '0', + 'material_code': '-', + 'stand_status_name': '-' + }, + { + 'bom': '3004M1', + 'stand_status_color': '2', + 'device_name': '混料机4', + 'mix_num': '20230629000', + 'weight': '1500', + 'standing_time': '23', + 'point_name': '压机2困料货位1', + 'vehicle_code': '0031', + 'point_code': 'KLHW46', + 'point_status': '1', + 'material_code': 'GBMCZ3004M1', + 'stand_status_name': '静置完成' + }, + { + 'bom': '-', + 'stand_status_color': '', + 'device_name': '-', + 'mix_num': '-', + 'weight': '0', + 'standing_time': '-', + 'point_name': '压机2困料货位2', + 'vehicle_code': '-', + 'point_code': 'KLHW47', + 'point_status': '0', + 'material_code': '-', + 'stand_status_name': '-' + }, + { + 'bom': '-', + 'stand_status_color': '', + 'device_name': '-', + 'mix_num': '-', + 'weight': '0', + 'standing_time': '-', + 'point_name': '压机2困料货位3', + 'vehicle_code': '-', + 'point_code': 'KLHW48', + 'point_status': '0', + 'material_code': '-', + 'stand_status_name': '-' + } + ], + 'TrappedShelf6List': [ + { + 'bom': '-', + 'stand_status': '', + 'standing_time': '-', + 'weight': '-', + 'point_name': '压机1困料货位1', + 'point_status_name': '空位', + 'point_code': 'KLHW42', + 'point_status': '0', + 'stand_status_color': '0', + 'instorage_time': '-', + 'mix_num': '-', + 'vehicle_code': '-', + 'material_code': '-', + 'stand_status_name': '' + }, + { + 'bom': '-', + 'stand_status': '', + 'standing_time': '-', + 'weight': '-', + 'point_name': '压机1困料货位2', + 'point_status_name': '空位', + 'point_code': 'KLHW43', + 'point_status': '0', + 'stand_status_color': '0', + 'instorage_time': '-', + 'mix_num': '-', + 'vehicle_code': '-', + 'material_code': '-', + 'stand_status_name': '' + }, + { + 'bom': '-', + 'stand_status': '', + 'standing_time': '-', + 'weight': '-', + 'point_name': '压机1困料货位3', + 'point_status_name': '空位', + 'point_code': 'KLHW44', + 'point_status': '0', + 'stand_status_color': '0', + 'instorage_time': '-', + 'mix_num': '-', + 'vehicle_code': '-', + 'material_code': '-', + 'stand_status_name': '' + }, + { + 'bom': '3004M1', + 'stand_status': '3', + 'standing_time': '23', + 'weight': '1500', + 'point_name': '压机2困料货位1', + 'point_status_name': '满盅', + 'point_code': 'KLHW46', + 'point_status': '2', + 'stand_status_color': '2', + 'instorage_time': '2023-06-28 10:10:06', + 'mix_num': '20230629000', + 'vehicle_code': '0031', + 'material_code': 'GBMCZ3004M1', + 'stand_status_name': '静置完成' + }, + { + 'bom': '-', + 'stand_status': '', + 'standing_time': '-', + 'weight': '-', + 'point_name': '压机2困料货位2', + 'point_status_name': '空位', + 'point_code': 'KLHW47', + 'point_status': '0', + 'stand_status_color': '0', + 'instorage_time': '-', + 'mix_num': '-', + 'vehicle_code': '-', + 'material_code': '-', + 'stand_status_name': '' + }, + { + 'bom': '-', + 'stand_status': '', + 'standing_time': '-', + 'weight': '-', + 'point_name': '压机2困料货位3', + 'point_status_name': '空位', + 'point_code': 'KLHW48', + 'point_status': '0', + 'stand_status_color': '0', + 'instorage_time': '-', + 'mix_num': '-', + 'vehicle_code': '-', + 'material_code': '-', + 'stand_status_name': '' + } + ], + 'TrappedShelf40List': [ + { + 'bom': '-', + 'stand_status': '', + 'standing_time': '-', + 'weight': '-', + 'point_name': '困料货位1', + 'point_status_name': '空盅', + 'point_code': 'KLHW01', + 'point_status': '1', + 'stand_status_color': '0', + 'instorage_time': '-', + 'mix_num': '-', + 'vehicle_code': '0047', + 'material_code': '-', + 'stand_status_name': '' + }, + { + 'bom': '3009L3', + 'stand_status': '3', + 'standing_time': '23', + 'weight': '1500', + 'point_name': '困料货位3', + 'point_status_name': '满盅', + 'point_code': 'KLHW03', + 'point_status': '2', + 'stand_status_color': '2', + 'instorage_time': '2023-06-28 10:10:15', + 'mix_num': '20230629000', + 'vehicle_code': '0010', + 'material_code': 'GBMCZ3009L3', + 'stand_status_name': '静置完成' + }, + { + 'bom': '-', + 'stand_status': '', + 'standing_time': '-', + 'weight': '-', + 'point_name': '困料货位5', + 'point_status_name': '空位', + 'point_code': 'KLHW05', + 'point_status': '0', + 'stand_status_color': '0', + 'instorage_time': '-', + 'mix_num': '-', + 'vehicle_code': '-', + 'material_code': '-', + 'stand_status_name': '' + }, + { + 'bom': '-', + 'stand_status': '', + 'standing_time': '-', + 'weight': '-', + 'point_name': '困料货位7', + 'point_status_name': '空位', + 'point_code': 'KLHW07', + 'point_status': '0', + 'stand_status_color': '0', + 'instorage_time': '-', + 'mix_num': '-', + 'vehicle_code': '-', + 'material_code': '-', + 'stand_status_name': '' + }, + { + 'bom': '-', + 'stand_status': '', + 'standing_time': '-', + 'weight': '-', + 'point_name': '困料货位9', + 'point_status_name': '空位', + 'point_code': 'KLHW09', + 'point_status': '0', + 'stand_status_color': '0', + 'instorage_time': '-', + 'mix_num': '-', + 'vehicle_code': '-', + 'material_code': '-', + 'stand_status_name': '' + }, + { + 'bom': '-', + 'stand_status': '', + 'standing_time': '-', + 'weight': '-', + 'point_name': '困料货位11', + 'point_status_name': '空盅', + 'point_code': 'KLHW11', + 'point_status': '1', + 'stand_status_color': '0', + 'instorage_time': '-', + 'mix_num': '-', + 'vehicle_code': '0047', + 'material_code': '-', + 'stand_status_name': '' + }, + { + 'bom': '-', + 'stand_status': '', + 'standing_time': '-', + 'weight': '-', + 'point_name': '困料货位13', + 'point_status_name': '空位', + 'point_code': 'KLHW13', + 'point_status': '0', + 'stand_status_color': '0', + 'instorage_time': '-', + 'mix_num': '-', + 'vehicle_code': '-', + 'material_code': '-', + 'stand_status_name': '' + }, + { + 'bom': '-', + 'stand_status': '', + 'standing_time': '-', + 'weight': '-', + 'point_name': '困料货位15', + 'point_status_name': '空位', + 'point_code': 'KLHW15', + 'point_status': '0', + 'stand_status_color': '0', + 'instorage_time': '-', + 'mix_num': '-', + 'vehicle_code': '-', + 'material_code': '-', + 'stand_status_name': '' + }, + { + 'bom': '-', + 'stand_status': '', + 'standing_time': '-', + 'weight': '-', + 'point_name': '困料货位17', + 'point_status_name': '空位', + 'point_code': 'KLHW17', + 'point_status': '0', + 'stand_status_color': '0', + 'instorage_time': '-', + 'mix_num': '-', + 'vehicle_code': '-', + 'material_code': '-', + 'stand_status_name': '' + }, + { + 'bom': '-', + 'stand_status': '', + 'standing_time': '-', + 'weight': '-', + 'point_name': '困料货位19', + 'point_status_name': '空位', + 'point_code': 'KLHW19', + 'point_status': '0', + 'stand_status_color': '0', + 'instorage_time': '-', + 'mix_num': '-', + 'vehicle_code': '-', + 'material_code': '-', + 'stand_status_name': '' + }, + { + 'bom': '-', + 'stand_status': '', + 'standing_time': '-', + 'weight': '-', + 'point_name': '困料货位21', + 'point_status_name': '空位', + 'point_code': 'KLHW21', + 'point_status': '0', + 'stand_status_color': '0', + 'instorage_time': '-', + 'mix_num': '-', + 'vehicle_code': '-', + 'material_code': '-', + 'stand_status_name': '' + }, + { + 'bom': '-', + 'stand_status': '', + 'standing_time': '-', + 'weight': '-', + 'point_name': '困料货位23', + 'point_status_name': '空位', + 'point_code': 'KLHW23', + 'point_status': '0', + 'stand_status_color': '0', + 'instorage_time': '-', + 'mix_num': '-', + 'vehicle_code': '-', + 'material_code': '-', + 'stand_status_name': '' + }, + { + 'bom': '-', + 'stand_status': '', + 'standing_time': '-', + 'weight': '-', + 'point_name': '困料货位25', + 'point_status_name': '空位', + 'point_code': 'KLHW25', + 'point_status': '0', + 'stand_status_color': '0', + 'instorage_time': '-', + 'mix_num': '-', + 'vehicle_code': '-', + 'material_code': '-', + 'stand_status_name': '' + }, + { + 'bom': '-', + 'stand_status': '', + 'standing_time': '-', + 'weight': '-', + 'point_name': '困料货位27', + 'point_status_name': '空位', + 'point_code': 'KLHW27', + 'point_status': '0', + 'stand_status_color': '0', + 'instorage_time': '-', + 'mix_num': '-', + 'vehicle_code': '-', + 'material_code': '-', + 'stand_status_name': '' + }, + { + 'bom': '-', + 'stand_status': '', + 'standing_time': '-', + 'weight': '-', + 'point_name': '困料货位29', + 'point_status_name': '空位', + 'point_code': 'KLHW29', + 'point_status': '0', + 'stand_status_color': '0', + 'instorage_time': '-', + 'mix_num': '-', + 'vehicle_code': '-', + 'material_code': '-', + 'stand_status_name': '' + }, + { + 'bom': '-', + 'stand_status': '', + 'standing_time': '-', + 'weight': '-', + 'point_name': '困料货位31', + 'point_status_name': '空位', + 'point_code': 'KLHW31', + 'point_status': '0', + 'stand_status_color': '0', + 'instorage_time': '-', + 'mix_num': '-', + 'vehicle_code': '-', + 'material_code': '-', + 'stand_status_name': '' + }, + { + 'bom': '-', + 'stand_status': '', + 'standing_time': '-', + 'weight': '-', + 'point_name': '困料货位33', + 'point_status_name': '空位', + 'point_code': 'KLHW33', + 'point_status': '0', + 'stand_status_color': '0', + 'instorage_time': '-', + 'mix_num': '-', + 'vehicle_code': '-', + 'material_code': '-', + 'stand_status_name': '' + }, + { + 'bom': '-', + 'stand_status': '', + 'standing_time': '-', + 'weight': '-', + 'point_name': '困料货位35', + 'point_status_name': '空位', + 'point_code': 'KLHW35', + 'point_status': '0', + 'stand_status_color': '0', + 'instorage_time': '-', + 'mix_num': '-', + 'vehicle_code': '-', + 'material_code': '-', + 'stand_status_name': '' + }, + { + 'bom': '-', + 'stand_status': '', + 'standing_time': '-', + 'weight': '-', + 'point_name': '困料货位37', + 'point_status_name': '空位', + 'point_code': 'KLHW37', + 'point_status': '0', + 'stand_status_color': '0', + 'instorage_time': '-', + 'mix_num': '-', + 'vehicle_code': '-', + 'material_code': '-', + 'stand_status_name': '' + }, + { + 'bom': '-', + 'stand_status': '', + 'standing_time': '-', + 'weight': '-', + 'point_name': '困料货位39', + 'point_status_name': '空位', + 'point_code': 'KLHW39', + 'point_status': '0', + 'stand_status_color': '0', + 'instorage_time': '-', + 'mix_num': '-', + 'vehicle_code': '-', + 'material_code': '-', + 'stand_status_name': '' + }, + { + 'bom': '3009L3', + 'stand_status': '3', + 'standing_time': '24', + 'weight': '1500', + 'point_name': '困料货位2', + 'point_status_name': '满盅', + 'point_code': 'KLHW02', + 'point_status': '2', + 'stand_status_color': '2', + 'instorage_time': '2023-06-28 09:24:19', + 'mix_num': '20230629000', + 'vehicle_code': '0029', + 'material_code': 'GBMCZ3009L3', + 'stand_status_name': '静置完成' + }, + { + 'bom': '-', + 'stand_status': '', + 'standing_time': '-', + 'weight': '-', + 'point_name': '困料货位4', + 'point_status_name': '空位', + 'point_code': 'KLHW04', + 'point_status': '0', + 'stand_status_color': '0', + 'instorage_time': '-', + 'mix_num': '-', + 'vehicle_code': '-', + 'material_code': '-', + 'stand_status_name': '' + }, + { + 'bom': '-', + 'stand_status': '', + 'standing_time': '-', + 'weight': '-', + 'point_name': '困料货位6', + 'point_status_name': '空盅', + 'point_code': 'KLHW06', + 'point_status': '1', + 'stand_status_color': '0', + 'instorage_time': '-', + 'mix_num': '-', + 'vehicle_code': '0008', + 'material_code': '-', + 'stand_status_name': '' + }, + { + 'bom': '-', + 'stand_status': '', + 'standing_time': '-', + 'weight': '-', + 'point_name': '困料货位8', + 'point_status_name': '空位', + 'point_code': 'KLHW08', + 'point_status': '0', + 'stand_status_color': '0', + 'instorage_time': '-', + 'mix_num': '-', + 'vehicle_code': '-', + 'material_code': '-', + 'stand_status_name': '' + }, + { + 'bom': '-', + 'stand_status': '', + 'standing_time': '-', + 'weight': '-', + 'point_name': '困料货位10', + 'point_status_name': '空盅', + 'point_code': 'KLHW10', + 'point_status': '1', + 'stand_status_color': '0', + 'instorage_time': '-', + 'mix_num': '-', + 'vehicle_code': '0025', + 'material_code': '-', + 'stand_status_name': '' + }, + { + 'bom': '-', + 'stand_status': '', + 'standing_time': '-', + 'weight': '-', + 'point_name': '困料货位12', + 'point_status_name': '空位', + 'point_code': 'KLHW12', + 'point_status': '0', + 'stand_status_color': '0', + 'instorage_time': '-', + 'mix_num': '-', + 'vehicle_code': '-', + 'material_code': '-', + 'stand_status_name': '' + }, + { + 'bom': '-', + 'stand_status': '', + 'standing_time': '-', + 'weight': '-', + 'point_name': '困料货位14', + 'point_status_name': '空位', + 'point_code': 'KLHW14', + 'point_status': '0', + 'stand_status_color': '0', + 'instorage_time': '-', + 'mix_num': '-', + 'vehicle_code': '-', + 'material_code': '-', + 'stand_status_name': '' + }, + { + 'bom': '-', + 'stand_status': '', + 'standing_time': '-', + 'weight': '-', + 'point_name': '困料货位16', + 'point_status_name': '空位', + 'point_code': 'KLHW16', + 'point_status': '0', + 'stand_status_color': '0', + 'instorage_time': '-', + 'mix_num': '-', + 'vehicle_code': '-', + 'material_code': '-', + 'stand_status_name': '' + }, + { + 'bom': '-', + 'stand_status': '', + 'standing_time': '-', + 'weight': '-', + 'point_name': '困料货位18', + 'point_status_name': '空位', + 'point_code': 'KLHW18', + 'point_status': '0', + 'stand_status_color': '0', + 'instorage_time': '-', + 'mix_num': '-', + 'vehicle_code': '-', + 'material_code': '-', + 'stand_status_name': '' + }, + { + 'bom': '-', + 'stand_status': '', + 'standing_time': '-', + 'weight': '-', + 'point_name': '困料货位20', + 'point_status_name': '空位', + 'point_code': 'KLHW20', + 'point_status': '0', + 'stand_status_color': '0', + 'instorage_time': '-', + 'mix_num': '-', + 'vehicle_code': '-', + 'material_code': '-', + 'stand_status_name': '' + }, + { + 'bom': '-', + 'stand_status': '', + 'standing_time': '-', + 'weight': '-', + 'point_name': '困料货位22', + 'point_status_name': '空位', + 'point_code': 'KLHW22', + 'point_status': '0', + 'stand_status_color': '0', + 'instorage_time': '-', + 'mix_num': '-', + 'vehicle_code': '-', + 'material_code': '-', + 'stand_status_name': '' + }, + { + 'bom': '-', + 'stand_status': '', + 'standing_time': '-', + 'weight': '-', + 'point_name': '困料货位24', + 'point_status_name': '空位', + 'point_code': 'KLHW24', + 'point_status': '0', + 'stand_status_color': '0', + 'instorage_time': '-', + 'mix_num': '-', + 'vehicle_code': '-', + 'material_code': '-', + 'stand_status_name': '' + }, + { + 'bom': '-', + 'stand_status': '', + 'standing_time': '-', + 'weight': '-', + 'point_name': '困料货位26', + 'point_status_name': '空位', + 'point_code': 'KLHW26', + 'point_status': '0', + 'stand_status_color': '0', + 'instorage_time': '-', + 'mix_num': '-', + 'vehicle_code': '-', + 'material_code': '-', + 'stand_status_name': '' + }, + { + 'bom': '-', + 'stand_status': '', + 'standing_time': '-', + 'weight': '-', + 'point_name': '困料货位28', + 'point_status_name': '空位', + 'point_code': 'KLHW28', + 'point_status': '0', + 'stand_status_color': '0', + 'instorage_time': '-', + 'mix_num': '-', + 'vehicle_code': '-', + 'material_code': '-', + 'stand_status_name': '' + }, + { + 'bom': '-', + 'stand_status': '', + 'standing_time': '-', + 'weight': '-', + 'point_name': '困料货位30', + 'point_status_name': '空位', + 'point_code': 'KLHW30', + 'point_status': '0', + 'stand_status_color': '0', + 'instorage_time': '-', + 'mix_num': '-', + 'vehicle_code': '-', + 'material_code': '-', + 'stand_status_name': '' + }, + { + 'bom': '-', + 'stand_status': '', + 'standing_time': '-', + 'weight': '-', + 'point_name': '困料货位32', + 'point_status_name': '空位', + 'point_code': 'KLHW32', + 'point_status': '0', + 'stand_status_color': '0', + 'instorage_time': '-', + 'mix_num': '-', + 'vehicle_code': '-', + 'material_code': '-', + 'stand_status_name': '' + }, + { + 'bom': '-', + 'stand_status': '', + 'standing_time': '-', + 'weight': '-', + 'point_name': '困料货位34', + 'point_status_name': '空位', + 'point_code': 'KLHW34', + 'point_status': '0', + 'stand_status_color': '0', + 'instorage_time': '-', + 'mix_num': '-', + 'vehicle_code': '-', + 'material_code': '-', + 'stand_status_name': '' + }, + { + 'bom': '-', + 'stand_status': '', + 'standing_time': '-', + 'weight': '-', + 'point_name': '困料货位36', + 'point_status_name': '空位', + 'point_code': 'KLHW36', + 'point_status': '0', + 'stand_status_color': '0', + 'instorage_time': '-', + 'mix_num': '-', + 'vehicle_code': '-', + 'material_code': '-', + 'stand_status_name': '' + }, + { + 'bom': '-', + 'stand_status': '', + 'standing_time': '-', + 'weight': '-', + 'point_name': '困料货位38', + 'point_status_name': '空位', + 'point_code': 'KLHW38', + 'point_status': '0', + 'stand_status_color': '0', + 'instorage_time': '-', + 'mix_num': '-', + 'vehicle_code': '-', + 'material_code': '-', + 'stand_status_name': '' + }, + { + 'bom': '-', + 'stand_status': '', + 'standing_time': '-', + 'weight': '-', + 'point_name': '困料货位40', + 'point_status_name': '空位', + 'point_code': 'KLHW40', + 'point_status': '0', + 'stand_status_color': '0', + 'instorage_time': '-', + 'mix_num': '-', + 'vehicle_code': '-', + 'material_code': '-', + 'stand_status_name': '' + } + ] + } + } + return res +} diff --git a/src/assets/js/getData1.js b/src/assets/js/getData1.js index 17eec33..9f8e377 100644 --- a/src/assets/js/getData1.js +++ b/src/assets/js/getData1.js @@ -24,52 +24,116 @@ export const errCensus = (id) => post('api/deviceScreen/errCensus', {}) /** 仓储监控 */ export const storageMonitor = (id) => post('api/dashboard/warehouseMonitor', {}) /** 生产统计 */ -export const productionStatistics = (id) => post('api/dashboard/productionStatistics', {}) -// export const productionStatistics = () => { -// let res = { -// 'total': { -// 'pressWeight': 0, -// 'dryWeight': 0, -// 'sortWeight': 0 -// }, -// 'mixProduction': [ -// { -// 'value': 0, -// 'name': 'string' -// } -// ], -// 'pressProduction': { -// 'dailyProductionQty': 0, -// 'dailyProductionWeight': 0, -// 'equipmentProduction': [ -// { -// 'name': 'string', -// 'qty': 0, -// 'weight': 0 -// } -// ] -// }, -// 'finishedProductCompletionRate': [ -// { -// 'name': 'string', -// 'completed': 0, -// 'uncompleted': 0 -// } -// ], -// 'workOrder': [ -// { -// 'workOrderCode': 'string', -// 'equipment': 'string', -// 'materialCode': 'string', -// 'customer': 'string', -// 'planned': 0, -// 'completed': 0, -// 'status': 'string', -// 'planStartTime': 'string', -// 'startTime': 'string', -// 'endTime': 'string' -// } -// ] -// } -// return res -// } +// export const productionStatistics = (id) => post('api/dashboard/productionStatistics', {}) +export const productionStatistics = () => { + let res = { + 'pressProduction': { + 'dailyProductionQty': 32.25, + 'equipmentProduction': [ + { + 'qty': 11000, + 'name': '压机1', + 'weight': 13000 + }, + { + 'qty': 4000, + 'name': '压机2', + 'weight': 19000 + }, + { + 'qty': 5000, + 'name': '压机3', + 'weight': 3000 + } + ], + 'dailyProductionWeight': 64.25 + }, + 'workOrder': [ + { + 'planStartTime': '2023-08-18 14:02:48', + 'workOrderCode': 'DD001', + 'equipment': '压机1', + 'materialCode': 'WL01', + 'startTime': '2023-08-18 14:02:48', + 'planned': '1000kg', + 'completed': '827kg', + 'endTime': '2023-08-18 14:02:48', + 'customer': '厂家1', + 'status': '完成' + }, + { + 'planStartTime': '2023-08-18 14:02:48', + 'workOrderCode': 'DD002', + 'equipment': '混料机2', + 'materialCode': 'WL02', + 'startTime': '2023-08-18 14:02:48', + 'planned': '1000kg', + 'completed': '894kg', + 'customer': '厂家2', + 'status': '已下发' + }, + { + 'planStartTime': '2023-08-18 14:02:48', + 'workOrderCode': 'DD003', + 'equipment': '压机3', + 'materialCode': 'WL03', + 'planned': '3000kg', + 'completed': '627kg', + 'customer': '厂家3', + 'status': '未生产' + }, + { + 'planStartTime': '2023-08-18 14:02:48', + 'workOrderCode': 'DD004', + 'equipment': '混料机4', + 'materialCode': 'WL04', + 'startTime': '2023-08-18 14:02:48', + 'planned': '8000kg', + 'completed': '6137kg', + 'customer': '厂家4', + 'status': '暂停' + } + ], + 'total': { + 'pressWeight': 30.25, + 'dryWeight': 20.25, + 'sortWeight': 16.25 + }, + 'finishedProductCompletionRate': [ + { + 'uncompleted': 5000, + 'name': '物料1', + 'completed': 4000 + }, + { + 'uncompleted': 3000, + 'name': '物料2', + 'completed': 4000 + }, + { + 'uncompleted': 4000, + 'name': '物料3', + 'completed': 3000 + } + ], + 'mixProduction': [ + { + 'name': '物料1', + 'value': 800.25 + }, + { + 'name': '物料2', + 'value': 800.25 + }, + { + 'name': '物料3', + 'value': 900.25 + }, + { + 'name': '物料4', + 'value': 600.25 + } + ] + } + return res +} diff --git a/src/assets/js/getData11.js b/src/assets/js/getData11.js index f5b5924..cf5ca9e 100644 --- a/src/assets/js/getData11.js +++ b/src/assets/js/getData11.js @@ -3,3460 +3,857 @@ // 仓储监控 export const storageMonitor = () => { let res = { - 'code': 200, - 'desc': '操作成功', - 'result': { - 'materialTask': [ - { - 'point_id': '1655172926649012224', - 'point_code': 'KLHW01', - 'point_name': '困料1', - 'point_status': '1', - 'stand_status': '3', - 'stand_status_name': '静置完成', - 'material_id': null, - 'material_code': '1001C1', - 'material_name': null, - 'vehicle_code': '0008', - 'ivt_qty': 0, - 'ivt_weight': 1500.00, - 'instorage_time': '2023-05-10 14:52:16', - 'standing_time': 20, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '1' - }, - { - 'point_id': '1655172926997139456', - 'point_code': 'KLHW03', - 'point_name': '困料3', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172927085219840', - 'point_code': 'KLHW05', - 'point_name': '困料5', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172927169105920', - 'point_code': 'KLHW07', - 'point_name': '困料7', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172927257186304', - 'point_code': 'KLHW09', - 'point_name': '困料9', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172927353655296', - 'point_code': 'KLHW11', - 'point_name': '困料11', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172927445929984', - 'point_code': 'KLHW13', - 'point_name': '困料13', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172927529816064', - 'point_code': 'KLHW15', - 'point_name': '困料15', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172927647256576', - 'point_code': 'KLHW17', - 'point_name': '困料17', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172927752114176', - 'point_code': 'KLHW19', - 'point_name': '困料19', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172927823417344', - 'point_code': 'KLHW21', - 'point_name': '困料21', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172927903109120', - 'point_code': 'KLHW23', - 'point_name': '困料23', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172927978606592', - 'point_code': 'KLHW25', - 'point_name': '困料25', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172928091852800', - 'point_code': 'KLHW27', - 'point_name': '困料27', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172928318345216', - 'point_code': 'KLHW29', - 'point_name': '困料29', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172928632918016', - 'point_code': 'KLHW31', - 'point_name': '困料31', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172928712609792', - 'point_code': 'KLHW33', - 'point_name': '困料33', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172928800690176', - 'point_code': 'KLHW35', - 'point_name': '困料35', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172928876187648', - 'point_code': 'KLHW37', - 'point_name': '困料37', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172928951685120', - 'point_code': 'KLHW39', - 'point_name': '困料39', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172926808395776', - 'point_code': 'KLHW02', - 'point_name': '困料2', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172927043276800', - 'point_code': 'KLHW04', - 'point_name': '困料4', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172927131357184', - 'point_code': 'KLHW06', - 'point_name': '困料6', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172927211048960', - 'point_code': 'KLHW08', - 'point_name': '困料8', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172927307517952', - 'point_code': 'KLHW10', - 'point_name': '困料10', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172927403986944', - 'point_code': 'KLHW12', - 'point_name': '困料12', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172927492067328', - 'point_code': 'KLHW14', - 'point_name': '困料14', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172927567564800', - 'point_code': 'KLHW16', - 'point_name': '困料16', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172927680811008', - 'point_code': 'KLHW18', - 'point_name': '困料18', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172927789862912', - 'point_code': 'KLHW20', - 'point_name': '困料20', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172927861166080', - 'point_code': 'KLHW22', - 'point_name': '困料22', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172927936663552', - 'point_code': 'KLHW24', - 'point_name': '困料24', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172928049909760', - 'point_code': 'KLHW26', - 'point_name': '困料26', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172928251236352', - 'point_code': 'KLHW28', - 'point_name': '困料28', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172928595169280', - 'point_code': 'KLHW30', - 'point_name': '困料30', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172928679055360', - 'point_code': 'KLHW32', - 'point_name': '困料32', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172928758747136', - 'point_code': 'KLHW34', - 'point_name': '困料34', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172928834244608', - 'point_code': 'KLHW36', - 'point_name': '困料36', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172928913936384', - 'point_code': 'KLHW38', - 'point_name': '困料38', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172928993628160', - 'point_code': 'KLHW40', - 'point_name': '困料40', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - } - ], - 'materialYJTask': [ - { - 'point_id': '1655172929064931328', - 'point_code': 'KLHW42', - 'point_name': '压机1困料1', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172929106874368', - 'point_code': 'KLHW43', - 'point_name': '压机1困料2', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172929144623104', - 'point_code': 'KLHW44', - 'point_name': '压机1困料3', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172929253675008', - 'point_code': 'KLHW46', - 'point_name': '压机2困料1', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172929291423744', - 'point_code': 'KLHW47', - 'point_name': '压机2困料2', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172929324978176', - 'point_code': 'KLHW48', - 'point_name': '压机2困料3', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - } - ], - 'productionTask': [ - { - 'point_id': '1643445023329800192', - 'point_code': 'BCPHW01', - 'point_name': '半成品1', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445023459823616', - 'point_code': 'BCPHW03', - 'point_name': '半成品3', - 'point_status': '1', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': 'ZLMCZ1001C111122GM001BD20-8', - 'material_name': null, - 'vehicle_code': '5217', - 'ivt_qty': 270, - 'ivt_weight': null, - 'instorage_time': '2023-05-09 16:38:50', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '是', - 'struct_url': '2' - }, - { - 'point_id': '1643445023514349568', - 'point_code': 'BCPHW05', - 'point_name': '半成品5', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445023573069824', - 'point_code': 'BCPHW07', - 'point_name': '半成品7', - 'point_status': '1', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': 'ZLMCZ1001C111122GM001BD20-8', - 'material_name': null, - 'vehicle_code': '5009', - 'ivt_qty': 270, - 'ivt_weight': null, - 'instorage_time': '2023-05-09 17:16:27', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '是', - 'struct_url': '2' - }, - { - 'point_id': '1643445023631790080', - 'point_code': 'BCPHW09', - 'point_name': '半成品9', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445023703093248', - 'point_code': 'BCPHW11', - 'point_name': '半成品11', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445023761813504', - 'point_code': 'BCPHW13', - 'point_name': '半成品13', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445023820533760', - 'point_code': 'BCPHW15', - 'point_name': '半成品15', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445023875059712', - 'point_code': 'BCPHW17', - 'point_name': '半成品17', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445023925391360', - 'point_code': 'BCPHW19', - 'point_name': '半成品19', - 'point_status': '1', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': 'ZLMCZ1001C111122GM001BD20-8', - 'material_name': null, - 'vehicle_code': '5125', - 'ivt_qty': 288, - 'ivt_weight': null, - 'instorage_time': '2023-05-07 15:55:28', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '是', - 'struct_url': '2' - }, - { - 'point_id': '1643445023975723008', - 'point_code': 'BCPHW21', - 'point_name': '半成品21', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445024026054656', - 'point_code': 'BCPHW23', - 'point_name': '半成品23', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445024076386304', - 'point_code': 'BCPHW25', - 'point_name': '半成品25', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445024126717952', - 'point_code': 'BCPHW27', - 'point_name': '半成品27', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445024177049600', - 'point_code': 'BCPHW29', - 'point_name': '半成品29', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445024227381248', - 'point_code': 'BCPHW31', - 'point_name': '半成品31', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445024290295808', - 'point_code': 'BCPHW33', - 'point_name': '半成品33', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445024344821760', - 'point_code': 'BCPHW35', - 'point_name': '半成品35', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445024411930624', - 'point_code': 'BCPHW37', - 'point_name': '半成品37', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445024479039488', - 'point_code': 'BCPHW39', - 'point_name': '半成品39', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445024529371136', - 'point_code': 'BCPHW41', - 'point_name': '半成品41', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445024596480000', - 'point_code': 'BCPHW43', - 'point_name': '半成品43', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445024663588864', - 'point_code': 'BCPHW45', - 'point_name': '半成品45', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445024718114816', - 'point_code': 'BCPHW47', - 'point_name': '半成品47', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445024781029376', - 'point_code': 'BCPHW49', - 'point_name': '半成品49', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445024835555328', - 'point_code': 'BCPHW51', - 'point_name': '半成品51', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445023430463488', - 'point_code': 'BCPHW02', - 'point_name': '半成品2', - 'point_status': '1', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': 'ZLMCZ1001C111122GM001BD20-8', - 'material_name': null, - 'vehicle_code': '9999', - 'ivt_qty': 288, - 'ivt_weight': null, - 'instorage_time': '2023-05-09 16:12:58', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '是', - 'struct_url': '2' - }, - { - 'point_id': '1643445023484989440', - 'point_code': 'BCPHW04', - 'point_name': '半成品4', - 'point_status': '1', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': 'ZLMCZ1001C111122GM001BD20-8', - 'material_name': null, - 'vehicle_code': '5055', - 'ivt_qty': 270, - 'ivt_weight': null, - 'instorage_time': '2023-05-09 16:21:39', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '是', - 'struct_url': '2' - } - ], - 'materialList': [ - { - 'point_id': '1655172926649012224', - 'point_code': 'KLHW01', - 'point_name': '困料1', - 'point_status': '1', - 'stand_status': '3', - 'stand_status_name': '静置完成', - 'material_id': null, - 'material_code': '1001C1', - 'material_name': null, - 'vehicle_code': '0008', - 'ivt_qty': 0, - 'ivt_weight': 1500.00, - 'instorage_time': '2023-05-10 14:52:16', - 'standing_time': 20, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '1' - }, - { - 'point_id': '1655172926808395776', - 'point_code': 'KLHW02', - 'point_name': '困料2', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172926997139456', - 'point_code': 'KLHW03', - 'point_name': '困料3', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172927043276800', - 'point_code': 'KLHW04', - 'point_name': '困料4', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172927085219840', - 'point_code': 'KLHW05', - 'point_name': '困料5', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172927131357184', - 'point_code': 'KLHW06', - 'point_name': '困料6', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172927169105920', - 'point_code': 'KLHW07', - 'point_name': '困料7', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172927211048960', - 'point_code': 'KLHW08', - 'point_name': '困料8', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172927257186304', - 'point_code': 'KLHW09', - 'point_name': '困料9', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172927307517952', - 'point_code': 'KLHW10', - 'point_name': '困料10', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172927353655296', - 'point_code': 'KLHW11', - 'point_name': '困料11', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172927403986944', - 'point_code': 'KLHW12', - 'point_name': '困料12', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172927445929984', - 'point_code': 'KLHW13', - 'point_name': '困料13', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172927492067328', - 'point_code': 'KLHW14', - 'point_name': '困料14', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172927529816064', - 'point_code': 'KLHW15', - 'point_name': '困料15', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172927567564800', - 'point_code': 'KLHW16', - 'point_name': '困料16', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172927647256576', - 'point_code': 'KLHW17', - 'point_name': '困料17', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172927680811008', - 'point_code': 'KLHW18', - 'point_name': '困料18', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172927752114176', - 'point_code': 'KLHW19', - 'point_name': '困料19', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172927789862912', - 'point_code': 'KLHW20', - 'point_name': '困料20', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172927823417344', - 'point_code': 'KLHW21', - 'point_name': '困料21', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172927861166080', - 'point_code': 'KLHW22', - 'point_name': '困料22', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172927903109120', - 'point_code': 'KLHW23', - 'point_name': '困料23', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172927936663552', - 'point_code': 'KLHW24', - 'point_name': '困料24', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172927978606592', - 'point_code': 'KLHW25', - 'point_name': '困料25', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172928049909760', - 'point_code': 'KLHW26', - 'point_name': '困料26', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172928091852800', - 'point_code': 'KLHW27', - 'point_name': '困料27', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172928251236352', - 'point_code': 'KLHW28', - 'point_name': '困料28', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172928318345216', - 'point_code': 'KLHW29', - 'point_name': '困料29', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172928595169280', - 'point_code': 'KLHW30', - 'point_name': '困料30', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172928632918016', - 'point_code': 'KLHW31', - 'point_name': '困料31', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172928679055360', - 'point_code': 'KLHW32', - 'point_name': '困料32', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172928712609792', - 'point_code': 'KLHW33', - 'point_name': '困料33', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172928758747136', - 'point_code': 'KLHW34', - 'point_name': '困料34', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172928800690176', - 'point_code': 'KLHW35', - 'point_name': '困料35', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172928834244608', - 'point_code': 'KLHW36', - 'point_name': '困料36', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172928876187648', - 'point_code': 'KLHW37', - 'point_name': '困料37', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172928913936384', - 'point_code': 'KLHW38', - 'point_name': '困料38', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172928951685120', - 'point_code': 'KLHW39', - 'point_name': '困料39', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172928993628160', - 'point_code': 'KLHW40', - 'point_name': '困料40', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172929064931328', - 'point_code': 'KLHW42', - 'point_name': '压机1困料1', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172929106874368', - 'point_code': 'KLHW43', - 'point_name': '压机1困料2', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172929144623104', - 'point_code': 'KLHW44', - 'point_name': '压机1困料3', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172929253675008', - 'point_code': 'KLHW46', - 'point_name': '压机2困料1', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172929291423744', - 'point_code': 'KLHW47', - 'point_name': '压机2困料2', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - }, - { - 'point_id': '1655172929324978176', - 'point_code': 'KLHW48', - 'point_name': '压机2困料3', - 'point_status': '0', - 'stand_status': '', - 'stand_status_name': '', - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': null, - 'struct_url': '' - } - ], - 'productionList': [ - { - 'point_id': '1643445023329800192', - 'point_code': 'BCPHW01', - 'point_name': '半成品1', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445023430463488', - 'point_code': 'BCPHW02', - 'point_name': '半成品2', - 'point_status': '1', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': 'ZLMCZ1001C111122GM001BD20-8', - 'material_name': null, - 'vehicle_code': '9999', - 'ivt_qty': 288, - 'ivt_weight': null, - 'instorage_time': '2023-05-09 16:12:58', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '是', - 'struct_url': '2' - }, - { - 'point_id': '1643445023459823616', - 'point_code': 'BCPHW03', - 'point_name': '半成品3', - 'point_status': '1', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': 'ZLMCZ1001C111122GM001BD20-8', - 'material_name': null, - 'vehicle_code': '5217', - 'ivt_qty': 270, - 'ivt_weight': null, - 'instorage_time': '2023-05-09 16:38:50', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '是', - 'struct_url': '2' - }, - { - 'point_id': '1643445023484989440', - 'point_code': 'BCPHW04', - 'point_name': '半成品4', - 'point_status': '1', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': 'ZLMCZ1001C111122GM001BD20-8', - 'material_name': null, - 'vehicle_code': '5055', - 'ivt_qty': 270, - 'ivt_weight': null, - 'instorage_time': '2023-05-09 16:21:39', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '是', - 'struct_url': '2' - }, - { - 'point_id': '1643445023514349568', - 'point_code': 'BCPHW05', - 'point_name': '半成品5', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445023539515392', - 'point_code': 'BCPHW06', - 'point_name': '半成品6', - 'point_status': '1', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': 'ZLMCZ1001C111122GM001BD20-8', - 'material_name': null, - 'vehicle_code': '5046', - 'ivt_qty': 0, - 'ivt_weight': null, - 'instorage_time': '2023-05-09 16:50:04', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '是', - 'struct_url': '2' - }, - { - 'point_id': '1643445023573069824', - 'point_code': 'BCPHW07', - 'point_name': '半成品7', - 'point_status': '1', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': 'ZLMCZ1001C111122GM001BD20-8', - 'material_name': null, - 'vehicle_code': '5009', - 'ivt_qty': 270, - 'ivt_weight': null, - 'instorage_time': '2023-05-09 17:16:27', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '是', - 'struct_url': '2' - }, - { - 'point_id': '1643445023602429952', - 'point_code': 'BCPHW08', - 'point_name': '半成品8', - 'point_status': '1', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': 'ZLMCZ1001C111122GM001BD20-8', - 'material_name': null, - 'vehicle_code': '5133', - 'ivt_qty': 288, - 'ivt_weight': null, - 'instorage_time': '2023-05-09 17:34:51', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '是', - 'struct_url': '2' - }, - { - 'point_id': '1643445023631790080', - 'point_code': 'BCPHW09', - 'point_name': '半成品9', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445023665344512', - 'point_code': 'BCPHW10', - 'point_name': '半成品10', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445023703093248', - 'point_code': 'BCPHW11', - 'point_name': '半成品11', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445023736647680', - 'point_code': 'BCPHW12', - 'point_name': '半成品12', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445023761813504', - 'point_code': 'BCPHW13', - 'point_name': '半成品13', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445023795367936', - 'point_code': 'BCPHW14', - 'point_name': '半成品14', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445023820533760', - 'point_code': 'BCPHW15', - 'point_name': '半成品15', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445023845699584', - 'point_code': 'BCPHW16', - 'point_name': '半成品16', - 'point_status': '1', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': 'ZLMCZ1001C111122GM001BD20-8', - 'material_name': null, - 'vehicle_code': '5059', - 'ivt_qty': 270, - 'ivt_weight': null, - 'instorage_time': '2023-05-07 15:13:26', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '是', - 'struct_url': '2' - }, - { - 'point_id': '1643445023875059712', - 'point_code': 'BCPHW17', - 'point_name': '半成品17', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445023904419840', - 'point_code': 'BCPHW18', - 'point_name': '半成品18', - 'point_status': '1', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': 'ZLMCZ1001C111122GM001BD20-8', - 'material_name': null, - 'vehicle_code': '5143', - 'ivt_qty': 0, - 'ivt_weight': null, - 'instorage_time': '2023-05-07 15:19:51', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '是', - 'struct_url': '2' - }, - { - 'point_id': '1643445023925391360', - 'point_code': 'BCPHW19', - 'point_name': '半成品19', - 'point_status': '1', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': 'ZLMCZ1001C111122GM001BD20-8', - 'material_name': null, - 'vehicle_code': '5125', - 'ivt_qty': 288, - 'ivt_weight': null, - 'instorage_time': '2023-05-07 15:55:28', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '是', - 'struct_url': '2' - }, - { - 'point_id': '1643445023950557184', - 'point_code': 'BCPHW20', - 'point_name': '半成品20', - 'point_status': '1', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': 'ZLMCZ1001C111122GM001BD20-8', - 'material_name': null, - 'vehicle_code': '5112', - 'ivt_qty': 288, - 'ivt_weight': null, - 'instorage_time': '2023-05-07 16:07:14', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '是', - 'struct_url': '2' - }, - { - 'point_id': '1643445023975723008', - 'point_code': 'BCPHW21', - 'point_name': '半成品21', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445024000888832', - 'point_code': 'BCPHW22', - 'point_name': '半成品22', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445024026054656', - 'point_code': 'BCPHW23', - 'point_name': '半成品23', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445024051220480', - 'point_code': 'BCPHW24', - 'point_name': '半成品24', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445024076386304', - 'point_code': 'BCPHW25', - 'point_name': '半成品25', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445024101552128', - 'point_code': 'BCPHW26', - 'point_name': '半成品26', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445024126717952', - 'point_code': 'BCPHW27', - 'point_name': '半成品27', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445024147689472', - 'point_code': 'BCPHW28', - 'point_name': '半成品28', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445024177049600', - 'point_code': 'BCPHW29', - 'point_name': '半成品29', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445024202215424', - 'point_code': 'BCPHW30', - 'point_name': '半成品30', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445024227381248', - 'point_code': 'BCPHW31', - 'point_name': '半成品31', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445024252547072', - 'point_code': 'BCPHW32', - 'point_name': '半成品32', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445024290295808', - 'point_code': 'BCPHW33', - 'point_name': '半成品33', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445024315461632', - 'point_code': 'BCPHW34', - 'point_name': '半成品34', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445024344821760', - 'point_code': 'BCPHW35', - 'point_name': '半成品35', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445024382570496', - 'point_code': 'BCPHW36', - 'point_name': '半成品36', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445024411930624', - 'point_code': 'BCPHW37', - 'point_name': '半成品37', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445024441290752', - 'point_code': 'BCPHW38', - 'point_name': '半成品38', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445024479039488', - 'point_code': 'BCPHW39', - 'point_name': '半成品39', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445024504205312', - 'point_code': 'BCPHW40', - 'point_name': '半成品40', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445024529371136', - 'point_code': 'BCPHW41', - 'point_name': '半成品41', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445024567119872', - 'point_code': 'BCPHW42', - 'point_name': '半成品42', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445024596480000', - 'point_code': 'BCPHW43', - 'point_name': '半成品43', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445024625840128', - 'point_code': 'BCPHW44', - 'point_name': '半成品44', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445024663588864', - 'point_code': 'BCPHW45', - 'point_name': '半成品45', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445024688754688', - 'point_code': 'BCPHW46', - 'point_name': '半成品46', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445024718114816', - 'point_code': 'BCPHW47', - 'point_name': '半成品47', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445024755863552', - 'point_code': 'BCPHW48', - 'point_name': '半成品48', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445024781029376', - 'point_code': 'BCPHW49', - 'point_name': '半成品49', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445024806195200', - 'point_code': 'BCPHW50', - 'point_name': '半成品50', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445024835555328', - 'point_code': 'BCPHW51', - 'point_name': '半成品51', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - }, - { - 'point_id': '1643445024860721152', - 'point_code': 'BCPHW52', - 'point_name': '半成品52', - 'point_status': '0', - 'stand_status': null, - 'stand_status_name': null, - 'material_id': null, - 'material_code': '', - 'material_name': null, - 'vehicle_code': '', - 'ivt_qty': null, - 'ivt_weight': null, - 'instorage_time': '', - 'standing_time': null, - 'standing_status': null, - 'warn_time': null, - 'is_full': '否', - 'struct_url': '' - } - ] - } + 'backWarehouseStock': [ + { + 'materialName': '物料1', + 'warehousingTime': '2023-08-18 16:32:42', + 'qty': '38', + 'storageLocation': '窑后货位1', + 'vehicleCode': '5066', + 'materialCode': 'WL01', + 'pointStatus': '3' + }, + { + 'materialName': '物料4', + 'warehousingTime': '2023-08-18 16:32:42', + 'qty': '2', + 'storageLocation': '窑后货位4', + 'vehicleCode': '8543', + 'materialCode': 'WL04', + 'pointStatus': '3' + }, + { + 'materialName': '物料10', + 'warehousingTime': '2023-08-18 16:32:42', + 'qty': '130', + 'storageLocation': '窑后货位10', + 'vehicleCode': '7467', + 'materialCode': 'WL10', + 'pointStatus': '3' + }, + { + 'materialName': '物料22', + 'warehousingTime': '2023-08-18 16:32:42', + 'qty': '91', + 'storageLocation': '窑后货位22', + 'vehicleCode': '3503', + 'materialCode': 'WL22', + 'pointStatus': '3' + } + ], + 'frontWarehouseStock': [ + { + 'materialName': '物料1', + 'warehousingTime': '2023-08-18 16:32:42', + 'qty': '180', + 'storageLocation': '窑前货位1', + 'vehicleCode': '1791', + 'materialCode': 'WL01', + 'pointStatus': '3' + }, + { + 'materialName': '物料3', + 'warehousingTime': '2023-08-18 16:32:42', + 'qty': '23', + 'storageLocation': '窑前货位3', + 'vehicleCode': '6581', + 'materialCode': 'WL03', + 'pointStatus': '3' + }, + { + 'materialName': '物料5', + 'warehousingTime': '2023-08-18 16:32:42', + 'qty': '195', + 'storageLocation': '窑前货位5', + 'vehicleCode': '7303', + 'materialCode': 'WL05', + 'pointStatus': '3' + }, + { + 'materialName': '物料15', + 'warehousingTime': '2023-08-18 16:32:42', + 'qty': '100', + 'storageLocation': '窑前货位15', + 'vehicleCode': '7733', + 'materialCode': 'WL15', + 'pointStatus': '3' + }, + { + 'materialName': '物料17', + 'warehousingTime': '2023-08-18 16:32:42', + 'qty': '106', + 'storageLocation': '窑前货位17', + 'vehicleCode': '5738', + 'materialCode': 'WL17', + 'pointStatus': '3' + }, + { + 'materialName': '物料21', + 'warehousingTime': '2023-08-18 16:32:42', + 'qty': '167', + 'storageLocation': '窑前货位21', + 'vehicleCode': '2319', + 'materialCode': 'WL21', + 'pointStatus': '3' + }, + { + 'materialName': '物料16', + 'warehousingTime': '2023-08-18 16:32:42', + 'qty': '188', + 'storageLocation': '窑前货位16', + 'vehicleCode': '3036', + 'materialCode': 'WL16', + 'pointStatus': '3' + }, + { + 'materialName': '物料18', + 'warehousingTime': '2023-08-18 16:32:42', + 'qty': '40', + 'storageLocation': '窑前货位18', + 'vehicleCode': '0421', + 'materialCode': 'WL18', + 'pointStatus': '3' + }, + { + 'materialName': '物料26', + 'warehousingTime': '2023-08-18 16:32:42', + 'qty': '23', + 'storageLocation': '窑前货位26', + 'vehicleCode': '2491', + 'materialCode': 'WL26', + 'pointStatus': '3' + } + ], + 'backWarehouseMonitor': [ + { + 'materialName': '物料1', + 'warehousingTime': '2023-08-18 16:32:42', + 'qty': '38', + 'storageLocation': '窑后货位1', + 'vehicleCode': '5066', + 'materialCode': 'WL01', + 'pointStatus': '3' + }, + { + 'storageLocation': '窑后货位3', + 'pointStatus': '1' + }, + { + 'storageLocation': '窑后货位5', + 'pointStatus': '1' + }, + { + 'storageLocation': '窑后货位7', + 'vehicleCode': '3859', + 'pointStatus': '2' + }, + { + 'storageLocation': '窑后货位9', + 'vehicleCode': '8981', + 'pointStatus': '2' + }, + { + 'storageLocation': '窑后货位11', + 'vehicleCode': '5602', + 'pointStatus': '2' + }, + { + 'storageLocation': '窑后货位13', + 'pointStatus': '1' + }, + { + 'storageLocation': '窑后货位15', + 'pointStatus': '1' + }, + { + 'storageLocation': '窑后货位17', + 'vehicleCode': '3018', + 'pointStatus': '2' + }, + { + 'storageLocation': '窑后货位19', + 'vehicleCode': '2778', + 'pointStatus': '2' + }, + { + 'storageLocation': '窑后货位21', + 'vehicleCode': '1853', + 'pointStatus': '2' + }, + { + 'storageLocation': '窑后货位23', + 'pointStatus': '1' + }, + { + 'storageLocation': '窑后货位25', + 'pointStatus': '1' + }, + { + 'storageLocation': '窑后货位2', + 'vehicleCode': '0732', + 'pointStatus': '2' + }, + { + 'materialName': '物料4', + 'warehousingTime': '2023-08-18 16:32:42', + 'qty': '2', + 'storageLocation': '窑后货位4', + 'vehicleCode': '8543', + 'materialCode': 'WL04', + 'pointStatus': '3' + }, + { + 'storageLocation': '窑后货位6', + 'vehicleCode': '0693', + 'pointStatus': '2' + }, + { + 'storageLocation': '窑后货位8', + 'vehicleCode': '3359', + 'pointStatus': '2' + }, + { + 'materialName': '物料10', + 'warehousingTime': '2023-08-18 16:32:42', + 'qty': '130', + 'storageLocation': '窑后货位10', + 'vehicleCode': '7467', + 'materialCode': 'WL10', + 'pointStatus': '3' + }, + { + 'storageLocation': '窑后货位12', + 'vehicleCode': '2418', + 'pointStatus': '2' + }, + { + 'storageLocation': '窑后货位14', + 'vehicleCode': '5917', + 'pointStatus': '2' + }, + { + 'storageLocation': '窑后货位16', + 'vehicleCode': '7852', + 'pointStatus': '2' + }, + { + 'storageLocation': '窑后货位18', + 'pointStatus': '1' + }, + { + 'storageLocation': '窑后货位20', + 'pointStatus': '1' + }, + { + 'materialName': '物料22', + 'warehousingTime': '2023-08-18 16:32:42', + 'qty': '91', + 'storageLocation': '窑后货位22', + 'vehicleCode': '3503', + 'materialCode': 'WL22', + 'pointStatus': '3' + }, + { + 'storageLocation': '窑后货位24', + 'vehicleCode': '5533', + 'pointStatus': '2' + }, + { + 'storageLocation': '窑后货位26', + 'pointStatus': '1' + } + ], + 'frontWarehouseMonitor': [ + { + 'materialName': '物料1', + 'warehousingTime': '2023-08-18 16:32:42', + 'qty': '180', + 'storageLocation': '窑前货位1', + 'vehicleCode': '1791', + 'materialCode': 'WL01', + 'pointStatus': '3' + }, + { + 'materialName': '物料3', + 'warehousingTime': '2023-08-18 16:32:42', + 'qty': '23', + 'storageLocation': '窑前货位3', + 'vehicleCode': '6581', + 'materialCode': 'WL03', + 'pointStatus': '3' + }, + { + 'materialName': '物料5', + 'warehousingTime': '2023-08-18 16:32:42', + 'qty': '195', + 'storageLocation': '窑前货位5', + 'vehicleCode': '7303', + 'materialCode': 'WL05', + 'pointStatus': '3' + }, + { + 'storageLocation': '窑前货位7', + 'vehicleCode': '8137', + 'pointStatus': '2' + }, + { + 'storageLocation': '窑前货位9', + 'pointStatus': '1' + }, + { + 'storageLocation': '窑前货位11', + 'pointStatus': '1' + }, + { + 'storageLocation': '窑前货位13', + 'vehicleCode': '5674', + 'pointStatus': '2' + }, + { + 'materialName': '物料15', + 'warehousingTime': '2023-08-18 16:32:42', + 'qty': '100', + 'storageLocation': '窑前货位15', + 'vehicleCode': '7733', + 'materialCode': 'WL15', + 'pointStatus': '3' + }, + { + 'materialName': '物料17', + 'warehousingTime': '2023-08-18 16:32:42', + 'qty': '106', + 'storageLocation': '窑前货位17', + 'vehicleCode': '5738', + 'materialCode': 'WL17', + 'pointStatus': '3' + }, + { + 'storageLocation': '窑前货位19', + 'vehicleCode': '3764', + 'pointStatus': '2' + }, + { + 'materialName': '物料21', + 'warehousingTime': '2023-08-18 16:32:42', + 'qty': '167', + 'storageLocation': '窑前货位21', + 'vehicleCode': '2319', + 'materialCode': 'WL21', + 'pointStatus': '3' + }, + { + 'storageLocation': '窑前货位23', + 'pointStatus': '1' + }, + { + 'storageLocation': '窑前货位25', + 'vehicleCode': '3708', + 'pointStatus': '2' + }, + { + 'storageLocation': '窑前货位27', + 'pointStatus': '1' + }, + { + 'storageLocation': '窑前货位2', + 'vehicleCode': '6423', + 'pointStatus': '2' + }, + { + 'storageLocation': '窑前货位4', + 'vehicleCode': '3175', + 'pointStatus': '2' + }, + { + 'storageLocation': '窑前货位6', + 'pointStatus': '1' + }, + { + 'storageLocation': '窑前货位8', + 'vehicleCode': '7979', + 'pointStatus': '2' + }, + { + 'storageLocation': '窑前货位10', + 'vehicleCode': '7586', + 'pointStatus': '2' + }, + { + 'storageLocation': '窑前货位12', + 'vehicleCode': '6787', + 'pointStatus': '2' + }, + { + 'storageLocation': '窑前货位14', + 'pointStatus': '1' + }, + { + 'materialName': '物料16', + 'warehousingTime': '2023-08-18 16:32:42', + 'qty': '188', + 'storageLocation': '窑前货位16', + 'vehicleCode': '3036', + 'materialCode': 'WL16', + 'pointStatus': '3' + }, + { + 'materialName': '物料18', + 'warehousingTime': '2023-08-18 16:32:42', + 'qty': '40', + 'storageLocation': '窑前货位18', + 'vehicleCode': '0421', + 'materialCode': 'WL18', + 'pointStatus': '3' + }, + { + 'storageLocation': '窑前货位20', + 'vehicleCode': '0862', + 'pointStatus': '2' + }, + { + 'storageLocation': '窑前货位22', + 'vehicleCode': '8242', + 'pointStatus': '2' + }, + { + 'storageLocation': '窑前货位24', + 'vehicleCode': '9956', + 'pointStatus': '2' + }, + { + 'materialName': '物料26', + 'warehousingTime': '2023-08-18 16:32:42', + 'qty': '23', + 'storageLocation': '窑前货位26', + 'vehicleCode': '2491', + 'materialCode': 'WL26', + 'pointStatus': '3' + }, + { + 'storageLocation': '窑前货位28', + 'pointStatus': '1' + } + ], + 'standMonitor': [ + { + 'storageLocation': '1号位', + 'vehicleCode': '7157', + 'pointStatus': '2' + }, + { + 'materialName': '物料2', + 'warehousingTime': '2023-08-18 16:32:42', + 'standTime': '1', + 'storageLocation': '2号位', + 'vehicleCode': '4357', + 'weight': '647', + 'materialCode': 'WL02', + 'pointStatus': '3', + 'standStatus': '2' + }, + { + 'materialName': '物料3', + 'warehousingTime': '2023-08-18 16:32:42', + 'standTime': '1', + 'storageLocation': '3号位', + 'vehicleCode': '9488', + 'weight': '197', + 'materialCode': 'WL03', + 'pointStatus': '3', + 'standStatus': '3' + }, + { + 'materialName': '物料4', + 'warehousingTime': '2023-08-18 16:32:42', + 'standTime': '1', + 'storageLocation': '4号位', + 'vehicleCode': '0904', + 'weight': '732', + 'materialCode': 'WL04', + 'pointStatus': '3', + 'standStatus': '5' + }, + { + 'storageLocation': '5号位', + 'vehicleCode': '4132', + 'pointStatus': '2' + }, + { + 'storageLocation': '6号位', + 'pointStatus': '1' + }, + { + 'materialName': '物料7', + 'warehousingTime': '2023-08-18 16:32:42', + 'standTime': '1', + 'storageLocation': '7号位', + 'vehicleCode': '3561', + 'weight': '532', + 'materialCode': 'WL07', + 'pointStatus': '3', + 'standStatus': '3' + }, + { + 'storageLocation': '8号位', + 'vehicleCode': '2497', + 'pointStatus': '2' + }, + { + 'materialName': '物料9', + 'warehousingTime': '2023-08-18 16:32:42', + 'standTime': '1', + 'storageLocation': '9号位', + 'vehicleCode': '0441', + 'weight': '446', + 'materialCode': 'WL09', + 'pointStatus': '3', + 'standStatus': '5' + }, + { + 'materialName': '物料10', + 'warehousingTime': '2023-08-18 16:32:42', + 'standTime': '1', + 'storageLocation': '10号位', + 'vehicleCode': '6821', + 'weight': '1727', + 'materialCode': 'WL10', + 'pointStatus': '3', + 'standStatus': '3' + }, + { + 'storageLocation': '11号位', + 'vehicleCode': '1889', + 'pointStatus': '2' + }, + { + 'materialName': '物料12', + 'warehousingTime': '2023-08-18 16:32:42', + 'standTime': '1', + 'storageLocation': '12号位', + 'vehicleCode': '6197', + 'weight': '613', + 'materialCode': 'WL12', + 'pointStatus': '3', + 'standStatus': '2' + }, + { + 'materialName': '物料13', + 'warehousingTime': '2023-08-18 16:32:42', + 'standTime': '1', + 'storageLocation': '13号位', + 'vehicleCode': '8417', + 'weight': '606', + 'materialCode': 'WL13', + 'pointStatus': '3', + 'standStatus': '4' + }, + { + 'storageLocation': '14号位', + 'vehicleCode': '5924', + 'pointStatus': '2' + }, + { + 'storageLocation': '15号位', + 'pointStatus': '1' + }, + { + 'materialName': '物料16', + 'warehousingTime': '2023-08-18 16:32:42', + 'standTime': '1', + 'storageLocation': '16号位', + 'vehicleCode': '2156', + 'weight': '593', + 'materialCode': 'WL16', + 'pointStatus': '3', + 'standStatus': '4' + }, + { + 'materialName': '物料17', + 'warehousingTime': '2023-08-18 16:32:42', + 'standTime': '1', + 'storageLocation': '17号位', + 'vehicleCode': '2749', + 'weight': '1303', + 'materialCode': 'WL17', + 'pointStatus': '3', + 'standStatus': '4' + }, + { + 'storageLocation': '18号位', + 'pointStatus': '1' + }, + { + 'storageLocation': '19号位', + 'pointStatus': '1' + }, + { + 'storageLocation': '20号位', + 'vehicleCode': '4694', + 'pointStatus': '2' + }, + { + 'storageLocation': '21号位', + 'vehicleCode': '3499', + 'pointStatus': '2' + }, + { + 'storageLocation': '22号位', + 'vehicleCode': '3820', + 'pointStatus': '2' + }, + { + 'materialName': '物料23', + 'warehousingTime': '2023-08-18 16:32:42', + 'standTime': '1', + 'storageLocation': '23号位', + 'vehicleCode': '6429', + 'weight': '1374', + 'materialCode': 'WL23', + 'pointStatus': '3', + 'standStatus': '4' + }, + { + 'storageLocation': '24号位', + 'vehicleCode': '6774', + 'pointStatus': '2' + }, + { + 'storageLocation': '25号位', + 'vehicleCode': '4215', + 'pointStatus': '2' + }, + { + 'storageLocation': '26号位', + 'pointStatus': '1' + }, + { + 'storageLocation': '27号位', + 'pointStatus': '1' + }, + { + 'storageLocation': '28号位', + 'vehicleCode': '9671', + 'pointStatus': '2' + }, + { + 'storageLocation': '29号位', + 'vehicleCode': '2325', + 'pointStatus': '2' + }, + { + 'storageLocation': '30号位', + 'vehicleCode': '5968', + 'pointStatus': '2' + }, + { + 'materialName': '物料31', + 'warehousingTime': '2023-08-18 16:32:42', + 'standTime': '1', + 'storageLocation': '31号位', + 'vehicleCode': '4540', + 'weight': '1286', + 'materialCode': 'WL31', + 'pointStatus': '3', + 'standStatus': '4' + }, + { + 'storageLocation': '32号位', + 'pointStatus': '1' + }, + { + 'storageLocation': '33号位', + 'vehicleCode': '4572', + 'pointStatus': '2' + }, + { + 'storageLocation': '34号位', + 'pointStatus': '1' + }, + { + 'storageLocation': '35号位', + 'vehicleCode': '6034', + 'pointStatus': '2' + }, + { + 'storageLocation': '36号位', + 'pointStatus': '1' + }, + { + 'materialName': '物料37', + 'warehousingTime': '2023-08-18 16:32:42', + 'standTime': '1', + 'storageLocation': '37号位', + 'vehicleCode': '8184', + 'weight': '328', + 'materialCode': 'WL37', + 'pointStatus': '3', + 'standStatus': '1' + }, + { + 'storageLocation': '38号位', + 'vehicleCode': '0730', + 'pointStatus': '2' + }, + { + 'storageLocation': '39号位', + 'pointStatus': '1' + }, + { + 'storageLocation': '40号位', + 'vehicleCode': '6862', + 'pointStatus': '2' + }, + { + 'storageLocation': '41号位', + 'vehicleCode': '2288', + 'pointStatus': '2' + } + ], + 'standStock': [ + { + 'materialName': '物料2', + 'warehousingTime': '2023-08-18 16:32:42', + 'standTime': '1', + 'storageLocation': '2号位', + 'vehicleCode': '4357', + 'weight': '647', + 'materialCode': 'WL02', + 'pointStatus': '3', + 'standStatus': '2' + }, + { + 'materialName': '物料3', + 'warehousingTime': '2023-08-18 16:32:42', + 'standTime': '1', + 'storageLocation': '3号位', + 'vehicleCode': '9488', + 'weight': '197', + 'materialCode': 'WL03', + 'pointStatus': '3', + 'standStatus': '3' + }, + { + 'materialName': '物料4', + 'warehousingTime': '2023-08-18 16:32:42', + 'standTime': '1', + 'storageLocation': '4号位', + 'vehicleCode': '0904', + 'weight': '732', + 'materialCode': 'WL04', + 'pointStatus': '3', + 'standStatus': '5' + }, + { + 'materialName': '物料7', + 'warehousingTime': '2023-08-18 16:32:42', + 'standTime': '1', + 'storageLocation': '7号位', + 'vehicleCode': '3561', + 'weight': '532', + 'materialCode': 'WL07', + 'pointStatus': '3', + 'standStatus': '3' + }, + { + 'materialName': '物料9', + 'warehousingTime': '2023-08-18 16:32:42', + 'standTime': '1', + 'storageLocation': '9号位', + 'vehicleCode': '0441', + 'weight': '446', + 'materialCode': 'WL09', + 'pointStatus': '3', + 'standStatus': '5' + }, + { + 'materialName': '物料10', + 'warehousingTime': '2023-08-18 16:32:42', + 'standTime': '1', + 'storageLocation': '10号位', + 'vehicleCode': '6821', + 'weight': '1727', + 'materialCode': 'WL10', + 'pointStatus': '3', + 'standStatus': '3' + }, + { + 'materialName': '物料12', + 'warehousingTime': '2023-08-18 16:32:42', + 'standTime': '1', + 'storageLocation': '12号位', + 'vehicleCode': '6197', + 'weight': '613', + 'materialCode': 'WL12', + 'pointStatus': '3', + 'standStatus': '2' + }, + { + 'materialName': '物料13', + 'warehousingTime': '2023-08-18 16:32:42', + 'standTime': '1', + 'storageLocation': '13号位', + 'vehicleCode': '8417', + 'weight': '606', + 'materialCode': 'WL13', + 'pointStatus': '3', + 'standStatus': '4' + }, + { + 'materialName': '物料16', + 'warehousingTime': '2023-08-18 16:32:42', + 'standTime': '1', + 'storageLocation': '16号位', + 'vehicleCode': '2156', + 'weight': '593', + 'materialCode': 'WL16', + 'pointStatus': '3', + 'standStatus': '4' + }, + { + 'materialName': '物料17', + 'warehousingTime': '2023-08-18 16:32:42', + 'standTime': '1', + 'storageLocation': '17号位', + 'vehicleCode': '2749', + 'weight': '1303', + 'materialCode': 'WL17', + 'pointStatus': '3', + 'standStatus': '4' + }, + { + 'materialName': '物料23', + 'warehousingTime': '2023-08-18 16:32:42', + 'standTime': '1', + 'storageLocation': '23号位', + 'vehicleCode': '6429', + 'weight': '1374', + 'materialCode': 'WL23', + 'pointStatus': '3', + 'standStatus': '4' + }, + { + 'materialName': '物料31', + 'warehousingTime': '2023-08-18 16:32:42', + 'standTime': '1', + 'storageLocation': '31号位', + 'vehicleCode': '4540', + 'weight': '1286', + 'materialCode': 'WL31', + 'pointStatus': '3', + 'standStatus': '4' + }, + { + 'materialName': '物料37', + 'warehousingTime': '2023-08-18 16:32:42', + 'standTime': '1', + 'storageLocation': '37号位', + 'vehicleCode': '8184', + 'weight': '328', + 'materialCode': 'WL37', + 'pointStatus': '3', + 'standStatus': '1' + } + ] } return res } diff --git a/src/main.js b/src/main.js index b9f87f0..232f7f8 100644 --- a/src/main.js +++ b/src/main.js @@ -5,6 +5,7 @@ import router from './router' import store from './vuex/store' import '@css/reset.css' import '@css/layout.styl' +import '@css/layout2.styl' // import '@js/rem.js' import filter from '@js/filter.js' import { Dialog, toast } from '@js/mUtils.js' diff --git a/src/pages/shunhe/ProdCount.vue b/src/pages/shunhe/ProdCount.vue index f665e2c..e4b724f 100644 --- a/src/pages/shunhe/ProdCount.vue +++ b/src/pages/shunhe/ProdCount.vue @@ -1,6 +1,6 @@