diff --git a/src/api/trials.js b/src/api/trials.js index f7dc3fe4..289fd1df 100644 --- a/src/api/trials.js +++ b/src/api/trials.js @@ -4123,4 +4123,31 @@ export function addFolder(data) { method: 'post', data }) +} + + +// 配置-项目文档发布 +export function publishTrialDocument(data) { + return request({ + url: `/TrialDocument/publishTrialDocument`, + method: 'post', + data + }) +} + +// 配置-获取稽查管理列表 +export function getTrialShowInspection(data) { + return request({ + url: `/Inspection/getTrialShowInspection`, + method: 'post', + data + }) +} +// 配置-设置稽查管理配置 +export function setTrialShowInspection(data) { + return request({ + url: `/Inspection/setTrialShowInspection`, + method: 'post', + data + }) } \ No newline at end of file diff --git a/src/views/trials/trials-panel/setting/inspection/index.vue b/src/views/trials/trials-panel/setting/inspection/index.vue new file mode 100644 index 00000000..9bd4322d --- /dev/null +++ b/src/views/trials/trials-panel/setting/inspection/index.vue @@ -0,0 +1,194 @@ + + + + + + + {{ node.label }} + + + + + + + {{ $t('common:button:save') }} + + + + + + \ No newline at end of file