| | |
| | | > |
| | | <div v-if="drawerLocNoData!=null"> |
| | | <div style="margin: 10px;"> |
| | | <div style="margin-top: 5px;">X:{{drawerLocNoData.x}}</div> |
| | | <div style="margin-top: 5px;">Y:{{drawerLocNoData.y}}</div> |
| | | <div style="margin-top: 5px;">Z:{{drawerLocNoData.z}}</div> |
| | | <div style="margin-top: 5px;">排:{{drawerLocNoData.row}}</div> |
| | | <div style="margin-top: 5px;">列:{{drawerLocNoData.bay}}</div> |
| | | <div style="margin-top: 5px;">层:{{drawerLocNoData.lev}}</div> |
| | | <div style="margin-top: 5px;">库位号:{{drawerLocNoData.locNo}}</div> |
| | | <div style="margin-top: 5px;">库位状态:{{drawerLocNoData.locSts}}</div> |
| | | </div> |
| | |
| | | }, |
| | | rightEvent(x, y, e) { |
| | | this.drawerLocNo = true |
| | | this.drawerLocNoData = {x:x, y: y, z: this.currentLev, locNo: this.map[x][y].locNo, locSts: this.map[x][y].locSts}; |
| | | this.drawerLocNoData = {x:x, y: y, z: this.currentLev, locNo: this.map[x][y].locNo, |
| | | locSts: this.map[x][y].locSts,row:this.map[x][y].row, bay: this.map[x][y].bay, lev: this.currentLev}; |
| | | }, |
| | | findDiffList(arr1, arr2) { |
| | | let diff = [] |