pacs新增列表刷新
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
65da9636a2
commit
9b6f8717c3
|
@ -8,6 +8,7 @@ import store from '@/store';
|
||||||
let flag = {};
|
let flag = {};
|
||||||
export const resetFlag = () => {
|
export const resetFlag = () => {
|
||||||
flag = {};
|
flag = {};
|
||||||
|
store.state.trials.uploadTip = null;
|
||||||
if (store.state.trials.timer) {
|
if (store.state.trials.timer) {
|
||||||
clearInterval(store.state.trials.timer);
|
clearInterval(store.state.trials.timer);
|
||||||
store.state.trials.timer = null;
|
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"))
|
// 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);
|
let message = Vue.prototype.$t('trials:upload:tip:uploading').replace("xxx", res.OtherInfo.FileName);
|
||||||
store.state.trials.uploadTip = message;
|
store.state.trials.uploadTip = message;
|
||||||
console.log(store.state.trials.timer)
|
|
||||||
if (!store.state.trials.timer) {
|
if (!store.state.trials.timer) {
|
||||||
store.state.trials.timer = setInterval(() => {
|
store.state.trials.timer = setInterval(() => {
|
||||||
downloadImage(id, id2, IsDicom);
|
downloadImage(id, id2, IsDicom);
|
||||||
|
|
|
@ -883,6 +883,7 @@ export default {
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
getParentList() {
|
getParentList() {
|
||||||
|
this.getStudyInfo();
|
||||||
this.$emit("getList");
|
this.$emit("getList");
|
||||||
},
|
},
|
||||||
handleHistorical(row) {
|
handleHistorical(row) {
|
||||||
|
@ -946,7 +947,6 @@ export default {
|
||||||
this.trialBodyPartTypes = this.relationInfo.BodyPartTypes
|
this.trialBodyPartTypes = this.relationInfo.BodyPartTypes
|
||||||
? this.relationInfo.BodyPartTypes.split("|")
|
? this.relationInfo.BodyPartTypes.split("|")
|
||||||
: [];
|
: [];
|
||||||
console.log(this.trialBodyPartTypes);
|
|
||||||
this.trialModalitys = this.relationInfo.Modalitys
|
this.trialModalitys = this.relationInfo.Modalitys
|
||||||
? this.relationInfo.Modalitys.split("|")
|
? this.relationInfo.Modalitys.split("|")
|
||||||
: [];
|
: [];
|
||||||
|
|
Loading…
Reference in New Issue