diff --git a/src/views/login/index.vue b/src/views/login/index.vue index 7ace6530..279badd2 100644 --- a/src/views/login/index.vue +++ b/src/views/login/index.vue @@ -262,7 +262,7 @@ export default { this.setLanguage("en"); this.$updateDictionary(); } else { - if (this.location === "USA") { + if (this.location === "USA" || this.NODE_ENV === "usa") { this.$i18n.locale = "en"; this.setLanguage("en"); this.$updateDictionary(); diff --git a/src/views/trials/trials-panel/visit/crc-upload/components/uploadDicomFiles2.vue b/src/views/trials/trials-panel/visit/crc-upload/components/uploadDicomFiles2.vue index cbe4b436..b8c700a2 100644 --- a/src/views/trials/trials-panel/visit/crc-upload/components/uploadDicomFiles2.vue +++ b/src/views/trials/trials-panel/visit/crc-upload/components/uploadDicomFiles2.vue @@ -882,7 +882,7 @@ export default { modality: this.studyForm.Modality, bodyPart: this.studyForm.BodyPart, }; - updateModality(this.data.TrialId, params) + updateModality(this.trialId, params) .then((res) => { this.btnLoading = false; if (res.IsSuccess) { diff --git a/src/views/trials/trials-panel/visit/crc-upload/index.vue b/src/views/trials/trials-panel/visit/crc-upload/index.vue index 8d534a8c..4cc834e9 100644 --- a/src/views/trials/trials-panel/visit/crc-upload/index.vue +++ b/src/views/trials/trials-panel/visit/crc-upload/index.vue @@ -308,6 +308,13 @@ {{ $fd('AuditStateRC', scope.row.AuditState*1) }} + + { + this.$emit("getList") + }) } else { // 没有后续质控任务 this.$emit("getList"); diff --git a/src/views/trials/trials-panel/visit/qc-check/index.vue b/src/views/trials/trials-panel/visit/qc-check/index.vue index 0cdb906b..68f34901 100644 --- a/src/views/trials/trials-panel/visit/qc-check/index.vue +++ b/src/views/trials/trials-panel/visit/qc-check/index.vue @@ -80,7 +80,17 @@ - + + + + @@ -309,6 +319,13 @@ {{ $fd('AuditStateRC', scope.row.AuditState*1) }} + + { IsUrgent: null, AuditStateArray: [], HandleUserId: '', + BeginAuditTime: null, + EndAuditTime: null, PageIndex: 1, PageSize: 20 // SortField: '', @@ -683,7 +702,8 @@ export default { trialCode: this.$route.query.trialCode, query: null, manualsDialog: { visible: false }, - isFullscreen: false + isFullscreen: false, + timeList: [] } }, watch: { @@ -822,6 +842,7 @@ export default { // 重置 handleReset() { this.searchData = searchDataDefault() + this.timeList = [] this.getList() this.$nextTick(() => { this.$refs.qcCheckList.clearSort() @@ -949,6 +970,15 @@ export default { this.qcVisible = false }) }, + changeTimeList() { + if (this.timeList) { + this.searchData.BeginAuditTime = this.timeList[0] + this.searchData.EndAuditTime = this.timeList[1] + } else { + this.searchData.BeginAuditTime = null + this.searchData.EndAuditTime = null + } + }, openManuals() { this.manualsDialog.visible = true }