Browse Source

QMS来料检验申请,来料检验任务,来料检验记录中增加查看供应商履历表功能

master_hella
yufei_wang 13 hours ago
parent
commit
f89eebf11a
  1. 42
      src/views/wms/purchasereceiptManage/supplierdeliver/supplierResume/index.vue

42
src/views/wms/purchasereceiptManage/supplierdeliver/supplierResume/index.vue

@ -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…
Cancel
Save