This commit is contained in:
parent
fc275d9274
commit
966831b6d3
|
@ -49,7 +49,6 @@ async function getSupplierConsumptionData() {
|
||||||
}
|
}
|
||||||
|
|
||||||
const rows = computed(() => {
|
const rows = computed(() => {
|
||||||
console.log(store.data);
|
|
||||||
return totalEntryPrice(store.data) || [];
|
return totalEntryPrice(store.data) || [];
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -118,9 +117,6 @@ const totalEntryPrice = (rows) => {
|
||||||
return rows;
|
return rows;
|
||||||
};
|
};
|
||||||
|
|
||||||
totalEntryPrice(rows.value);
|
|
||||||
console.log('row', rows.value);
|
|
||||||
|
|
||||||
onMounted(async () => {
|
onMounted(async () => {
|
||||||
stateStore.rightDrawer = true;
|
stateStore.rightDrawer = true;
|
||||||
await getSupplierConsumptionData();
|
await getSupplierConsumptionData();
|
||||||
|
|
Loading…
Reference in New Issue