Browse Source

完善

master
yunuo970428 11 hours ago
parent
commit
045196ca3b
  1. 8
      yxt-as-ui/src/views/storage/stocktaking/stocktakingInfo.vue

8
yxt-as-ui/src/views/storage/stocktaking/stocktakingInfo.vue

@ -27,7 +27,7 @@
</el-form-item>
<el-form-item label="库位">
<el-select v-model="queryParams.params.warehouseRackSid" filterable clearable placeholder="请选择" style="width:100%" @focus="getWarehouseRackList">
<el-option v-for="item in warehouseRackCodeList" :key="item.sid" :label="item.rackCode" :value="item.sid">
<el-option v-for="item in warehouseRackList" :key="item.sid" :label="item.rackCode" :value="item.sid">
</el-option>
</el-select>
</el-form-item>
@ -62,7 +62,7 @@
<el-table-column prop="warehouseName" label="仓库" width="120" align="center" />
<el-table-column prop="warehouseZoneName" label="区域" width="120" align="center" />
<el-table-column prop="warehouseArea" label="库区" width="120" align="center" />
<el-table-column prop="warehouseRackName" label="库位" width="120" align="center" />
<el-table-column prop="warehouseRackCode" label="库位" width="120" align="center" />
<el-table-column prop="unit" label="单位" width="120" align="center" />
<el-table-column prop="cost" label="单价" width="120" align="center" />
<el-table-column prop="bookCount" label="库存数量" width="120" align="center" />
@ -173,11 +173,11 @@ export default {
if (this.queryParams.params.warehouseZoneSid !== '') {
getAllWarehouseareaByZoneSid({ qySid: this.queryParams.params.warehouseZoneSid }).then((res) => {
if (res.success) {
this.wareAreaList = res.data
this.warehouseAreaList = res.data
}
})
} else {
this.wareAreaList = []
this.warehouseAreaList = []
}
},
getWarehouseRackList() {

Loading…
Cancel
Save