diff --git a/src/utils/uploadZip.js b/src/utils/uploadZip.js index 436e292f..2ae9561f 100644 --- a/src/utils/uploadZip.js +++ b/src/utils/uploadZip.js @@ -8,6 +8,7 @@ import store from '@/store'; let flag = {}; export const resetFlag = () => { flag = {}; + store.state.trials.uploadTip = null; if (store.state.trials.timer) { clearInterval(store.state.trials.timer); store.state.trials.timer = null; @@ -30,7 +31,6 @@ export const downloadImage = async (id, id2, IsDicom = true) => { // Vue.prototype.$message.warning(Vue.prototype.$t("trials:upload:message:not")) let message = Vue.prototype.$t('trials:upload:tip:uploading').replace("xxx", res.OtherInfo.FileName); store.state.trials.uploadTip = message; - console.log(store.state.trials.timer) if (!store.state.trials.timer) { store.state.trials.timer = setInterval(() => { downloadImage(id, id2, IsDicom); 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 20b17fd3..9aec5cd7 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 @@ -883,6 +883,7 @@ export default { }, methods: { getParentList() { + this.getStudyInfo(); this.$emit("getList"); }, handleHistorical(row) { @@ -946,7 +947,6 @@ export default { this.trialBodyPartTypes = this.relationInfo.BodyPartTypes ? this.relationInfo.BodyPartTypes.split("|") : []; - console.log(this.trialBodyPartTypes); this.trialModalitys = this.relationInfo.Modalitys ? this.relationInfo.Modalitys.split("|") : [];