| | |
| | | pageSize: this.pagerOptions.pageSize |
| | | }).then((res) => { |
| | | if (res.code === 200) { |
| | | // let arr=[] |
| | | res.data.map((item)=>{ |
| | | if(item.baseOperationType===1){ |
| | | item.baseOperationType="收货" |
| | | }else if(item.baseOperationType===2){ |
| | | item.baseOperationType="交货" |
| | | }else if(item.baseOperationType===3){ |
| | | item.baseOperationType="内部调拨" |
| | | }else if(item.baseOperationType===4){ |
| | | item.baseOperationType="报废" |
| | | }else if(item.baseOperationType===5){ |
| | | item.baseOperationType="库存盘点" |
| | | } |
| | | }) |
| | | this.tableList.tableInfomation = res.data |
| | | this.pagerOptions.totalCount = res.total |
| | | } |