zhaoxuebing
2 months ago
19 changed files with 159 additions and 29 deletions
@ -0,0 +1,42 @@ |
|||||
|
<template> |
||||
|
<div style="height:100%;overflow-y: auto;"> |
||||
|
<ContentWrap > |
||||
|
<Annex |
||||
|
:annexData="reportAnnex" |
||||
|
:showDownload = "true" |
||||
|
:showPreview="true" |
||||
|
:hiddenDelete = "true" |
||||
|
:upData="{ |
||||
|
tableId:30, |
||||
|
tableName:'SupplierdeliverInspectionDetail' |
||||
|
}" |
||||
|
:key="99" |
||||
|
:showAddBtn="false" |
||||
|
/> |
||||
|
</ContentWrap> |
||||
|
|
||||
|
</div> |
||||
|
|
||||
|
</template> |
||||
|
<script lang="ts" setup> |
||||
|
|
||||
|
// 查看履历表 supplierResume |
||||
|
import * as SupplierdeliverRequestMainApi from '@/api/wms/supplierdeliverRequestMain' |
||||
|
|
||||
|
import Annex from '@/components/Annex/src/Annex.vue' |
||||
|
defineOptions({ name: 'supplierResume' }) |
||||
|
const route = useRoute() // 路由 |
||||
|
const reportAnnex = reactive({ |
||||
|
annexList: [] |
||||
|
}) |
||||
|
|
||||
|
onMounted(() => { |
||||
|
getAnnexList() |
||||
|
}) |
||||
|
const getAnnexList = async () => { |
||||
|
let res = await SupplierdeliverRequestMainApi.querySupplierResume(route.query.asnNumber as string) |
||||
|
reportAnnex.annexList = res.fileList |
||||
|
} |
||||
|
</script> |
||||
|
<style lang="scss" scoped></style> |
||||
|
|
Loading…
Reference in new issue