Compare commits
No commits in common. "2a68b40875c250ebf629734d2a960d29788960fb" and "efc3b03392ca99860bdbf41add02d200bc64fce9" have entirely different histories.
2a68b40875
...
efc3b03392
|
|
@ -446,7 +446,9 @@ export default {
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
this.stack.currentImageIdIndex = e.detail.newImageIdIndex
|
this.stack.currentImageIdIndex = e.detail.newImageIdIndex
|
||||||
this.height = this.getStackHeightPercent()
|
this.height =
|
||||||
|
(this.stack.currentImageIdIndex * 100) /
|
||||||
|
(this.stack.imageIds.length - 1)
|
||||||
// var priority = new Date(new Date().setHours(23, 59, 59, 999)).getTime()
|
// var priority = new Date(new Date().setHours(23, 59, 59, 999)).getTime()
|
||||||
|
|
||||||
// requestPoolManager.loadAndCacheImagePlus(this.stack.imageIds[this.stack.currentImageIdIndex], this.stack.seriesId, priority)
|
// requestPoolManager.loadAndCacheImagePlus(this.stack.imageIds[this.stack.currentImageIdIndex], this.stack.seriesId, priority)
|
||||||
|
|
|
||||||
|
|
@ -83,7 +83,6 @@ export default {
|
||||||
// document.cookie = 'TrialId=' + this.$route.query.trialId + ';path=/'
|
// document.cookie = 'TrialId=' + this.$route.query.trialId + ';path=/'
|
||||||
},
|
},
|
||||||
trialId(v) {
|
trialId(v) {
|
||||||
if (!this.$route.query.trialId) return
|
|
||||||
getUserDocumentList({ TrialId: this.$route.query.trialId }).then(async res => {
|
getUserDocumentList({ TrialId: this.$route.query.trialId }).then(async res => {
|
||||||
var total = res.OtherInfo.NeedSignCount
|
var total = res.OtherInfo.NeedSignCount
|
||||||
var TrialStatusStr = res.OtherInfo.TrialStatusStr
|
var TrialStatusStr = res.OtherInfo.TrialStatusStr
|
||||||
|
|
@ -101,7 +100,6 @@ export default {
|
||||||
if (~url.indexOf('?')) {
|
if (~url.indexOf('?')) {
|
||||||
query = url.split('?')[1]
|
query = url.split('?')[1]
|
||||||
}
|
}
|
||||||
if (this.$route.query.trialId) {
|
|
||||||
getUserDocumentList({ TrialId: this.$route.query.trialId }).then(async res => {
|
getUserDocumentList({ TrialId: this.$route.query.trialId }).then(async res => {
|
||||||
var total = res.OtherInfo.NeedSignCount
|
var total = res.OtherInfo.NeedSignCount
|
||||||
var TrialStatusStr = res.OtherInfo.TrialStatusStr
|
var TrialStatusStr = res.OtherInfo.TrialStatusStr
|
||||||
|
|
@ -111,7 +109,6 @@ export default {
|
||||||
await store.dispatch('user/setTrialStatusStr', TrialStatusStr)
|
await store.dispatch('user/setTrialStatusStr', TrialStatusStr)
|
||||||
this.TrialConfig = res.OtherInfo.TrialConfig
|
this.TrialConfig = res.OtherInfo.TrialConfig
|
||||||
})
|
})
|
||||||
}
|
|
||||||
this.selectedTab()
|
this.selectedTab()
|
||||||
this.getTrialList()
|
this.getTrialList()
|
||||||
var firstGoIn = this.trialsRouter.children.find(v => { return v.name === 'TrialsPanel' }).children[0]
|
var firstGoIn = this.trialsRouter.children.find(v => { return v.name === 'TrialsPanel' }).children[0]
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue