|
|
|
@ -146,7 +146,7 @@ |
|
|
|
<button class="action-btn warning" style="flex: 0.3; margin: 0;" @click="showScanOutModal" :disabled="scanOutList.length === 0"> |
|
|
|
扫出({{scanOutList.length}}) |
|
|
|
</button> |
|
|
|
<button class="action-btn secondary" style="flex: 0.3; margin: 0;" @click="handleTransportOrder">运输</button> |
|
|
|
<button class="action-btn secondary" style="flex: 0.3; margin: 0;" @click="handleTransportOrder">运输入库</button> |
|
|
|
</div> |
|
|
|
<div class="list-title" style="flex: 0.5; margin: 0;"> |
|
|
|
<label style="margin-left: 5px;">条码数:{{detailList.length}}</label> |
|
|
|
@ -438,18 +438,25 @@ |
|
|
|
<!-- 目标区域选择 --> |
|
|
|
<div class="input-group"> |
|
|
|
<label class="input-label">目标区域</label> |
|
|
|
<el-select |
|
|
|
v-model="selectedTargetArea" |
|
|
|
placeholder="请选择目标区域" |
|
|
|
style="width: 100%;" |
|
|
|
> |
|
|
|
<el-option |
|
|
|
v-for="area in transportAreaOptions" |
|
|
|
:key="area.stationArea" |
|
|
|
:label="area.stationArea" |
|
|
|
:value="area.stationArea" |
|
|
|
/> |
|
|
|
</el-select> |
|
|
|
<el-input |
|
|
|
value="立库入口" |
|
|
|
placeholder="当前栈板位置" |
|
|
|
class="form-input" |
|
|
|
readonly |
|
|
|
/> |
|
|
|
<!-- <el-select--> |
|
|
|
<!-- v-model="selectedTargetArea"--> |
|
|
|
<!-- placeholder="请选择目标区域"--> |
|
|
|
<!-- disabled--> |
|
|
|
<!-- style="width: 100%;"--> |
|
|
|
<!-- >--> |
|
|
|
<!-- <el-option--> |
|
|
|
<!-- v-for="area in transportAreaOptions"--> |
|
|
|
<!-- :key="area.stationArea"--> |
|
|
|
<!-- :label="area.stationArea"--> |
|
|
|
<!-- :value="area.stationArea"--> |
|
|
|
<!-- />--> |
|
|
|
<!-- </el-select>--> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
|
|
|
|
@ -1484,11 +1491,12 @@ export default { |
|
|
|
this.$message.error('无法获取当前栈板位置'); |
|
|
|
return; |
|
|
|
} |
|
|
|
if (!this.selectedTargetArea) { |
|
|
|
this.$message.error('请选择目标区域'); |
|
|
|
return; |
|
|
|
} |
|
|
|
|
|
|
|
// if (!this.selectedTargetArea) { |
|
|
|
// this.$message.error('请选择目标区域'); |
|
|
|
// return; |
|
|
|
// } |
|
|
|
//默认写死入库 |
|
|
|
this.selectedTargetArea='Z103' |
|
|
|
// 设置loading状态,防止重复点击 |
|
|
|
this.transportTaskLoading = true; |
|
|
|
|
|
|
|
|