fix : 修复项目实施附件查询功能及上传附件页面初始

This commit is contained in:
2024-06-01 13:34:12 +08:00
parent f776f994ab
commit 7501c37379
14 changed files with 404 additions and 101 deletions

View File

@@ -115,9 +115,9 @@ const tableConfig = reactive({
// if (buttons.has("delete")) {
// btn.push({label: '删除',prem: ['mosr:requirement:del'], func: () => handleDelete(row), type: 'primary'})
// }
// if (buttons.has("report")) {
if (buttons.has("report")) {
btn.push({label: '需求上报', prem: ['mosr:requirement:info'], func: () => handleReport(row), type: 'primary'})
// }
}
return (
<div style={{width: '100%'}}>
{

View File

@@ -0,0 +1,11 @@
<template>
<tag-and-file-upload />
</template>
<script setup lang="jsx">
</script>
<style scoped>
</style>

View File

@@ -38,3 +38,11 @@ export const resubmitReported = (data) => {
data: data
});
};
export const getCollectAttachment = (params) => {
return request({
url: '/workflow/mosr/requirement/collect/attachments',
method: "get",
params:params
});
};

View File

@@ -0,0 +1,11 @@
<template>
<tag-and-file-upload />
</template>
<script setup lang="jsx">
</script>
<style scoped>
</style>