分割字段变更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: {
|
||||
NSTip() {
|
||||
return `NS: ${this.$store.state.trials.uploadTip}`
|
||||
return `NS: ${this.$store.state.trials.downloadTip}`
|
||||
}
|
||||
},
|
||||
}
|
||||
|
|
|
|||
|
|
@ -928,7 +928,7 @@ export default {
|
|||
},
|
||||
computed: {
|
||||
NSTip() {
|
||||
return `NS: ${this.$store.state.trials.uploadTip}`
|
||||
return `NS: ${this.$store.state.trials.downloadTip}`
|
||||
}
|
||||
},
|
||||
}
|
||||
|
|
|
|||
|
|
@ -75,7 +75,7 @@
|
|||
<template slot="title">
|
||||
<div class="SegmentTitle">
|
||||
{{ $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>
|
||||
</template>
|
||||
<div class="addSegmentBox viewHover" @click.stop="addSegment" v-if="segmentList.length <= 0">
|
||||
|
|
@ -512,7 +512,7 @@ export default {
|
|||
|
||||
if (DATA) {
|
||||
this.segmentationId = DATA.SegmentationId;
|
||||
this.segmentIndex = DATA.SegmentMumber;
|
||||
this.segmentIndex = DATA.SegmentNumber;
|
||||
setTimeout(() => {
|
||||
this.selectSegment(DATA)
|
||||
})
|
||||
|
|
@ -534,7 +534,7 @@ export default {
|
|||
item.bidirectional = bidirectional
|
||||
if (DATA) {
|
||||
this.segmentationId = DATA.SegmentationId;
|
||||
this.segmentIndex = DATA.SegmentMumber;
|
||||
this.segmentIndex = DATA.SegmentNumber;
|
||||
setTimeout(() => {
|
||||
this.selectSegment(DATA)
|
||||
})
|
||||
|
|
@ -1598,7 +1598,7 @@ export default {
|
|||
let o = obj.segments.find(i => i.id === s.Id)
|
||||
if (!o) {
|
||||
o = {
|
||||
segmentIndex: s.SegmentMumber,
|
||||
segmentIndex: s.SegmentNumber,
|
||||
segmentationId: s.SegmentationId,
|
||||
SegmentLabel: s.SegmentName,
|
||||
color: s.ColorRgb,
|
||||
|
|
@ -1615,7 +1615,7 @@ export default {
|
|||
this.lockSegment(o, true)
|
||||
}
|
||||
if (!this.segmentIndex) {
|
||||
this.segmentIndex = s.SegmentMumber
|
||||
this.segmentIndex = s.SegmentNumber
|
||||
}
|
||||
})
|
||||
this.$nextTick(() => {
|
||||
|
|
@ -1660,7 +1660,7 @@ export default {
|
|||
let data = {
|
||||
ColorRgb: color,
|
||||
SegmentName: name,
|
||||
SegmentMumber: segmentIndex,
|
||||
SegmentNumber: segmentIndex,
|
||||
SegmentationId: segmentationId,
|
||||
VisitTaskId: this.visitInfo.VisitTaskId,
|
||||
SegmentJson: segmentJson
|
||||
|
|
|
|||
|
|
@ -720,7 +720,7 @@ export default {
|
|||
},
|
||||
computed: {
|
||||
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].bidirectional = obj.bidirectional
|
||||
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)
|
||||
this.$emit('viewCustomAnnotationSeries', {
|
||||
|
|
|
|||
Loading…
Reference in New Issue