| | |
| | | </div> |
| | | <div style="display:flex;align-items:center;margin-left:10px;"> |
| | | <div> |
| | | <span>库位描述:</span> |
| | | <span>库位名称:</span> |
| | | </div> |
| | | <div> |
| | | <el-input |
| | |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column type="index" width="50" label="序号"> </el-table-column> |
| | | <el-table-column prop="locationNo" label="库位号" align="center"> |
| | | <el-table-column prop="locNo" label="库位号" align="center"> |
| | | </el-table-column> |
| | | <el-table-column |
| | | prop="locationDesc" |
| | | label="库位描述" |
| | | prop="locName" |
| | | label="库位名称" |
| | | align="center" |
| | | show-overflow-tooltip |
| | | > |
| | | </el-table-column> |
| | | <el-table-column |
| | | prop="locationGroupDesc" |
| | | label="库位组描述" |
| | | prop="locType" |
| | | label="库位类型" |
| | | align="center" |
| | | show-overflow-tooltip |
| | | > |
| | | </el-table-column> |
| | | <el-table-column |
| | | prop="locationTypeDesc" |
| | | label="库位类型描述" |
| | | prop="ifsLocation" |
| | | label="ifs库位" |
| | | align="center" |
| | | show-overflow-tooltip |
| | | > |
| | | </el-table-column> |
| | | <el-table-column |
| | | prop="ifsLocationGroup" |
| | | label="ifs库位组" |
| | | align="center" |
| | | show-overflow-tooltip |
| | | > |
| | |
| | | locationNo: this.dataForm.locationNo, |
| | | locationDesc: this.dataForm.locationDesc |
| | | }).then((response) => { |
| | | if (response.data.code === 0) { |
| | | const _data = response.data.data.LIST_INFO |
| | | console.log(`output->_data`,_data) |
| | | if (response.data.code == 0) { |
| | | const _data = response.data.data |
| | | this.ifsLocationData = _data.map((item, index) => { |
| | | return { |
| | | id: index + 1, |
| | | locationNo: item.LOCATION_NO, |
| | | locationDesc: item.LOCATION_DESC, |
| | | locationGroupDesc: item.LOCATION_GROUP_DESC, |
| | | locationTypeDesc: item.LOCATION_TYPE_DESC, |
| | | locNo: item.locNo, |
| | | locName: item.locName, |
| | | locType: item.locType, |
| | | ifsLocation: item.ifsLocation, |
| | | ifsLocationGroup: item.ifsLocationGroup, |
| | | commonChecked: false |
| | | } |
| | | }) |
| | |
| | | this.detailList.forEach((item) => { |
| | | transportsDetails.push({ |
| | | id: item.id, |
| | | toIfsLocationName: this.currLocationRow.locationDesc, |
| | | toIfsLocationNo: this.currLocationRow.locationNo |
| | | toIfsLocationName: this.currLocationRow.locName, |
| | | toIfsLocationNo: this.currLocationRow.locNo |
| | | }) |
| | | }) |
| | | updateBatchPalletTransportsDetail(transportsDetails) |