Browse Source

上架记录---主子表合并

master_hella_20240701
yufei0306 5 months ago
parent
commit
a08fdaa81b
  1. 5
      src/views/wms/purchasereceiptManage/putaway/putawayRecordMain/index.vue

5
src/views/wms/purchasereceiptManage/putaway/putawayRecordMain/index.vue

@ -1,7 +1,7 @@
<template> <template>
<ContentWrap> <ContentWrap>
<!-- 搜索工作栏 --> <!-- 搜索工作栏 -->
<Search :schema="PutawayRecordMain.allSchemas.searchSchema" @search="setSearchParams" @reset="setSearchParams" /> <Search :schema="[...PutawayRecordMain.allSchemas.searchSchema,...PutawayRecordDetail.allSchemas.searchSchema]" @search="setSearchParams" @reset="setSearchParams" />
</ContentWrap> </ContentWrap>
<!-- 列表头部 --> <!-- 列表头部 -->
@ -12,6 +12,7 @@
@updataTableColumns="updataTableColumns" @updataTableColumns="updataTableColumns"
@searchFormClick="searchFormClick" @searchFormClick="searchFormClick"
:allSchemas="PutawayRecordMain.allSchemas" :allSchemas="PutawayRecordMain.allSchemas"
:detailAllSchemas="PutawayRecordDetail.allSchemas"
/> />
<!-- 列表 --> <!-- 列表 -->
@ -99,7 +100,7 @@ const { t } = useI18n() // 国际化
const route = useRoute() // const route = useRoute() //
const routeName = ref() const routeName = ref()
routeName.value = route.name routeName.value = route.name
const tableColumns = ref(PutawayRecordMain.allSchemas.tableColumns) const tableColumns = ref([...PutawayRecordMain.allSchemas.tableColumns,...PutawayRecordDetail.allSchemas.tableMainColumns])
// //
const updataTableColumns = (val) => { const updataTableColumns = (val) => {

Loading…
Cancel
Save