diff --git a/src/api/trials.js b/src/api/trials.js index b71a3160..63c90aa4 100644 --- a/src/api/trials.js +++ b/src/api/trials.js @@ -4243,6 +4243,14 @@ export function getAuditRecordList(data) { data }) } +// 稽查管理-列表(EA) +export function getAuditRecordSelectList(data) { + return request({ + url: `/AuditDocument/getAuditRecordSelectList`, + method: 'post', + data + }) +} // 稽查管理-列表新增修改 export function addOrUpdateAuditRecord(data) { return request({ diff --git a/src/views/trials/trials-workbench/components/auditDocument/index.vue b/src/views/trials/trials-workbench/components/auditDocument/index.vue index 17ee9d8d..70529023 100644 --- a/src/views/trials/trials-workbench/components/auditDocument/index.vue +++ b/src/views/trials/trials-workbench/components/auditDocument/index.vue @@ -417,7 +417,11 @@ export default { this.searchData.IsAuthorization = null } if (this.AuditRecordId) this.searchData.AuditRecordId = this.AuditRecordId - if (!this.isAudit) this.searchData.IsCurrentAuditRecordAuthorization = true + if (!this.isAudit) { + this.searchData.IsCurrentAuditRecordAuthorization = true + } else { + this.searchData.IsCurrentAuditRecordAuthorization = null + } let res = await getAuditDocumentData(this.searchData) this.loading = false if (res.IsSuccess) { diff --git a/src/views/trials/trials-workbench/components/auditDocument/view.vue b/src/views/trials/trials-workbench/components/auditDocument/view.vue new file mode 100644 index 00000000..dd953668 --- /dev/null +++ b/src/views/trials/trials-workbench/components/auditDocument/view.vue @@ -0,0 +1,43 @@ + + + \ No newline at end of file diff --git a/src/views/trials/trials-workbench/components/inspectionManagement/dataForm.vue b/src/views/trials/trials-workbench/components/inspectionManagement/dataForm.vue index d01eb0c9..c637ea35 100644 --- a/src/views/trials/trials-workbench/components/inspectionManagement/dataForm.vue +++ b/src/views/trials/trials-workbench/components/inspectionManagement/dataForm.vue @@ -1,7 +1,7 @@