入库功能完成

This commit is contained in:
赵正易
2024-03-15 17:56:22 +08:00
parent b58b954436
commit 0da532301b
15 changed files with 1116 additions and 273 deletions

20
pages/demo/demo.vue Normal file
View File

@@ -0,0 +1,20 @@
<template>
<view class="content">
<packageCard></packageCard>
</view>
</template>
<script>
import packageCard from '@/components/package-card/package-card.vue'
export default {
components: {
packageCard
},
data() {
return {};
},
methods: {}
};
</script>
<style></style>