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

Loading…
Cancel
Save