分割字段变更SegmentMumber=>SegmentNumber
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
d80101f86b
commit
be137b3840
|
|
@ -677,7 +677,7 @@ export default {
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
NSTip() {
|
NSTip() {
|
||||||
return `NS: ${this.$store.state.trials.uploadTip}`
|
return `NS: ${this.$store.state.trials.downloadTip}`
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -928,7 +928,7 @@ export default {
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
NSTip() {
|
NSTip() {
|
||||||
return `NS: ${this.$store.state.trials.uploadTip}`
|
return `NS: ${this.$store.state.trials.downloadTip}`
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -75,7 +75,7 @@
|
||||||
<template slot="title">
|
<template slot="title">
|
||||||
<div class="SegmentTitle">
|
<div class="SegmentTitle">
|
||||||
{{ $t('trials:reading:Segmentations:title:Segment') }}
|
{{ $t('trials:reading:Segmentations:title:Segment') }}
|
||||||
<svg-icon icon-class="individuation" class="svg-icon" @click.stop="changeShowSegmentConfig" />
|
<svg-icon icon-class="individuation" class="svg-icon" style="margin-right: 10px;" @click.stop="changeShowSegmentConfig" />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<div class="addSegmentBox viewHover" @click.stop="addSegment" v-if="segmentList.length <= 0">
|
<div class="addSegmentBox viewHover" @click.stop="addSegment" v-if="segmentList.length <= 0">
|
||||||
|
|
@ -512,7 +512,7 @@ export default {
|
||||||
|
|
||||||
if (DATA) {
|
if (DATA) {
|
||||||
this.segmentationId = DATA.SegmentationId;
|
this.segmentationId = DATA.SegmentationId;
|
||||||
this.segmentIndex = DATA.SegmentMumber;
|
this.segmentIndex = DATA.SegmentNumber;
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
this.selectSegment(DATA)
|
this.selectSegment(DATA)
|
||||||
})
|
})
|
||||||
|
|
@ -534,7 +534,7 @@ export default {
|
||||||
item.bidirectional = bidirectional
|
item.bidirectional = bidirectional
|
||||||
if (DATA) {
|
if (DATA) {
|
||||||
this.segmentationId = DATA.SegmentationId;
|
this.segmentationId = DATA.SegmentationId;
|
||||||
this.segmentIndex = DATA.SegmentMumber;
|
this.segmentIndex = DATA.SegmentNumber;
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
this.selectSegment(DATA)
|
this.selectSegment(DATA)
|
||||||
})
|
})
|
||||||
|
|
@ -1598,7 +1598,7 @@ export default {
|
||||||
let o = obj.segments.find(i => i.id === s.Id)
|
let o = obj.segments.find(i => i.id === s.Id)
|
||||||
if (!o) {
|
if (!o) {
|
||||||
o = {
|
o = {
|
||||||
segmentIndex: s.SegmentMumber,
|
segmentIndex: s.SegmentNumber,
|
||||||
segmentationId: s.SegmentationId,
|
segmentationId: s.SegmentationId,
|
||||||
SegmentLabel: s.SegmentName,
|
SegmentLabel: s.SegmentName,
|
||||||
color: s.ColorRgb,
|
color: s.ColorRgb,
|
||||||
|
|
@ -1615,7 +1615,7 @@ export default {
|
||||||
this.lockSegment(o, true)
|
this.lockSegment(o, true)
|
||||||
}
|
}
|
||||||
if (!this.segmentIndex) {
|
if (!this.segmentIndex) {
|
||||||
this.segmentIndex = s.SegmentMumber
|
this.segmentIndex = s.SegmentNumber
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
|
|
@ -1660,7 +1660,7 @@ export default {
|
||||||
let data = {
|
let data = {
|
||||||
ColorRgb: color,
|
ColorRgb: color,
|
||||||
SegmentName: name,
|
SegmentName: name,
|
||||||
SegmentMumber: segmentIndex,
|
SegmentNumber: segmentIndex,
|
||||||
SegmentationId: segmentationId,
|
SegmentationId: segmentationId,
|
||||||
VisitTaskId: this.visitInfo.VisitTaskId,
|
VisitTaskId: this.visitInfo.VisitTaskId,
|
||||||
SegmentJson: segmentJson
|
SegmentJson: segmentJson
|
||||||
|
|
|
||||||
|
|
@ -720,7 +720,7 @@ export default {
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
NSTip() {
|
NSTip() {
|
||||||
return `NS: ${this.$store.state.trials.uploadTip}`
|
return `NS: ${this.$store.state.trials.downloadTip}`
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -491,7 +491,7 @@ export default {
|
||||||
segment[0].stats = obj.stats
|
segment[0].stats = obj.stats
|
||||||
segment[0].bidirectional = obj.bidirectional
|
segment[0].bidirectional = obj.bidirectional
|
||||||
segment[0].segmentationId = segment[0].SegmentationId
|
segment[0].segmentationId = segment[0].SegmentationId
|
||||||
segment[0].segmentIndex = segment[0].SegmentMumber
|
segment[0].segmentIndex = segment[0].SegmentNumber
|
||||||
}
|
}
|
||||||
let segmentGroup = await this.getSegmentationList(list[0].SegmentationId)
|
let segmentGroup = await this.getSegmentationList(list[0].SegmentationId)
|
||||||
this.$emit('viewCustomAnnotationSeries', {
|
this.$emit('viewCustomAnnotationSeries', {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue