|
|
@@ -418,7 +418,7 @@
|
|
|
|
|
|
<q-table
|
|
|
v-if="checkResult?.details?.location_errors?.length"
|
|
|
- :rows="checkResult.details.location_errors"
|
|
|
+ :data="checkResult.details.location_errors"
|
|
|
:columns="checkColumns"
|
|
|
row-key="location_id"
|
|
|
flat
|
|
|
@@ -985,6 +985,9 @@ export default {
|
|
|
? "storage"
|
|
|
: "corridor";
|
|
|
this.showInventoryDetails = true;
|
|
|
+ this.$nextTick(() => {
|
|
|
+ this.$refs.goodscard.handleclick();
|
|
|
+ });
|
|
|
},
|
|
|
|
|
|
openLocationDetail(row) {
|
|
|
@@ -1203,6 +1206,11 @@ export default {
|
|
|
this.select_Inventory.goods_data =
|
|
|
this.goodsMap[`${row}-${col}-${layer}`];
|
|
|
this.showInventoryDetails = true;
|
|
|
+ // console.log("Clicked bin:", row, col, layer);
|
|
|
+ // console.log("Clicked bin true:", this.showInventoryDetails);
|
|
|
+ this.$nextTick(() => {
|
|
|
+ this.$refs.goodscard.handleclick();
|
|
|
+ });
|
|
|
},
|
|
|
|
|
|
handleShelfDown() {
|
|
|
@@ -1340,6 +1348,7 @@ export default {
|
|
|
</script>
|
|
|
|
|
|
<style scoped>
|
|
|
+
|
|
|
/* 新增布局容器样式 */
|
|
|
.layout-container {
|
|
|
display: flex;
|