Compare commits
No commits in common. "17b174a6a8f74b19fecb6882eed1313f4d80f1e9" and "a199e6c36883267748cea809a44bc4d6130b45b2" have entirely different histories.
17b174a6a8
...
a199e6c368
|
@ -696,26 +696,27 @@ export default {
|
||||||
if (isNotValidAnnotationNum === 0) {
|
if (isNotValidAnnotationNum === 0) {
|
||||||
this.onAnnotationModified(e)
|
this.onAnnotationModified(e)
|
||||||
} else {
|
} else {
|
||||||
// console.log('异常标记:', annotation)
|
// annotation.isInsideVolume = false
|
||||||
// const { remark } = annotation.data
|
console.log('异常标记:', annotation)
|
||||||
// if (remark === 'Liver' || remark === 'Mediastinum') {
|
|
||||||
// this.$refs['questions'].setOutsideMeasuredData(annotation)
|
|
||||||
// } else {
|
|
||||||
// this.$refs['tableQuestions'].setOutsideMeasuredData(annotation)
|
|
||||||
// }
|
|
||||||
// 移除标记
|
|
||||||
this.removeAnnotation({ otherMeasureData: annotation })
|
|
||||||
const { remark } = annotation.data
|
const { remark } = annotation.data
|
||||||
// 清除病灶上的标记信息
|
|
||||||
if (remark === 'Liver' || remark === 'Mediastinum') {
|
if (remark === 'Liver' || remark === 'Mediastinum') {
|
||||||
this.$refs['questions'].clearMeasuredData(remark)
|
this.$refs['questions'].setOutsideMeasuredData(annotation)
|
||||||
// 激活工具
|
|
||||||
this.setNonTargetMeasurementStatus({ status: true, toolName: 'CircleROI' })
|
|
||||||
} else {
|
} else {
|
||||||
this.$refs['tableQuestions'].clearMeasuredData()
|
this.$refs['tableQuestions'].setOutsideMeasuredData(annotation)
|
||||||
// 激活工具
|
|
||||||
this.setBasicToolActive('CircleROI')
|
|
||||||
}
|
}
|
||||||
|
// // 移除标记
|
||||||
|
// this.removeAnnotation({ otherMeasureData: annotation })
|
||||||
|
// const { remark } = annotation.data
|
||||||
|
// // 清除病灶上的标记信息
|
||||||
|
// if (remark === 'Liver' || remark === 'Mediastinum') {
|
||||||
|
// this.$refs['questions'].clearMeasuredData(remark)
|
||||||
|
// // 激活工具
|
||||||
|
// this.setNonTargetMeasurementStatus({ status: true, toolName: 'CircleROI' })
|
||||||
|
// } else {
|
||||||
|
// this.$refs['tableQuestions'].clearMeasuredData()
|
||||||
|
// // 激活工具
|
||||||
|
// this.setBasicToolActive('CircleROI')
|
||||||
|
// }
|
||||||
}
|
}
|
||||||
}, 120)
|
}, 120)
|
||||||
eventTarget.addEventListener(cornerstoneTools.Enums.Events.ANNOTATION_MODIFIED, (e) => {
|
eventTarget.addEventListener(cornerstoneTools.Enums.Events.ANNOTATION_MODIFIED, (e) => {
|
||||||
|
|
|
@ -57,8 +57,8 @@ export default {
|
||||||
lungSuvmaxId: '',
|
lungSuvmaxId: '',
|
||||||
suvmaxId: '',
|
suvmaxId: '',
|
||||||
questionFormChangeState: false,
|
questionFormChangeState: false,
|
||||||
questionFormChangeNum: 0,
|
questionFormChangeNum: 0
|
||||||
isInsideVolume: true
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
|
@ -188,17 +188,6 @@ export default {
|
||||||
handleSave() {
|
handleSave() {
|
||||||
this.$refs['questions'].validate((valid) => {
|
this.$refs['questions'].validate((valid) => {
|
||||||
if (!valid) return
|
if (!valid) return
|
||||||
if (!this.isInsideVolume) {
|
|
||||||
this.$alert('当前标记在图像外,不允许保存!', '提示', {
|
|
||||||
callback: action => {
|
|
||||||
this.$message({
|
|
||||||
type: 'info',
|
|
||||||
message: `action: ${action}`
|
|
||||||
})
|
|
||||||
}
|
|
||||||
})
|
|
||||||
return
|
|
||||||
}
|
|
||||||
// 肝脏血池SUVmax
|
// 肝脏血池SUVmax
|
||||||
const liverSUVmax = !isNaN(parseFloat(this.questionForm[this.liverSuvmaxId])) ? parseFloat(this.questionForm[this.liverSuvmaxId]) : 0
|
const liverSUVmax = !isNaN(parseFloat(this.questionForm[this.liverSuvmaxId])) ? parseFloat(this.questionForm[this.liverSuvmaxId]) : 0
|
||||||
// 纵膈血池SUVmax
|
// 纵膈血池SUVmax
|
||||||
|
@ -276,9 +265,7 @@ export default {
|
||||||
}
|
}
|
||||||
this.$emit('setNonTargetMeasurementStatus', { status: true, toolName: 'CircleROI' })
|
this.$emit('setNonTargetMeasurementStatus', { status: true, toolName: 'CircleROI' })
|
||||||
},
|
},
|
||||||
|
|
||||||
removeAnnotation(obj) {
|
removeAnnotation(obj) {
|
||||||
console.log('question_removeAnnotation')
|
|
||||||
const { Id } = obj
|
const { Id } = obj
|
||||||
var idx = this.measurements.findIndex(i => i.QuestionId === Id)
|
var idx = this.measurements.findIndex(i => i.QuestionId === Id)
|
||||||
if (idx === -1) return
|
if (idx === -1) return
|
||||||
|
@ -286,7 +273,6 @@ export default {
|
||||||
this.setpet5PS()
|
this.setpet5PS()
|
||||||
FusionEvent.$emit('removeAnnotation', { otherMeasureData: this.measurements[idx].OtherMeasureData, type: 'clear' })
|
FusionEvent.$emit('removeAnnotation', { otherMeasureData: this.measurements[idx].OtherMeasureData, type: 'clear' })
|
||||||
this.measurements.splice(idx, 1)
|
this.measurements.splice(idx, 1)
|
||||||
console.log( this.measurements)
|
|
||||||
this.questionFormChangeState = true
|
this.questionFormChangeState = true
|
||||||
},
|
},
|
||||||
locateAnnotation(obj) {
|
locateAnnotation(obj) {
|
||||||
|
@ -299,7 +285,6 @@ export default {
|
||||||
FusionEvent.$emit('imageLocation', { otherMeasureData: otherMeasureData })
|
FusionEvent.$emit('imageLocation', { otherMeasureData: otherMeasureData })
|
||||||
},
|
},
|
||||||
setMeasuredData(measurement) {
|
setMeasuredData(measurement) {
|
||||||
this.isInsideVolume = true
|
|
||||||
var idx = -1
|
var idx = -1
|
||||||
if (this.currentQsId) {
|
if (this.currentQsId) {
|
||||||
// 新增
|
// 新增
|
||||||
|
@ -331,39 +316,6 @@ export default {
|
||||||
FusionEvent.$emit('addOrUpdateAnnotations', { data })
|
FusionEvent.$emit('addOrUpdateAnnotations', { data })
|
||||||
this.questionFormChangeState = true
|
this.questionFormChangeState = true
|
||||||
},
|
},
|
||||||
setOutsideMeasuredData(measurement) {
|
|
||||||
this.isInsideVolume = false
|
|
||||||
var idx = -1
|
|
||||||
if (this.currentQsId) {
|
|
||||||
// 新增
|
|
||||||
idx = this.measurements.findIndex(i => i.QuestionId === this.currentQsId)
|
|
||||||
this.currentQsId = ''
|
|
||||||
} else {
|
|
||||||
// 编辑
|
|
||||||
idx = this.measurements.findIndex(i => i.OrderMarkName === measurement.data.remark)
|
|
||||||
}
|
|
||||||
if (idx === -1) return
|
|
||||||
var obj = this.measurements[idx]
|
|
||||||
var remark = obj.QuestionType === 51 ? 'Liver' : obj.QuestionType === 52 ? 'Mediastinum' : ''
|
|
||||||
measurement.data.remark = remark
|
|
||||||
this.measurements[idx].OtherMeasureData = measurement
|
|
||||||
this.measurements[idx].OtherMarkTool = measurement.metadata.toolName
|
|
||||||
|
|
||||||
// 添加标记
|
|
||||||
var data = {
|
|
||||||
OtherMeasureData: measurement,
|
|
||||||
QuestionId: obj.QuestionId,
|
|
||||||
VisitTaskId: this.visitTaskId,
|
|
||||||
OrderMarkName: remark
|
|
||||||
}
|
|
||||||
if (measurement.metadata.toolName === 'CircleROI') {
|
|
||||||
// const suvMax = measurement.suvMax
|
|
||||||
this.$set(this.questionForm, obj.QuestionId, null)
|
|
||||||
this.setpet5PS()
|
|
||||||
}
|
|
||||||
FusionEvent.$emit('addOrUpdateAnnotations', { data })
|
|
||||||
this.questionFormChangeState = true
|
|
||||||
},
|
|
||||||
clearMeasuredData(remark) {
|
clearMeasuredData(remark) {
|
||||||
var idx = this.measurements.findIndex(i => i.OrderMarkName === remark)
|
var idx = this.measurements.findIndex(i => i.OrderMarkName === remark)
|
||||||
if (idx === -1) return
|
if (idx === -1) return
|
||||||
|
|
|
@ -192,7 +192,7 @@
|
||||||
label="SUV测量截图"
|
label="SUV测量截图"
|
||||||
v-if="answers.OtherPicturePath"
|
v-if="answers.OtherPicturePath"
|
||||||
>
|
>
|
||||||
<img v-viewer style="width: 50px; height: 50px; cursor: pointer;" crossorigin="anonymous" :src="answers.OtherPicturePath" alt="Image" class="suv_viewer">
|
<img v-viewer style="width: 50px; height: 50px; cursor: pointer;" crossorigin="anonymous" :src="answers.OtherPicturePath" alt="Image">
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1808,11 +1808,6 @@ export default {
|
||||||
.input-width2{
|
.input-width2{
|
||||||
width: 100% !important;
|
width: 100% !important;
|
||||||
}
|
}
|
||||||
.suv_viewer{
|
|
||||||
/deep/ .viewer-play {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -341,12 +341,8 @@ export default {
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
formItemChange(v, question) {
|
formItemChange(v, question) {
|
||||||
// if (parseInt(v) !== 5) {
|
if (question.QuestionType === 49 && parseInt(v) !== 5) {
|
||||||
// return
|
return
|
||||||
// }
|
|
||||||
if(question.QuestionType === 49){
|
|
||||||
console.log(question,v)
|
|
||||||
this.$emit('setFormItemData', {key:question.Id,val:v})
|
|
||||||
}
|
}
|
||||||
if (question.Childrens.length > 0) {
|
if (question.Childrens.length > 0) {
|
||||||
this.resetChild(question.Childrens)
|
this.resetChild(question.Childrens)
|
||||||
|
|
|
@ -76,7 +76,6 @@ export default {
|
||||||
measurements: [],
|
measurements: [],
|
||||||
spleenStatusId: '',
|
spleenStatusId: '',
|
||||||
spleenLengthId: '',
|
spleenLengthId: '',
|
||||||
spleenCommentsId:'',
|
|
||||||
isBaseLineTask: false,
|
isBaseLineTask: false,
|
||||||
criterionType: null,
|
criterionType: null,
|
||||||
spleenInfo:null,
|
spleenInfo:null,
|
||||||
|
@ -94,6 +93,14 @@ export default {
|
||||||
if(this.isQulityIssues){
|
if(this.isQulityIssues){
|
||||||
DicomEvent.$emit('questionFormChange', true)
|
DicomEvent.$emit('questionFormChange', true)
|
||||||
}
|
}
|
||||||
|
// if(this.criterionType === 2 && this.groupClassify === 3 && this.calculateSpleenStatus && this.calculateSpleenStatus !== this.questionForm[this.spleenStatusId]){
|
||||||
|
// for (let i = 0; i < this.questions[0].Childrens.length; i++) {
|
||||||
|
// if (this.questions[0].Childrens[i].QuestionType === 49) {
|
||||||
|
// this.questions[0].Childrens[i].ShowQuestion = 2
|
||||||
|
// break
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
// }
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
currentReadingTaskState: {
|
currentReadingTaskState: {
|
||||||
|
@ -119,7 +126,6 @@ export default {
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
async getQuestions(visitTaskId) {
|
async getQuestions(visitTaskId) {
|
||||||
console.log('getQuestions')
|
|
||||||
this.visitTaskId = visitTaskId
|
this.visitTaskId = visitTaskId
|
||||||
// const loading = this.$loading({ fullscreen: true })
|
// const loading = this.$loading({ fullscreen: true })
|
||||||
var idx = this.visitTaskList.findIndex(i => i.VisitTaskId === visitTaskId)
|
var idx = this.visitTaskList.findIndex(i => i.VisitTaskId === visitTaskId)
|
||||||
|
@ -146,7 +152,7 @@ export default {
|
||||||
var v = questions[i]
|
var v = questions[i]
|
||||||
v.IsBaseLineTask = this.isBaseLineTask
|
v.IsBaseLineTask = this.isBaseLineTask
|
||||||
if (v.Type === 'group' && v.GroupClassify !== this.groupClassify) continue
|
if (v.Type === 'group' && v.GroupClassify !== this.groupClassify) continue
|
||||||
if (!v.IsPage && v.Type !== 'group' && v.Type !== 'summary' && i.Id) {
|
if (!v.IsPage && v.Type !== 'group' && v.Type !== 'summary') {
|
||||||
this.$set(this.questionForm, v.Id, v.Answer ? v.Answer : null)
|
this.$set(this.questionForm, v.Id, v.Answer ? v.Answer : null)
|
||||||
if (v.QuestionType === 44) {
|
if (v.QuestionType === 44) {
|
||||||
// 影像质量评估
|
// 影像质量评估
|
||||||
|
@ -160,10 +166,8 @@ export default {
|
||||||
if (v.QuestionType === 48) {
|
if (v.QuestionType === 48) {
|
||||||
// 脾脏长度
|
// 脾脏长度
|
||||||
this.spleenLengthId = v.Id
|
this.spleenLengthId = v.Id
|
||||||
}
|
this.calculateSpleenStatus = ''
|
||||||
if(v.QuestionType === 58){
|
this.setSpleenStatus(this.questionForm[this.spleenLengthId])
|
||||||
//修改脾脏状态备注
|
|
||||||
this.spleenCommentsId = v.Id
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (v.Childrens.length > 0) {
|
if (v.Childrens.length > 0) {
|
||||||
|
@ -173,10 +177,6 @@ export default {
|
||||||
}
|
}
|
||||||
// this.questions = questions
|
// this.questions = questions
|
||||||
}
|
}
|
||||||
if(this.spleenLengthId){
|
|
||||||
this.calculateSpleenStatus = this.setSpleenStatus(this.questionForm[this.spleenLengthId])
|
|
||||||
this.setSpleenCommentDisplay()
|
|
||||||
}
|
|
||||||
// loading.close()
|
// loading.close()
|
||||||
},
|
},
|
||||||
setChild(obj) {
|
setChild(obj) {
|
||||||
|
@ -196,11 +196,6 @@ export default {
|
||||||
if (i.QuestionType === 48) {
|
if (i.QuestionType === 48) {
|
||||||
// 脾脏长度
|
// 脾脏长度
|
||||||
this.spleenLengthId = i.Id
|
this.spleenLengthId = i.Id
|
||||||
|
|
||||||
}
|
|
||||||
if(i.QuestionType === 58){
|
|
||||||
//修改脾脏状态备注
|
|
||||||
this.spleenCommentsId = i.Id
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (i.Childrens && i.Childrens.length > 0) {
|
if (i.Childrens && i.Childrens.length > 0) {
|
||||||
|
@ -273,6 +268,7 @@ export default {
|
||||||
var trialId = this.$route.query.trialId
|
var trialId = this.$route.query.trialId
|
||||||
await store.dispatch('reading/refreshDicomReadingQuestionAnswer', { trialId: trialId, visitTaskId: this.visitTaskId })
|
await store.dispatch('reading/refreshDicomReadingQuestionAnswer', { trialId: trialId, visitTaskId: this.visitTaskId })
|
||||||
this.getQuestions(this.visitTaskId)
|
this.getQuestions(this.visitTaskId)
|
||||||
|
|
||||||
this.loading = false
|
this.loading = false
|
||||||
if(this.isQulityIssues){
|
if(this.isQulityIssues){
|
||||||
DicomEvent.$emit('questionFormChange', false)
|
DicomEvent.$emit('questionFormChange', false)
|
||||||
|
@ -296,24 +292,6 @@ export default {
|
||||||
this.loading = false
|
this.loading = false
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
setSpleenCommentDisplay(){
|
|
||||||
console.log('setSpleenCommentDisplay')
|
|
||||||
if( this.spleenCommentsId && this.spleenStatusId ){
|
|
||||||
for (let i = 0; i < this.questions[0].Childrens.length; i++) {
|
|
||||||
if (this.questions[0].Childrens[i].QuestionType === 58) {
|
|
||||||
if(this.calculateSpleenStatus && this.calculateSpleenStatus !== this.questionForm[this.spleenStatusId]){
|
|
||||||
this.questions[0].Childrens[i].ShowQuestion = 0
|
|
||||||
this.questions[0].Childrens[i].IsRequired = 0
|
|
||||||
}else{
|
|
||||||
this.questions[0].Childrens[i].ShowQuestion = 2
|
|
||||||
this.questions[0].Childrens[i].IsRequired = 3
|
|
||||||
this.questionForm[this.spleenCommentsId] = ''
|
|
||||||
}
|
|
||||||
break
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
async getSplenicState() {
|
async getSplenicState() {
|
||||||
try {
|
try {
|
||||||
var spleenLength = this.questionForm[this.spleenLengthId]
|
var spleenLength = this.questionForm[this.spleenLengthId]
|
||||||
|
@ -398,8 +376,6 @@ export default {
|
||||||
await store.dispatch('reading/removeNonTargetMeasuredData', { visitTaskId: this.visitTaskId, measureData: this.measurements[idx].MeasureData, questionId: Id })
|
await store.dispatch('reading/removeNonTargetMeasuredData', { visitTaskId: this.visitTaskId, measureData: this.measurements[idx].MeasureData, questionId: Id })
|
||||||
this.measurements.splice(idx, 1)
|
this.measurements.splice(idx, 1)
|
||||||
DicomEvent.$emit('getMeasureData')
|
DicomEvent.$emit('getMeasureData')
|
||||||
this.calculateSpleenStatus = ''
|
|
||||||
this.setSpleenCommentDisplay()
|
|
||||||
},
|
},
|
||||||
locateAnnotation(obj) {
|
locateAnnotation(obj) {
|
||||||
const { Id } = obj
|
const { Id } = obj
|
||||||
|
@ -448,9 +424,8 @@ export default {
|
||||||
const length = measurement.data.length ? measurement.data.length : null
|
const length = measurement.data.length ? measurement.data.length : null
|
||||||
this.$set(this.questionForm, this.measurements[idx].QuestionId, length || null)
|
this.$set(this.questionForm, this.measurements[idx].QuestionId, length || null)
|
||||||
if (this.measurements[idx].QuestionType === 48){
|
if (this.measurements[idx].QuestionType === 48){
|
||||||
var status = this.setSpleenStatus(length)
|
this.calculateSpleenStatus = ''
|
||||||
this.$set(this.questionForm, this.spleenStatusId, status)
|
this.setSpleenStatus(length)
|
||||||
this.calculateSpleenStatus = status
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// if (this.measurements[idx].QuestionType === 48 && length <= 130 && this.isBaseLineTask) {
|
// if (this.measurements[idx].QuestionType === 48 && length <= 130 && this.isBaseLineTask) {
|
||||||
|
@ -468,20 +443,17 @@ export default {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
setSpleenStatus(length){
|
setSpleenStatus(length){
|
||||||
var status = ''
|
|
||||||
if(length){
|
if(length){
|
||||||
if(this.isBaseLineTask){
|
if(this.isBaseLineTask){
|
||||||
// 直径≤130mm时,系统默认脾脏状态为“正常”
|
// 直径≤130mm时,系统默认脾脏状态为“正常”
|
||||||
if(length <= 130){
|
if(length <= 130){
|
||||||
// this.$set(this.questionForm, this.spleenStatusId, '1')
|
this.$set(this.questionForm, this.spleenStatusId, '1')
|
||||||
// this.calculateSpleenStatus = '1'
|
this.calculateSpleenStatus = '1'
|
||||||
status = '1'
|
|
||||||
}
|
}
|
||||||
// 直径>130mm时,系统默认脾脏状态为“肿大”
|
// 直径>130mm时,系统默认脾脏状态为“肿大”
|
||||||
if(length > 130){
|
if(length > 130){
|
||||||
// this.$set(this.questionForm, this.spleenStatusId, '6')
|
this.$set(this.questionForm, this.spleenStatusId, '6')
|
||||||
// this.calculateSpleenStatus = '6'
|
this.calculateSpleenStatus = '6'
|
||||||
status = '6'
|
|
||||||
}
|
}
|
||||||
}else{
|
}else{
|
||||||
// 与基线相比脾垂直径变化值
|
// 与基线相比脾垂直径变化值
|
||||||
|
@ -495,47 +467,40 @@ export default {
|
||||||
// 2、与基线相比脾垂直径变化值≥10 mm
|
// 2、与基线相比脾垂直径变化值≥10 mm
|
||||||
// 3、与基线相比脾肿大增加的百分比>50%
|
// 3、与基线相比脾肿大增加的百分比>50%
|
||||||
// 系统默认脾脏状态为“显著增大”
|
// 系统默认脾脏状态为“显著增大”
|
||||||
// this.$set(this.questionForm, this.spleenStatusId, '4')
|
this.$set(this.questionForm, this.spleenStatusId, '4')
|
||||||
// this.calculateSpleenStatus = '4'
|
this.calculateSpleenStatus = '4'
|
||||||
status = '4'
|
|
||||||
}else if( this.spleenInfo.BaseLineSpleenLength <= 130 && diffFromBaseline >= 20 && length > 130){
|
}else if( this.spleenInfo.BaseLineSpleenLength <= 130 && diffFromBaseline >= 20 && length > 130){
|
||||||
// 1、基线垂直径≤130mm
|
// 1、基线垂直径≤130mm
|
||||||
// 2、与基线相比脾垂直径变化值≥20 mm
|
// 2、与基线相比脾垂直径变化值≥20 mm
|
||||||
// 3、当前垂直径>130 mm
|
// 3、当前垂直径>130 mm
|
||||||
// 系统默认脾脏状态为“显著增大”
|
// 系统默认脾脏状态为“显著增大”
|
||||||
// this.$set(this.questionForm, this.spleenStatusId, '4')
|
this.$set(this.questionForm, this.spleenStatusId, '4')
|
||||||
// this.calculateSpleenStatus = '4'
|
this.calculateSpleenStatus = '4'
|
||||||
status = '4'
|
|
||||||
}else if( this.spleenInfo.BaseLineSpleenLength > 130 && this.spleenInfo.LowSpleenLength <= 130 && diffFromBaseline >= 20 && length > 130){
|
}else if( this.spleenInfo.BaseLineSpleenLength > 130 && this.spleenInfo.LowSpleenLength <= 130 && diffFromBaseline >= 20 && length > 130){
|
||||||
// 1、基线 垂直径>130 mm
|
// 1、基线 垂直径>130 mm
|
||||||
// 2、当前访视的前面访视中 存在垂直径≤130mm
|
// 2、当前访视的前面访视中 存在垂直径≤130mm
|
||||||
// 3、与最低点相比脾脏垂直径的增加值≥20 mm
|
// 3、与最低点相比脾脏垂直径的增加值≥20 mm
|
||||||
// 4、当前垂直径>130 mm
|
// 4、当前垂直径>130 mm
|
||||||
// 系统默认脾脏状态为“显著增大”
|
// 系统默认脾脏状态为“显著增大”
|
||||||
// this.$set(this.questionForm, this.spleenStatusId, '4')
|
this.$set(this.questionForm, this.spleenStatusId, '4')
|
||||||
// this.calculateSpleenStatus = '4'
|
this.calculateSpleenStatus = '4'
|
||||||
status = '4'
|
|
||||||
}else if(length < 130){
|
}else if(length < 130){
|
||||||
// 当前访视的垂直径≤130mm
|
// 当前访视的垂直径≤130mm
|
||||||
// 系统默认脾脏状态为“正常”
|
// 系统默认脾脏状态为“正常”
|
||||||
// this.$set(this.questionForm, this.spleenStatusId, '1')
|
this.$set(this.questionForm, this.spleenStatusId, '1')
|
||||||
// this.calculateSpleenStatus = '1'
|
this.calculateSpleenStatus = '1'
|
||||||
status = '1'
|
|
||||||
}else if(this.spleenInfo.BaseLineState === '6' && percentFormBaseline < -50){
|
}else if(this.spleenInfo.BaseLineState === '6' && percentFormBaseline < -50){
|
||||||
// 1、基线期 状态为“肿大”
|
// 1、基线期 状态为“肿大”
|
||||||
// 2、与基线相比脾肿大增加的百分比小于-50%
|
// 2、与基线相比脾肿大增加的百分比小于-50%
|
||||||
// 系统默认脾脏状态为“部分缓解”
|
// 系统默认脾脏状态为“部分缓解”
|
||||||
// this.$set(this.questionForm, this.spleenStatusId, '2')
|
this.$set(this.questionForm, this.spleenStatusId, '2')
|
||||||
// this.calculateSpleenStatus = '2'
|
this.calculateSpleenStatus = '2'
|
||||||
status = '2'
|
|
||||||
}else{
|
}else{
|
||||||
// this.$set(this.questionForm, this.spleenStatusId, '3')
|
this.$set(this.questionForm, this.spleenStatusId, '3')
|
||||||
// this.calculateSpleenStatus = '3'
|
this.calculateSpleenStatus = '3'
|
||||||
status = '3'
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return status
|
|
||||||
},
|
},
|
||||||
resetFormItemData(v) {
|
resetFormItemData(v) {
|
||||||
this.questionForm[v] = null
|
this.questionForm[v] = null
|
||||||
|
@ -549,9 +514,6 @@ export default {
|
||||||
},
|
},
|
||||||
setFormItemData(obj) {
|
setFormItemData(obj) {
|
||||||
this.questionForm[obj.key] = obj.val
|
this.questionForm[obj.key] = obj.val
|
||||||
if(obj.key === this.spleenStatusId){
|
|
||||||
this.setSpleenCommentDisplay()
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue