diff --git a/src/api/dictionary.js b/src/api/dictionary.js index 2f074edb..f52a4314 100644 --- a/src/api/dictionary.js +++ b/src/api/dictionary.js @@ -1357,6 +1357,37 @@ export function deleteAttachment(data) { data }) } +// 项目文档-获取历史记录列表 +export function getTrialHistoryRecordFileList(data) { + return request({ + url: `/TrialHistoryRecordFile/getTrialHistoryRecordFileList`, + method: 'post', + data + }) +} +// 项目文档-新增/修改历史记录 +export function addOrUpdateTrialHistoryRecordFile(data) { + return request({ + url: `/TrialHistoryRecordFile/addOrUpdateTrialHistoryRecordFile`, + method: 'post', + data + }) +} +// 项目文档-批量新增历史记录 +export function batchAddTrialHistoryRecordFile(data) { + return request({ + url: `/TrialHistoryRecordFile/batchAddTrialHistoryRecordFile`, + method: 'post', + data + }) +} +// 项目文档-删除历史记录 +export function deleteTrialHistoryRecordFile(id) { + return request({ + url: `/TrialHistoryRecordFile/deleteTrialHistoryRecordFile/${id}`, + method: 'delete', + }) +} // 邮件管理-批量修改邮件 export function batchUpdateEmail(data) { return request({ diff --git a/src/views/trials/trials-panel/trial-summary/trial-document/components/fileRecord/index.vue b/src/views/trials/trials-panel/trial-summary/trial-document/components/fileRecord/index.vue index f0b31b38..74974171 100644 --- a/src/views/trials/trials-panel/trial-summary/trial-document/components/fileRecord/index.vue +++ b/src/views/trials/trials-panel/trial-summary/trial-document/components/fileRecord/index.vue @@ -4,52 +4,25 @@ {{ TITLE }} - - - {{ item.label }} + + + {{ item.label }} - - - {{ item.label }} + + + {{ item.label }} - + {{ $t('common:button:edit') }} - + {{ $t('common:button:save') }} @@ -58,32 +31,14 @@ - - + + - + - + - + - + - + - - + + - - + + + - - \ No newline at end of file diff --git a/src/views/trials/trials-panel/trial-summary/trial-document/components/report_doc/form.vue b/src/views/trials/trials-panel/trial-summary/trial-document/components/report_doc/form.vue index 0a5e21e3..5668597c 100644 --- a/src/views/trials/trials-panel/trial-summary/trial-document/components/report_doc/form.vue +++ b/src/views/trials/trials-panel/trial-summary/trial-document/components/report_doc/form.vue @@ -1,131 +1,64 @@ -