|
|
@ -96,7 +96,7 @@ |
|
|
|
@success="getList" |
|
|
|
:tableAllSchemas="detailListTableColumns" |
|
|
|
:tableFormRules="ProductreceiptRequestLabelRules" |
|
|
|
:tableData="detatableData.tableList" |
|
|
|
:tableData="detatableData" |
|
|
|
:isBusiness="true" |
|
|
|
:isShowButton="false" |
|
|
|
@handleAddTable="handleAddTable" |
|
|
@ -187,12 +187,16 @@ const buttondataTable = ref([{ |
|
|
|
const detailListTableColumns = ProductreceiptRequestLabel.allSchemas |
|
|
|
const isCreateLabel = ref(false) |
|
|
|
const formLabelRef = ref() |
|
|
|
const labelType = ref('') // 标签类别 采购还是制造等 |
|
|
|
const { tableObject: detatableData, tableMethods: detatableMethods } =useTable({ |
|
|
|
getListApi: ProductreceiptRequestDetailApi.getProductreceiptRequestDetailPageAssemble |
|
|
|
}) |
|
|
|
const { getList:getDetailList } = detatableMethods |
|
|
|
|
|
|
|
const labelType = ref('') // 标签类别 采购还是制造等 |
|
|
|
// const { tableObject: detatableData, tableMethods: detatableMethods } =useTable({ |
|
|
|
// getListApi: ProductreceiptRequestDetailApi.getProductreceiptRequestDetailPageAssemble |
|
|
|
// }) |
|
|
|
// const { getList:getDetailList } = detatableMethods |
|
|
|
// 获取创建标签上数据 |
|
|
|
const detatableData =ref([]) |
|
|
|
const getProductreceiptRequestDetailAllList =async (number) => { |
|
|
|
detatableData.value = await ProductreceiptRequestDetailApi.getProductreceiptRequestDetailAllList(number) |
|
|
|
} |
|
|
|
// Bom查看 |
|
|
|
const DialogTitle = ref('Bom信息') |
|
|
|
const bomModelVisible = ref(false) |
|
|
@ -459,10 +463,10 @@ const buttonTableClick = async (val, row) => { |
|
|
|
message.warning('已创建过标签!!!') |
|
|
|
return |
|
|
|
} |
|
|
|
detatableData.params = { |
|
|
|
masterId:row.masterId |
|
|
|
} |
|
|
|
await getDetailList() |
|
|
|
// detatableData.params = { |
|
|
|
// masterId:row.masterId |
|
|
|
// } |
|
|
|
await getProductreceiptRequestDetailAllList(row.number) |
|
|
|
// 打开创建标签页面 |
|
|
|
// dialogVisible.value = true |
|
|
|
formLabelRef.value.open('create', row) |
|
|
|