Merge branch 'main' of https://gitea.frp.extimaging.com/XCKJ/irc_web
commit
f3c992bfc9
|
@ -3592,4 +3592,12 @@ export function addDefaultQuestions(param) {
|
|||
|
||||
|
||||
|
||||
export function getReadingCalculationData(param) {
|
||||
return request({
|
||||
url: `/ReadingImageTask/getReadingCalculationData`,
|
||||
method: 'post',
|
||||
data: param
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
|
||||
<script>
|
||||
|
||||
import { saveImageQuality, getDicomReadingQuestionAnswer } from '@/api/trials'
|
||||
import { saveImageQuality, getDicomReadingQuestionAnswer,getReadingCalculationData } from '@/api/trials'
|
||||
import QuestionItem from './QuestionItem'
|
||||
import { mapGetters } from 'vuex'
|
||||
import FusionEvent from './FusionEvent'
|
||||
|
@ -63,7 +63,8 @@ export default {
|
|||
questionFormChangeState: false,
|
||||
questionFormChangeNum: 0,
|
||||
lungIsInsideVolume: true,
|
||||
liverIsInsideVolume: true
|
||||
liverIsInsideVolume: true,
|
||||
uptakeFromBaselineId:''
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
|
@ -190,6 +191,10 @@ export default {
|
|||
// 修改PET 5PS评分备注
|
||||
this.pet5PSCommentsId = i.Id
|
||||
}
|
||||
if (i.QuestionType === 56) {
|
||||
// 与基线相比摄取值变化
|
||||
this.uptakeFromBaselineId = i.Id
|
||||
}
|
||||
if (i.Childrens && i.Childrens.length > 0) {
|
||||
this.setChild(i.Childrens)
|
||||
}
|
||||
|
|
|
@ -724,7 +724,6 @@ export default {
|
|||
return new Blob([bytesCode], { type: imgtype })
|
||||
},
|
||||
handleSave() {
|
||||
console.log('handleSave')
|
||||
this.$refs.measurementForm.validate(async valid => {
|
||||
if (!valid) return
|
||||
const loading = this.$loading({ fullscreen: true })
|
||||
|
@ -733,7 +732,8 @@ export default {
|
|||
// callback: action => {}
|
||||
// })
|
||||
loading.close()
|
||||
this.$confirm(this.$t('当前标记在图像外,不允许保存!'), {
|
||||
// 当前标记在图像外,不允许保存!
|
||||
this.$confirm(this.$t('trials:reading:lugano:warnning:outsideVolume'), {
|
||||
type: 'warning',
|
||||
showCancelButton: false,
|
||||
callback: action => {}
|
||||
|
@ -743,11 +743,11 @@ export default {
|
|||
}
|
||||
// 消失、无法评估状态的病灶限制不能测量SUV值
|
||||
var lesionState = this.getQuestionVal(7)
|
||||
console.log(lesionState)
|
||||
lesionState = parseInt(lesionState)
|
||||
if ((lesionState === 2 || lesionState === 3) && this.questionForm.OtherMeasureData) {
|
||||
loading.close()
|
||||
this.$confirm(this.$t('评估状态为无法评估或消失的病灶不能测量SUV值!'), {
|
||||
// 评估状态为无法评估或消失的病灶不能测量SUV值!
|
||||
this.$confirm(this.$t('trials:reading:lugano:warnning:cannotMeasuredSUV'), {
|
||||
type: 'warning',
|
||||
showCancelButton: false,
|
||||
callback: action => {}
|
||||
|
@ -759,7 +759,8 @@ export default {
|
|||
var suvmax = this.getQuestionVal(20)
|
||||
if (suvmax === 0) {
|
||||
loading.close()
|
||||
this.$confirm(this.$t('当前病灶suv测量值为0,不允许保存!'), {
|
||||
// 当前病灶suv测量值为0,不允许保存!
|
||||
this.$confirm(this.$t('trials:reading:lugano:warnning:suvis0'), {
|
||||
type: 'warning',
|
||||
showCancelButton: false,
|
||||
callback: action => {}
|
||||
|
|
|
@ -100,6 +100,12 @@
|
|||
show-overflow-tooltip
|
||||
width="200"
|
||||
/>
|
||||
<el-table-column
|
||||
prop="VisitName"
|
||||
:label="$t('trials:globalReview:table:cutOffVisitName')"
|
||||
show-overflow-tooltip
|
||||
width="200"
|
||||
/>
|
||||
<el-table-column
|
||||
:label="$t('common:action:action')"
|
||||
width="200"
|
||||
|
|
|
@ -220,20 +220,8 @@ export default {
|
|||
},
|
||||
// 获取下一任务
|
||||
getNextTask() {
|
||||
this.loading = true
|
||||
this.$refs['auditIssues'].save().then(auditIssuesRes => {
|
||||
if (!auditIssuesRes) {
|
||||
this.disPatchNextTask(false)
|
||||
} else {
|
||||
this.$refs['auditConclusions'].save().then(auditConclusionsRes => {
|
||||
this.disPatchNextTask(!!(auditIssuesRes && auditConclusionsRes))
|
||||
}).catch(_ => {
|
||||
this.loading = false
|
||||
})
|
||||
}
|
||||
}).catch(_ => {
|
||||
this.loading = false
|
||||
})
|
||||
this.disPatchNextTask(this.auditInfo.AuditState >= 2)
|
||||
|
||||
},
|
||||
disPatchNextTask(isComplete) {
|
||||
// '是否确认进入下一个医学审核任务?' : '当前医学审核任务未完成,是否确认进入下一个医学审核任务?'
|
||||
|
|
|
@ -661,7 +661,10 @@ export default {
|
|||
this.$message.success(this.$t('common:message:savedSuccessfully'))
|
||||
this.$refs['signForm'].btnLoading = false
|
||||
this.signVisible = false
|
||||
this.chatForm.visible = false
|
||||
this.$nextTick(()=>{
|
||||
this.chatForm.visible = false
|
||||
})
|
||||
|
||||
}
|
||||
this.loading = false
|
||||
this.getList()
|
||||
|
|
Loading…
Reference in New Issue