|
|
@ -75,10 +75,13 @@ |
|
|
|
:detailButtonIsShowEdit='false' |
|
|
|
:detailButtonIsShowAddStatusArray="[]" |
|
|
|
@searchTableSuccessDetail="searchTableSuccessDetail" |
|
|
|
:isChangeDetailDrawer="[]" |
|
|
|
:changeDetailDrawer="true" |
|
|
|
@detailOpenForm="detailOpenForm" |
|
|
|
/> |
|
|
|
|
|
|
|
<!-- :detailAllSchemas="SupplierAddrDeliTimeDetail.allSchemas" --> |
|
|
|
<SearchTable ref="searchTableRef" @searchTableSuccess="submitItem" /> |
|
|
|
<!-- 导入 --> |
|
|
|
<ImportForm ref="importFormRef" url="/wms/supplier-addr-deli-time-detail/import" :importTemplateData="importTemplateData" @success="importSuccess" /> |
|
|
|
</template> |
|
|
@ -406,6 +409,29 @@ const searchFormClick = (searchData) => { |
|
|
|
const tableSelectionDelete = (selection) => { |
|
|
|
tableData.value = tableData.value.filter((item) => !selection.includes(item)) |
|
|
|
} |
|
|
|
const searchTableRef = ref() |
|
|
|
const detailOpenForm = (type, row) => { |
|
|
|
searchTableRef.value.open( |
|
|
|
'选择设备保养项', |
|
|
|
SupplierAddrDeliTime.allSchemas, |
|
|
|
SupplierAddrDeliTimeDetailApi.getSupplierAddrDeliTimeDetailPage, |
|
|
|
null, |
|
|
|
SupplierAddrDeliTime.allSchemas.searchSchema, |
|
|
|
true, |
|
|
|
null, |
|
|
|
null, |
|
|
|
null, |
|
|
|
null, |
|
|
|
null |
|
|
|
// searchTableSelections.value |
|
|
|
) |
|
|
|
} |
|
|
|
const submitItem = async (formType, data, val, tableList) => { |
|
|
|
console.log('formType',formType) |
|
|
|
console.log('data',data) |
|
|
|
console.log('val',val) |
|
|
|
console.log('tableList',tableList) |
|
|
|
} |
|
|
|
/** 初始化 **/ |
|
|
|
onMounted(async () => { |
|
|
|
getList() |
|
|
|