入库流程对接完毕

This commit is contained in:
zx
2026-04-03 08:38:34 +08:00
parent dde27ed688
commit ce6d5e5d6e
42 changed files with 3028 additions and 936 deletions

View File

@@ -0,0 +1,18 @@
<!-- 仓库信息选择 -->
<template>
<choose-list :isWarehousing="isWarehousing" :backStr="pathParams.backStr" :pathParams="pathParams" />
</template>
<script setup>
import { computed, ref } from 'vue'
import { onLoad } from "@dcloudio/uni-app";
import ChooseList from '../components/ChooseList.vue'
// 路径参数
const pathParams = ref('')
const isWarehousing = computed(() => pathParams.value.flag == 'warehousing')
// 接收路径参数
onLoad((options) => {
pathParams.value = options
})
</script>