951 lines
		
	
	
		
			40 KiB
		
	
	
	
		
			Plaintext
		
	
	
			
		
		
	
	
			951 lines
		
	
	
		
			40 KiB
		
	
	
	
		
			Plaintext
		
	
	
<template>
 | 
						|
  <div class="measurement-wrapper" :style="{'height':height+10+'px'}">
 | 
						|
 | 
						|
    <div class="container" :style="{'height':height+'px'}">
 | 
						|
      <h3 style="color: #ddd;padding: 5px 0px;margin: 0;">
 | 
						|
        {{ taskBlindName }}
 | 
						|
      </h3>
 | 
						|
      <!-- 非测量问题 -->
 | 
						|
      <div class="lesions">
 | 
						|
        <Questions ref="ecrf" />
 | 
						|
      </div>
 | 
						|
      <!-- 测量问题 -->
 | 
						|
      <template v-if="questions.length > 0 && CriterionType !== 10">
 | 
						|
        <div v-for="(qs,index) in questions" :key="index" v-loading="loading" class="lesions lesions_wrapper">
 | 
						|
          <h4 v-if="qs.Type === 'group'" style="color: #ddd;padding: 5px 0px;margin: 0;">
 | 
						|
            {{ qs.GroupName }}
 | 
						|
          </h4>
 | 
						|
          <div class="lesion_list">
 | 
						|
            <div v-for="item in qs.Childrens" v-show="!(isBaseLineTask && item.LesionType === 2)" :key="item.Id">
 | 
						|
              <div v-if="item.Type === 'table'" class="flex-row">
 | 
						|
                <div class="title">{{ item.QuestionName }}</div>
 | 
						|
                <div v-if="readingTaskState<2 && (isBaseLineTask || item.LesionType === 2)" class="add-icon" @click.prevent="handleAdd(item)">
 | 
						|
                  <i class="el-icon-plus" />
 | 
						|
                </div>
 | 
						|
              </div>
 | 
						|
              <!-- @change="handleCollapseChange(qs.Childrens,item)" -->
 | 
						|
              <el-collapse
 | 
						|
                v-if="item.Type === 'table' && item.TableQuestions"
 | 
						|
                v-model="activeName"
 | 
						|
                accordion
 | 
						|
                @change="handleCollapseChange"
 | 
						|
              >
 | 
						|
                <el-collapse-item
 | 
						|
                  v-for="(q,i) in item.TableQuestions.Answers"
 | 
						|
                  :key="i"
 | 
						|
                  :name="`${item.Id}_${q.RowIndex}`"
 | 
						|
                >
 | 
						|
                  <template slot="title">
 | 
						|
                    <div style="width:300px;position: relative;" :style="{color:(activeName===item.Id+q.RowIndex?'#ffeb3b':'#fff')}">
 | 
						|
                      <el-tooltip v-show="readingTaskState<2 && !!item.TableQuestions.Answers[i].RowId && !isBaseLineTask && item.TableQuestions.Answers[i].isDicomReading !== false" class="item" content="分裂" placement="left">
 | 
						|
                        <i class="el-icon-plus" style="color:#fff;font-size: 16px;" @click.stop="handleSplit(item.TableQuestions.Answers[i].RowId,item.Id)" />
 | 
						|
                      </el-tooltip>
 | 
						|
                      {{ getLesionName(item.OrderMark,q.RowIndex) }}
 | 
						|
                      <el-tooltip v-if="readingTaskState<2 && parseInt(item.TableQuestions.Answers[i].saveTypeEnum) === 0" class="item" effect="dark" content="未保存" placement="bottom">
 | 
						|
                        <i class="el-icon-warning" style="color:red" />
 | 
						|
                      </el-tooltip>
 | 
						|
                      <el-tooltip v-if="readingTaskState<2 && parseInt(item.TableQuestions.Answers[i].saveTypeEnum) ===1" class="item" effect="dark" content="信息不完整" placement="bottom">
 | 
						|
                        <i class="el-icon-warning" style="color:#ff9800" />
 | 
						|
                      </el-tooltip>
 | 
						|
                      <div style="position: absolute;left: 60px;top: 2px;">
 | 
						|
                        <div style="display: flex;flex-direction: row;font-size: 10px;width:200px;">
 | 
						|
                          <div v-if="item.TableQuestions.Answers[i].lesionPart" style="margin-left:10px;margin-bottom:5px;">
 | 
						|
                            {{ item.TableQuestions.Answers[i].lesionPart }}
 | 
						|
                          </div>
 | 
						|
                          <div v-if="item.TableQuestions.Answers[i].lesionState" style="margin-left:10px;margin-bottom:5px;">
 | 
						|
                            <span v-if="item.LesionType === 0">
 | 
						|
                              {{ $fd('TargetState',parseInt(item.TableQuestions.Answers[i].lesionState)) }}
 | 
						|
                            </span>
 | 
						|
                            <span v-else-if="item.LesionType === 1">
 | 
						|
                              {{ $fd('NoTargetState',parseInt(item.TableQuestions.Answers[i].lesionState)) }}
 | 
						|
                            </span>
 | 
						|
                            <span v-else>
 | 
						|
                              {{ $fd('NewLesionState',parseInt(item.TableQuestions.Answers[i].lesionState)) }}
 | 
						|
                            </span>
 | 
						|
                          </div>
 | 
						|
                          <div style="margin-left:10px;margin-bottom:5px;">
 | 
						|
                            <template v-if="item.TableQuestions.Answers[i].isLymphLesion && item.TableQuestions.Answers[i].lesionShort">
 | 
						|
                              {{ item.TableQuestions.Answers[i].lesionShort }}mm
 | 
						|
                            </template>
 | 
						|
                            <template v-else-if="!item.TableQuestions.Answers[i].isLymphLesion && item.TableQuestions.Answers[i].lesionLength">
 | 
						|
                              {{ item.TableQuestions.Answers[i].lesionLength }}mm
 | 
						|
                            </template>
 | 
						|
                            <!-- <span v-if="item.TableQuestions.Answers[i].lesionLength && item.TableQuestions.Answers[i].lesionShort">
 | 
						|
                              {{ item.TableQuestions.Answers[i].lesionShort }}mm
 | 
						|
                            </span>
 | 
						|
                            <span v-else>
 | 
						|
                              {{ item.TableQuestions.Answers[i].lesionLength? `${item.TableQuestions.Answers[i].lesionLength}mm`:'' }}
 | 
						|
                            </span> -->
 | 
						|
                          </div>
 | 
						|
 | 
						|
                        </div>
 | 
						|
                      </div>
 | 
						|
                    </div>
 | 
						|
 | 
						|
                  </template>
 | 
						|
                  <MeasurementForm
 | 
						|
                    :ref="`${item.Id}_${q.RowIndex}`"
 | 
						|
                    :questions="item.TableQuestions.Questions"
 | 
						|
                    :answers="item.TableQuestions.Answers[i]"
 | 
						|
                    :lesion-type="item.LesionType"
 | 
						|
                    :order-mark="item.OrderMark"
 | 
						|
                    :table-questions="tableQuestions"
 | 
						|
                    :row-index="String(q.RowIndex)"
 | 
						|
                    :question-name="item.QuestionName"
 | 
						|
                    :parent-qs-id="item.Id"
 | 
						|
                    :visit-task-id="visitTaskId"
 | 
						|
                    :is-current-task="isCurrentTask"
 | 
						|
                    :reading-task-state="readingTaskState"
 | 
						|
                    :is-base-line-task="isBaseLineTask"
 | 
						|
                    @getReadingQuestionAndAnswer="getReadingQuestionAndAnswer"
 | 
						|
                    @determineExistsUnsavedLession="determineExistsUnsavedLession"
 | 
						|
                    @resetQuestions="resetQuestions"
 | 
						|
                    @close="close"
 | 
						|
                  />
 | 
						|
                </el-collapse-item>
 | 
						|
 | 
						|
              </el-collapse>
 | 
						|
            </div>
 | 
						|
          </div>
 | 
						|
        </div>
 | 
						|
      </template>
 | 
						|
      <template v-if="questions.length > 0 && CriterionType === 10">
 | 
						|
        <PCWG3Questions ref="pcwg3" :questions="questions" :reading-task-state-parent="readingTaskState" />
 | 
						|
      </template>
 | 
						|
    </div>
 | 
						|
  </div>
 | 
						|
</template>
 | 
						|
<script>
 | 
						|
import { splitLesion } from '@/api/trials'
 | 
						|
import DicomEvent from './DicomEvent'
 | 
						|
import PCWG3Questions from './questions/PCWG3Questions'
 | 
						|
import store from '@/store'
 | 
						|
import { mapGetters } from 'vuex'
 | 
						|
import Questions from './Questions'
 | 
						|
import MeasurementForm from './MeasurementForm'
 | 
						|
export default {
 | 
						|
  name: 'MeasurementList',
 | 
						|
  components: {
 | 
						|
    Questions,
 | 
						|
    MeasurementForm,
 | 
						|
    PCWG3Questions
 | 
						|
  },
 | 
						|
  data() {
 | 
						|
    return {
 | 
						|
      height: window.innerHeight - 140,
 | 
						|
      questions: [],
 | 
						|
      activeName: '',
 | 
						|
      activeItem: {
 | 
						|
        activeRowIndex: null,
 | 
						|
        activeCollapseId: null
 | 
						|
      },
 | 
						|
      visitTaskId: '',
 | 
						|
      isCurrentTask: false,
 | 
						|
      loading: false,
 | 
						|
      unSaveTargets: [],
 | 
						|
      temporaryLesions: [],
 | 
						|
      readingTaskState: 2,
 | 
						|
      isBaseLineTask: false,
 | 
						|
      taskBlindName: '',
 | 
						|
      tableQuestions: [],
 | 
						|
      isFirstRender: false,
 | 
						|
      CriterionType: null
 | 
						|
    }
 | 
						|
  },
 | 
						|
  computed: {
 | 
						|
    ...mapGetters(['visitTaskList'])
 | 
						|
  },
 | 
						|
  mounted() {
 | 
						|
    window.addEventListener('message', this.receiveMsg)
 | 
						|
    this.CriterionType = parseInt(this.$route.query.CriterionType)
 | 
						|
    DicomEvent.$on('loadMeasurementList', async obj => {
 | 
						|
      if (this.visitTaskId !== obj.visitTaskId) {
 | 
						|
        this.visitTaskId = obj.visitTaskId
 | 
						|
        this.taskBlindName = obj.taskBlindName
 | 
						|
        this.activeName = ''
 | 
						|
        this.activeItem.activeRowIndex = null
 | 
						|
        this.activeItem.activeCollapseId = null
 | 
						|
        this.$refs['ecrf'].getQuestions(obj.visitTaskId)
 | 
						|
      }
 | 
						|
      var idx = this.visitTaskList.findIndex(i => i.VisitTaskId === obj.visitTaskId)
 | 
						|
      if (idx > -1) {
 | 
						|
        if (this.visitTaskList[idx].ReadingQuestions.length > 0) {
 | 
						|
          this.questions = this.getQuestions(this.visitTaskList[idx].ReadingQuestions)
 | 
						|
        }
 | 
						|
        this.readingTaskState = this.visitTaskList[idx].ReadingTaskState
 | 
						|
        this.isBaseLineTask = this.visitTaskList[idx].IsBaseLineTask
 | 
						|
        this.isCurrentTask = this.visitTaskList[idx].IsCurrentTask
 | 
						|
        this.getTableQuestions()
 | 
						|
        if (this.isFirstRender) {
 | 
						|
          this.$nextTick(() => {
 | 
						|
            this.tableQuestions.forEach(item => {
 | 
						|
              item.TableQuestions.Answers.forEach(i => {
 | 
						|
                var refName = `${item.Id}_${i.RowIndex}`
 | 
						|
                this.$refs[refName][0].initForm()
 | 
						|
              })
 | 
						|
            })
 | 
						|
          })
 | 
						|
        }
 | 
						|
      }
 | 
						|
      if (!this.isFirstRender) {
 | 
						|
        this.isFirstRender = true
 | 
						|
      }
 | 
						|
      console.log('loadMeasurementList')
 | 
						|
    })
 | 
						|
    DicomEvent.$on('setCollapseActive', measureData => {
 | 
						|
      this.setCollapseActive(measureData)
 | 
						|
      console.log('setCollapseActive')
 | 
						|
    })
 | 
						|
    DicomEvent.$on('changeLesionType', (questionsObj) => {
 | 
						|
      this.changeLesionType(questionsObj)
 | 
						|
      console.log('changeLesionType')
 | 
						|
    })
 | 
						|
    DicomEvent.$on('getAllUnSaveLesions', (callback) => {
 | 
						|
      var list = this.getAllUnSaveLesions()
 | 
						|
      callback(list)
 | 
						|
      console.log('getAllUnSaveLesions')
 | 
						|
    })
 | 
						|
 | 
						|
    DicomEvent.$on('split', measureData => {
 | 
						|
      this.handleSplit(measureData.RowId, measureData.QuestionId)
 | 
						|
    })
 | 
						|
    DicomEvent.$on('setReadingState', readingTaskState => {
 | 
						|
      this.readingTaskState = readingTaskState
 | 
						|
    })
 | 
						|
 | 
						|
    window.addEventListener('resize', this.setHeight)
 | 
						|
  },
 | 
						|
  beforeDestroy() {
 | 
						|
    DicomEvent.$off('loadMeasurementList')
 | 
						|
    DicomEvent.$off('setCollapseActive')
 | 
						|
    DicomEvent.$off('changeLesionType')
 | 
						|
    DicomEvent.$off('getUnSaveTarget')
 | 
						|
    DicomEvent.$off('setReadingState')
 | 
						|
  },
 | 
						|
  methods: {
 | 
						|
 | 
						|
    initPage(obj) {
 | 
						|
      if (this.visitTaskId !== obj.visitTaskId) {
 | 
						|
        this.visitTaskId = obj.visitTaskId
 | 
						|
        this.taskBlindName = obj.taskBlindName
 | 
						|
        this.activeName = ''
 | 
						|
        this.activeItem.activeRowIndex = null
 | 
						|
        this.activeItem.activeCollapseId = null
 | 
						|
        this.$refs['ecrf'].getQuestions(obj.visitTaskId)
 | 
						|
      }
 | 
						|
      var idx = this.visitTaskList.findIndex(i => i.VisitTaskId === obj.visitTaskId)
 | 
						|
      if (idx > -1) {
 | 
						|
        if (this.visitTaskList[idx].ReadingQuestions.length > 0) {
 | 
						|
          this.questions = this.visitTaskList[idx].ReadingQuestions
 | 
						|
        }
 | 
						|
        this.readingTaskState = this.visitTaskList[idx].ReadingTaskState
 | 
						|
        this.isBaseLineTask = this.visitTaskList[idx].IsBaseLineTask
 | 
						|
        this.isCurrentTask = this.visitTaskList[idx].IsCurrentTask
 | 
						|
        this.getTableQuestions()
 | 
						|
        if (this.isFirstRender) {
 | 
						|
          this.$nextTick(() => {
 | 
						|
            this.tableQuestions.forEach(item => {
 | 
						|
              item.TableQuestions.Answers.forEach(i => {
 | 
						|
                var refName = `${item.Id}_${i.RowIndex}`
 | 
						|
                this.$refs[refName][0].initForm()
 | 
						|
              })
 | 
						|
            })
 | 
						|
          })
 | 
						|
        }
 | 
						|
      }
 | 
						|
      if (!this.isFirstRender) {
 | 
						|
        this.isFirstRender = true
 | 
						|
      }
 | 
						|
      if (this.CriterionType === 10) {
 | 
						|
        this.$nextTick(() => {
 | 
						|
          console.log(this.$refs)
 | 
						|
          console.log(this.$refs.pcwg3)
 | 
						|
          console.log(this.$refs.pcwg3.initPage(obj))
 | 
						|
        })
 | 
						|
      }
 | 
						|
    },
 | 
						|
    async resetQuestions(obj) {
 | 
						|
      this.setQuestions(this.questions, obj)
 | 
						|
      console.log(this.questions)
 | 
						|
      store.dispatch('reading/setReadingQuestionAndAnswer', { questions: this.questions, visitTaskId: this.visitTaskId })
 | 
						|
      this.getTableQuestions()
 | 
						|
    },
 | 
						|
    setQuestions(questions, obj) {
 | 
						|
      questions.forEach(item => {
 | 
						|
        if (item.Type === 'table' && item.Id === obj.questionId) {
 | 
						|
          var idx = item.TableQuestions.Answers.findIndex(i => i.RowIndex === obj.rowIndex)
 | 
						|
          item.TableQuestions.Answers[idx].isLymphLesion = obj.isLymphLesion
 | 
						|
          item.TableQuestions.Answers[idx].loctation = obj.lesionOrgan
 | 
						|
          item.TableQuestions.Answers[idx].lesionPart = obj.lesionPart
 | 
						|
          item.TableQuestions.Answers[idx].lesionLength = obj.lesionLength
 | 
						|
          item.TableQuestions.Answers[idx].lesionShort = obj.lesionShort
 | 
						|
          item.TableQuestions.Answers[idx].lesionState = obj.lesionState
 | 
						|
 | 
						|
          item.TableQuestions.Answers[idx].saveTypeEnum = obj.saveTypeEnum
 | 
						|
 | 
						|
          for (const i in obj.anwsers) {
 | 
						|
            if (i === 'MeasureData' && obj.anwsers[i]) {
 | 
						|
              item.TableQuestions.Answers[idx].InstanceId = obj.anwsers[i].instanceId
 | 
						|
              item.TableQuestions.Answers[idx].SeriesId = obj.anwsers[i].seriesId
 | 
						|
              item.TableQuestions.Answers[idx][i] = JSON.stringify(obj.anwsers[i])
 | 
						|
              item.TableQuestions.Answers[idx].isDicomReading = !(obj.anwsers[i].IsDicomReading === false || obj.anwsers[i].IsDicomReading === 'False')
 | 
						|
            } else {
 | 
						|
              item.TableQuestions.Answers[idx][i] = String(obj.anwsers[i])
 | 
						|
            }
 | 
						|
          }
 | 
						|
        }
 | 
						|
        if (item.Childrens.length > 0) {
 | 
						|
          this.setQuestions(item.Childrens, obj)
 | 
						|
        }
 | 
						|
      })
 | 
						|
    },
 | 
						|
    getQuestions(questions) {
 | 
						|
      questions.forEach(item => {
 | 
						|
        if (item.Type === 'table' && item.TableQuestions && item.TableQuestions.Answers.length > 0) {
 | 
						|
          item.TableQuestions.Answers.forEach(answerObj => {
 | 
						|
            this.$set(answerObj, 'loctation', this.getQuestionAnswer(item.TableQuestions.Questions, 6, answerObj))
 | 
						|
            this.$set(answerObj, 'lesionLength', this.getQuestionAnswer(item.TableQuestions.Questions, 0, answerObj))
 | 
						|
            this.$set(answerObj, 'lesionShort', this.getQuestionAnswer(item.TableQuestions.Questions, 1, answerObj))
 | 
						|
            var isLymphLesion = this.getQuestionAnswer(item.TableQuestions.Questions, 2, answerObj)
 | 
						|
            isLymphLesion = isLymphLesion ? parseInt(isLymphLesion) : null
 | 
						|
            this.$set(answerObj, 'isLymphLesion', isLymphLesion)
 | 
						|
 | 
						|
            var lesionState = this.getQuestionAnswer(item.TableQuestions.Questions, 7, answerObj)
 | 
						|
            lesionState = lesionState ? parseInt(lesionState) : ''
 | 
						|
            this.$set(answerObj, 'lesionState', lesionState)
 | 
						|
 | 
						|
            if (answerObj.RowId) {
 | 
						|
              this.$set(answerObj, 'saveTypeEnum', isNaN(parseInt(lesionState)) ? 1 : 2)
 | 
						|
            } else {
 | 
						|
              this.$set(answerObj, 'saveTypeEnum', 0)
 | 
						|
            }
 | 
						|
          })
 | 
						|
        }
 | 
						|
        if (item.Childrens.length > 0) {
 | 
						|
          this.getQuestions(item.Childrens)
 | 
						|
        }
 | 
						|
      })
 | 
						|
      return questions
 | 
						|
    },
 | 
						|
    getTableQuestions() {
 | 
						|
      this.tableQuestions = []
 | 
						|
      this.questions.map(item => {
 | 
						|
        if (item.Type === 'table') {
 | 
						|
          this.tableQuestions.push(item)
 | 
						|
        }
 | 
						|
        if (item.Childrens.length > 0) {
 | 
						|
          this.getTableQuestionsChild(item.Childrens)
 | 
						|
        }
 | 
						|
      })
 | 
						|
    },
 | 
						|
    getTableQuestionsChild(obj) {
 | 
						|
      obj.map(item => {
 | 
						|
        if (item.Type === 'table') {
 | 
						|
          this.tableQuestions.push(item)
 | 
						|
        }
 | 
						|
        if (item.Childrens.length > 0) {
 | 
						|
          this.getTableQuestionsChild(item.Childrens)
 | 
						|
        }
 | 
						|
      })
 | 
						|
    },
 | 
						|
    refreshReadingQuestionAndAnswer(type) {
 | 
						|
      if (type === 0) {
 | 
						|
        // 删除
 | 
						|
        this.activeName = ''
 | 
						|
        this.activeItem.activeRowIndex = null
 | 
						|
        this.activeItem.activeCollapseId = null
 | 
						|
      }
 | 
						|
 | 
						|
      this.getReadingQuestionAndAnswer(this.visitTaskId)
 | 
						|
    },
 | 
						|
    getReadingQuestionAndAnswer() {
 | 
						|
      return new Promise(async resolve => {
 | 
						|
        // const loading = this.$loading({ fullscreen: true })
 | 
						|
        await store.dispatch('reading/refreshReadingQuestionAndAnswer', { trialId: this.$router.currentRoute.query.trialId, visitTaskId: this.visitTaskId }).then(() => {
 | 
						|
          var idx = this.visitTaskList.findIndex(i => i.VisitTaskId === this.visitTaskId)
 | 
						|
          if (idx > -1) {
 | 
						|
            if (this.visitTaskList[idx].ReadingQuestions.length > 0) {
 | 
						|
              this.questions = this.visitTaskList[idx].ReadingQuestions
 | 
						|
            }
 | 
						|
            this.readingTaskState = this.visitTaskList[idx].ReadingTaskState
 | 
						|
            this.isBaseLineTask = this.visitTaskList[idx].IsBaseLineTask
 | 
						|
            this.isCurrentTask = this.visitTaskList[idx].IsCurrentTask
 | 
						|
          }
 | 
						|
          this.getTableQuestions()
 | 
						|
        })
 | 
						|
        await store.dispatch('reading/refreshMeasuredData', this.visitTaskId)
 | 
						|
        DicomEvent.$emit('getMeasureData')
 | 
						|
        // loading.close()
 | 
						|
        resolve()
 | 
						|
      })
 | 
						|
    },
 | 
						|
    setHeight() {
 | 
						|
      this.height = window.innerHeight - 140
 | 
						|
    },
 | 
						|
    getQuestionAnswer(questions, questionMark, answers) {
 | 
						|
      var idx = questions.findIndex(i => i.QuestionMark === questionMark)
 | 
						|
      if (idx > -1) {
 | 
						|
        var questionId = questions[idx].Id
 | 
						|
        return answers[questionId]
 | 
						|
      } else {
 | 
						|
        return ''
 | 
						|
      }
 | 
						|
    },
 | 
						|
    // 分裂
 | 
						|
    handleSplit(rowId, questionId) {
 | 
						|
      var arr = []
 | 
						|
      this.getUnSaveTarget()
 | 
						|
      if (this.unSaveTargets.length > 0) {
 | 
						|
        this.unSaveTargets.forEach(item => {
 | 
						|
          arr.push(item.lessionName)
 | 
						|
        })
 | 
						|
      }
 | 
						|
      var unSavedList = this.getAllUnSaveLesions()
 | 
						|
      unSavedList.forEach(item => {
 | 
						|
        arr.push(item.lessionName)
 | 
						|
      })
 | 
						|
      if (arr.length > 0) {
 | 
						|
        var message = arr.join('、')
 | 
						|
        this.$confirm(`病灶${message},未保存。如果分裂,信息将被还原,是否继续?`, {
 | 
						|
          type: 'warning',
 | 
						|
          distinguishCancelAndClose: true
 | 
						|
        })
 | 
						|
          .then(() => {
 | 
						|
            this.split(rowId, questionId)
 | 
						|
          })
 | 
						|
          .catch(() => {})
 | 
						|
      } else {
 | 
						|
        this.$confirm('是否确认分裂?', {
 | 
						|
          type: 'warning',
 | 
						|
          distinguishCancelAndClose: true
 | 
						|
        })
 | 
						|
          .then(() => {
 | 
						|
            this.split(rowId, questionId)
 | 
						|
          })
 | 
						|
          .catch(() => {})
 | 
						|
      }
 | 
						|
    },
 | 
						|
    split(rowId, questionId) {
 | 
						|
      const loading = this.$loading({ fullscreen: true })
 | 
						|
      var params = {
 | 
						|
        visitTaskId: this.visitTaskId,
 | 
						|
        questionId: questionId,
 | 
						|
        rowId: rowId
 | 
						|
      }
 | 
						|
      splitLesion(params).then(async res => {
 | 
						|
        loading.close()
 | 
						|
        await this.getReadingQuestionAndAnswer()
 | 
						|
        this.$nextTick(() => {
 | 
						|
          this.tableQuestions.forEach(item => {
 | 
						|
            item.TableQuestions.Answers.forEach(i => {
 | 
						|
              var refName = `${item.Id}_${i.RowIndex}`
 | 
						|
              this.$refs[refName][0].initForm()
 | 
						|
            })
 | 
						|
          })
 | 
						|
        })
 | 
						|
      })
 | 
						|
    },
 | 
						|
    isCanActiveTool(toolName) {
 | 
						|
      if (this.CriterionType === 10) {
 | 
						|
        return this.$refs['pcwg3'].isCanActiveTool(toolName)
 | 
						|
      } else {
 | 
						|
        this.getUnSaveTarget()
 | 
						|
        if (this.unSaveTargets.length > 0) {
 | 
						|
          var rowIndex = String(this.unSaveTargets[0].rowIndex)
 | 
						|
          var questionId = this.unSaveTargets[0].questionId
 | 
						|
          const refName = `${this.activeItem.activeCollapseId}_${this.activeItem.activeRowIndex}`
 | 
						|
          if (rowIndex === this.activeItem.activeRowIndex && questionId === this.activeItem.activeCollapseId && !this.$refs[refName][0].questionForm.MeasureData) {
 | 
						|
            return this.checkToolCanActive(toolName)
 | 
						|
          } else {
 | 
						|
            return { isCanActiveTool: false, reason: `病灶${this.unSaveTargets[0].lessionName}信息未保存,不允许继续添加!` }
 | 
						|
          }
 | 
						|
        } else {
 | 
						|
          if (this.activeItem.activeCollapseId) {
 | 
						|
            return this.checkToolCanActive(toolName)
 | 
						|
          } else {
 | 
						|
            if (toolName === 'ArrowAnnotate' || toolName === 'Bidirectional' || toolName === 'Length') {
 | 
						|
              return { isCanActiveTool: true, reason: '' }
 | 
						|
            } else {
 | 
						|
              return { isCanActiveTool: false, reason: '' }
 | 
						|
            }
 | 
						|
          }
 | 
						|
        }
 | 
						|
      }
 | 
						|
    },
 | 
						|
 | 
						|
    checkToolCanActive(toolName) {
 | 
						|
      const refName = `${this.activeItem.activeCollapseId}_${this.activeItem.activeRowIndex}`
 | 
						|
      var isLymphNodes = this.$refs[refName][0].getQuestionVal(2)
 | 
						|
      isLymphNodes = !isNaN(parseInt(isLymphNodes)) ? parseInt(isLymphNodes) : null
 | 
						|
      if (!this.$refs[refName][0].questionForm.MeasureData) {
 | 
						|
        if (this.isBaseLineTask) {
 | 
						|
          if (this.$refs[refName][0].lesionType === 0 && isLymphNodes === 1 && toolName !== 'Bidirectional') {
 | 
						|
            return { isCanActiveTool: false, reason: '淋巴结靶病灶需使用长短径测量工具' }
 | 
						|
          } else if (this.$refs[refName][0].lesionType === 0 && isLymphNodes === 0 && toolName !== 'Length') {
 | 
						|
            return { isCanActiveTool: false, reason: '非淋巴结靶病灶需使用直径测量工具' }
 | 
						|
          } else if (this.$refs[refName][0].lesionType === 1 && isLymphNodes === 1 && toolName !== 'Bidirectional' && toolName !== 'ArrowAnnotate') {
 | 
						|
            return { isCanActiveTool: false, reason: '淋巴结非靶病灶需使用长短径测量工具或箭头工具' }
 | 
						|
          } else if (this.$refs[refName][0].lesionType === 1 && isLymphNodes === 0 && toolName !== 'Length' && toolName !== 'ArrowAnnotate') {
 | 
						|
            return { isCanActiveTool: false, reason: '非淋巴结非靶病灶需使用直径测量工具或箭头工具' }
 | 
						|
          } else {
 | 
						|
            return { isCanActiveTool: true, reason: '' }
 | 
						|
          }
 | 
						|
        } else {
 | 
						|
          if (this.$refs[refName][0].lesionType === 0 && isLymphNodes === 1 && toolName !== 'Bidirectional' && toolName !== 'ArrowAnnotate') {
 | 
						|
            return { isCanActiveTool: false, reason: '淋巴结靶病灶需使用长短径测量工具或箭头工具' }
 | 
						|
          } else if (this.$refs[refName][0].lesionType === 0 && isLymphNodes === 0 && toolName !== 'Length' && toolName !== 'ArrowAnnotate') {
 | 
						|
            return { isCanActiveTool: false, reason: '淋巴结非靶病灶需使用直径测量工具或箭头工具' }
 | 
						|
          } else if (this.$refs[refName][0].lesionType === 1 && isLymphNodes === 1 && toolName !== 'Bidirectional' && toolName !== 'ArrowAnnotate') {
 | 
						|
            return { isCanActiveTool: false, reason: '淋巴结非靶病灶需使用长短径测量工具或箭头工具' }
 | 
						|
          } else if (this.$refs[refName][0].lesionType === 1 && isLymphNodes === 0 && toolName !== 'Length' && toolName !== 'ArrowAnnotate') {
 | 
						|
            return { isCanActiveTool: false, reason: '非淋巴结非靶病灶需使用直径测量工具或箭头工具' }
 | 
						|
          } else if (this.$refs[refName][0].lesionType === 2 && isLymphNodes === 1 && toolName !== 'Bidirectional' && toolName !== 'ArrowAnnotate') {
 | 
						|
            return { isCanActiveTool: false, reason: '淋巴结新病灶需使用长短径测量工具或箭头工具' }
 | 
						|
          } else if (this.$refs[refName][0].lesionType === 2 && isLymphNodes === 0 && toolName !== 'Length' && toolName !== 'ArrowAnnotate') {
 | 
						|
            return { isCanActiveTool: false, reason: '非淋巴结新病灶需使用直径测量工具或箭头工具' }
 | 
						|
          } else {
 | 
						|
            return { isCanActiveTool: true, reason: '' }
 | 
						|
          }
 | 
						|
        }
 | 
						|
      } else {
 | 
						|
        return { isCanActiveTool: true, reason: '' }
 | 
						|
      }
 | 
						|
    },
 | 
						|
 | 
						|
    async handleAdd(qs) {
 | 
						|
      // 判断是否有未保存的病灶
 | 
						|
      this.getUnSaveTarget()
 | 
						|
      if (this.unSaveTargets.length > 0) {
 | 
						|
        this.$confirm(`病灶${this.unSaveTargets[0].lessionName}信息未保存,不允许继续添加!`, {
 | 
						|
          type: 'warning',
 | 
						|
          showCancelButton: false,
 | 
						|
          callback: action => {}
 | 
						|
        })
 | 
						|
        return
 | 
						|
      }
 | 
						|
      if (!!qs.MaxQuestionCount && qs.MaxQuestionCount <= qs.TableQuestions.Answers.length) {
 | 
						|
        this.$confirm(`${qs.QuestionName}个数最多不能超过${qs.MaxQuestionCount}个`, {
 | 
						|
          type: 'warning',
 | 
						|
          showCancelButton: false,
 | 
						|
          callback: action => {}
 | 
						|
        })
 | 
						|
      } else {
 | 
						|
        // saveTypeEnum: 0
 | 
						|
        var obj = { }
 | 
						|
        var questions = qs.TableQuestions.Questions.find(item => item.QuestionMark === 3)
 | 
						|
        if (questions) {
 | 
						|
          var maxIndex = this.getMaxRowIndex(qs.TableQuestions.Answers)
 | 
						|
          obj.RowIndex = `${maxIndex + 1}.00`
 | 
						|
          obj[questions.Id] = `${qs.OrderMark}${String(maxIndex + 1).padStart(2, '0')}`
 | 
						|
        }
 | 
						|
        obj.IsDicomReading = true
 | 
						|
        await store.dispatch('reading/addReadingQuestionAndAnswer', { lesionType: qs.LesionType, visitTaskId: this.visitTaskId, lesionObj: obj })
 | 
						|
 | 
						|
        this.activeItem.activeRowIndex = String(obj.RowIndex)
 | 
						|
        this.activeItem.activeCollapseId = qs.Id
 | 
						|
        this.activeName = `${this.activeItem.activeCollapseId}_${this.activeItem.activeRowIndex}`
 | 
						|
      }
 | 
						|
    },
 | 
						|
    getMaxRowIndex(answerList) {
 | 
						|
      if (answerList.length > 0) {
 | 
						|
        var arr = []
 | 
						|
        answerList.forEach(item => {
 | 
						|
          var rowIndex = item.RowIndex
 | 
						|
          arr.push(parseInt(rowIndex))
 | 
						|
        })
 | 
						|
        var max = Math.max.apply(null, arr)
 | 
						|
        return max
 | 
						|
      } else {
 | 
						|
        return 0
 | 
						|
      }
 | 
						|
    },
 | 
						|
    determineExistsUnsavedLession(callback) {
 | 
						|
      // const loading = this.$loading({ fullscreen: true })
 | 
						|
      this.getUnSaveTarget()
 | 
						|
      if (this.unSaveTargets.length > 0) {
 | 
						|
        var rowIndex = String(this.unSaveTargets[0].rowIndex)
 | 
						|
        var questionId = this.unSaveTargets[0].questionId
 | 
						|
        if (rowIndex === String(this.activeItem.activeRowIndex) && questionId === this.activeItem.activeCollapseId) {
 | 
						|
          callback(true)
 | 
						|
          // loading.close()
 | 
						|
          return
 | 
						|
        } else {
 | 
						|
          this.$confirm(`病灶${this.unSaveTargets[0].lessionName}信息未保存,不允许执行此操作!`, {
 | 
						|
            type: 'warning',
 | 
						|
            showCancelButton: false,
 | 
						|
            callback: action => { }
 | 
						|
          })
 | 
						|
          callback(false)
 | 
						|
          // loading.close()
 | 
						|
          return
 | 
						|
        }
 | 
						|
      }
 | 
						|
      callback(true)
 | 
						|
      // loading.close()
 | 
						|
      return
 | 
						|
    },
 | 
						|
    getUnSaveTarget() {
 | 
						|
      this.unSaveTargets = []
 | 
						|
      this.tableQuestions.map(item => {
 | 
						|
        if (item.TableQuestions && item.TableQuestions.Answers) {
 | 
						|
          item.TableQuestions.Answers.map(t => {
 | 
						|
            if (!t.RowId) {
 | 
						|
              var lessionName = this.getLesionName(item.OrderMark, t.RowIndex)
 | 
						|
              this.unSaveTargets.push({ lessionName: lessionName, rowIndex: t.RowIndex, questionId: item.Id })
 | 
						|
            }
 | 
						|
          })
 | 
						|
        }
 | 
						|
      })
 | 
						|
      // console.log(this.unSaveTargets)
 | 
						|
      return this.unSaveTargets
 | 
						|
    },
 | 
						|
    getAllUnSaveLesions() {
 | 
						|
      var arr = []
 | 
						|
      this.tableQuestions.map(item => {
 | 
						|
        if (item.TableQuestions && item.TableQuestions.Answers) {
 | 
						|
          item.TableQuestions.Answers.map(t => {
 | 
						|
            const refName = `${item.Id}_${t.RowIndex}`
 | 
						|
            if (this.$refs[refName] && this.$refs[refName][0] && this.$refs[refName][0].questionForm.saveTypeEnum !== 2) {
 | 
						|
              var lessionName = this.getLesionName(item.OrderMark, t.RowIndex)
 | 
						|
              arr.push({ lessionName: lessionName, rowIndex: t.RowIndex, questionId: item.Id })
 | 
						|
            }
 | 
						|
          })
 | 
						|
        }
 | 
						|
      })
 | 
						|
      return arr
 | 
						|
    },
 | 
						|
    getLesionName(orderMark, rowIndex) {
 | 
						|
      var lessionName = ''
 | 
						|
      var rowIndexArr = rowIndex.split('.')
 | 
						|
      var x = parseInt(rowIndexArr[0])
 | 
						|
      var y = parseInt(rowIndexArr[1])
 | 
						|
      if (y > 0) {
 | 
						|
        y = String.fromCharCode(parseInt(rowIndexArr[1]) - 1 + 65 + 32)
 | 
						|
        lessionName = `${orderMark}${String(x).padStart(2, '0')}${y}`
 | 
						|
      } else {
 | 
						|
        lessionName = `${orderMark}${String(x).padStart(2, '0')}`
 | 
						|
      }
 | 
						|
 | 
						|
      return lessionName
 | 
						|
    },
 | 
						|
    handleCollapseChange(val) {
 | 
						|
      if (this.activeName) {
 | 
						|
        var arr = this.activeName.split('_')
 | 
						|
        this.activeItem.activeRowIndex = arr[1]
 | 
						|
        this.activeItem.activeCollapseId = arr[0]
 | 
						|
        this.$nextTick(() => {
 | 
						|
          const refName = `${this.activeItem.activeCollapseId}_${this.activeItem.activeRowIndex}`
 | 
						|
          if (this.$refs[refName][0].questionForm.IsDicomReading !== false) {
 | 
						|
            DicomEvent.$emit('imageLocation', { questionId: this.activeItem.activeCollapseId, rowIndex: this.activeItem.activeRowIndex, visitTaskId: this.visitTaskId })
 | 
						|
          }
 | 
						|
        })
 | 
						|
      } else {
 | 
						|
        this.activeItem.activeRowIndex = null
 | 
						|
        this.activeItem.activeCollapseId = null
 | 
						|
      }
 | 
						|
    },
 | 
						|
    // 更改病灶类型
 | 
						|
    async changeLesionType(questionsObj) {
 | 
						|
      await store.dispatch('reading/removeReadingQuestionAndAnswer', { lesionType: questionsObj.oldLesionType, rowIndex: questionsObj.rowIndex, visitTaskId: this.visitTaskId })
 | 
						|
      // saveTypeEnum: 0
 | 
						|
      var lesionObj = { }
 | 
						|
      var questionObj = questionsObj.questionForm
 | 
						|
      // 切换到新的病灶集合
 | 
						|
      var targetObj = this.tableQuestions.find(item => item.LesionType === questionsObj.newLesionType)
 | 
						|
 | 
						|
      targetObj.TableQuestions.Questions.forEach(i => {
 | 
						|
        if (i.QuestionMark === 3) {
 | 
						|
          var maxIndex = this.getMaxRowIndex(targetObj.TableQuestions.Answers)
 | 
						|
          lesionObj.RowIndex = `${maxIndex + 1}.00`
 | 
						|
          lesionObj[i.Id] = `${targetObj.OrderMark}${String(maxIndex + 1).padStart(2, '0')}`
 | 
						|
        } else {
 | 
						|
          var obj = questionObj.find(v => v.QuestionMark === i.QuestionMark)
 | 
						|
          if (obj) {
 | 
						|
            lesionObj[i.Id] = obj.Answer
 | 
						|
          }
 | 
						|
        }
 | 
						|
      })
 | 
						|
      // targetObj.TableQuestions.Answers.push(lesionObj)
 | 
						|
      await store.dispatch('reading/addReadingQuestionAndAnswer', { lesionType: questionsObj.newLesionType, visitTaskId: this.visitTaskId, lesionObj: lesionObj })
 | 
						|
 | 
						|
      this.activeItem.activeRowIndex = String(lesionObj.RowIndex)
 | 
						|
      this.activeItem.activeCollapseId = targetObj.Id
 | 
						|
      this.activeName = `${this.activeItem.activeCollapseId}_${this.activeItem.activeRowIndex}`
 | 
						|
      const refName = `${this.activeItem.activeCollapseId}_${this.activeItem.activeRowIndex}`
 | 
						|
      var measureData = questionsObj.measureData
 | 
						|
      if (questionsObj.measureData) {
 | 
						|
        await store.dispatch('reading/removeMeasuredData', { visitTaskId: this.visitTaskId, measureData: measureData, questionId: questionsObj.questionId, rowIndex: questionsObj.rowIndex })
 | 
						|
      }
 | 
						|
      this.$nextTick(() => {
 | 
						|
        console.log(measureData)
 | 
						|
        this.$refs[refName][0].setMeasureData(measureData)
 | 
						|
      })
 | 
						|
    },
 | 
						|
    removeQuestionAnswer(questionsObj) {
 | 
						|
      // 移除当前病灶
 | 
						|
      var currentObj = this.tableQuestions.find(item => item.LesionType === questionsObj.oldLesionType)
 | 
						|
      if (currentObj) {
 | 
						|
        var i = currentObj.TableQuestions.Answers.findIndex(i => String(i.RowIndex) === String(questionsObj.rowIndex))
 | 
						|
        if (i === -1) return
 | 
						|
        currentObj.TableQuestions.Answers.splice(i, 1)
 | 
						|
      }
 | 
						|
    },
 | 
						|
    // 创建新病灶
 | 
						|
    createNLTarget(measureData) {
 | 
						|
      var idx = this.tableQuestions.findIndex(item => item.LesionType === 2)
 | 
						|
      if (idx > -1) {
 | 
						|
        this.addTarget(this.tableQuestions[idx], measureData)
 | 
						|
      }
 | 
						|
    },
 | 
						|
    // 创建靶病灶
 | 
						|
    createTTarget(measureData) {
 | 
						|
      var idx = this.tableQuestions.findIndex(item => item.LesionType === 0)
 | 
						|
      if (idx > -1) {
 | 
						|
        this.addTarget(this.tableQuestions[idx], measureData)
 | 
						|
      }
 | 
						|
    },
 | 
						|
 | 
						|
    async addTarget(target, measureData) {
 | 
						|
      // saveTypeEnum: 0
 | 
						|
      var obj = {}
 | 
						|
 | 
						|
      // obj.RowIndex = target.TableQuestions.Answers.length + 1
 | 
						|
      var questions = target.TableQuestions.Questions.find(item => item.QuestionMark === 3)
 | 
						|
      if (questions) {
 | 
						|
        var maxIndex = this.getMaxRowIndex(target.TableQuestions.Answers)
 | 
						|
        obj.RowIndex = `${maxIndex + 1}.00`
 | 
						|
        obj[questions.Id] = `${target.OrderMark}${String(maxIndex + 1).padStart(2, '0')}`
 | 
						|
        // obj[questions.Id] = `${target.OrderMark}${String(obj.RowIndex).padStart(2, '0')}`
 | 
						|
      }
 | 
						|
      // target.TableQuestions.Answers.push(obj)
 | 
						|
      obj.IsDicomReading = !(measureData.isDicomReading === false || measureData.isDicomReading === 'False')
 | 
						|
      obj.measureObj = measureData
 | 
						|
      await store.dispatch('reading/addReadingQuestionAndAnswer', { lesionType: target.LesionType, visitTaskId: this.visitTaskId, lesionObj: obj })
 | 
						|
 | 
						|
      this.activeItem.activeRowIndex = String(obj.RowIndex)
 | 
						|
      this.activeItem.activeCollapseId = target.Id
 | 
						|
      this.activeName = `${this.activeItem.activeCollapseId}_${this.activeItem.activeRowIndex}`
 | 
						|
      // const refName = `${this.activeItem.activeCollapseId}_${this.activeItem.activeRowIndex}`
 | 
						|
      // this.$nextTick(() => {
 | 
						|
      //   this.$refs[refName][0].setMeasureData(measureData)
 | 
						|
      // })
 | 
						|
    },
 | 
						|
    createNTTarget(measureData) {
 | 
						|
      var idx = this.tableQuestions.findIndex(item => item.LesionType === 1)
 | 
						|
      if (idx > -1) {
 | 
						|
        this.addTarget(this.tableQuestions[idx], measureData)
 | 
						|
      }
 | 
						|
    },
 | 
						|
    setCollapseActive(measureData) {
 | 
						|
      if (measureData) {
 | 
						|
        if (this.activeItem.activeRowIndex === measureData.RowIndex && this.activeItem.activeCollapseId === measureData.QuestionId) {
 | 
						|
          return
 | 
						|
        } else {
 | 
						|
          this.activeItem.activeCollapseId = measureData.QuestionId
 | 
						|
          this.activeItem.activeRowIndex = measureData.RowIndex
 | 
						|
          this.activeName = `${this.activeItem.activeCollapseId}_${this.activeItem.activeRowIndex}`
 | 
						|
        }
 | 
						|
      }
 | 
						|
    },
 | 
						|
    modifyMeasuredData(measureObj) {
 | 
						|
      if (this.CriterionType !== 10) {
 | 
						|
        if (measureObj.questionInfo) {
 | 
						|
          this.activeItem.activeCollapseId = measureObj.questionInfo.QuestionId
 | 
						|
          this.activeItem.activeRowIndex = String(measureObj.questionInfo.RowIndex)
 | 
						|
          this.activeName = `${this.activeItem.activeCollapseId}_${this.activeItem.activeRowIndex}`
 | 
						|
          const refName = `${this.activeItem.activeCollapseId}_${this.activeItem.activeRowIndex}`
 | 
						|
          this.$refs[refName][0].setMeasureData(measureObj.measureData)
 | 
						|
        }
 | 
						|
      } else {
 | 
						|
        this.$refs['pcwg3'].modifyMeasuredData(measureObj)
 | 
						|
      }
 | 
						|
    },
 | 
						|
    // 设置测量数据
 | 
						|
    setMeasuredData(measureData) {
 | 
						|
      if (this.CriterionType !== 10) {
 | 
						|
        if (this.activeItem.activeCollapseId) {
 | 
						|
          // 判断是否存在测量数据
 | 
						|
          this.$nextTick(() => {
 | 
						|
            const refName = `${this.activeItem.activeCollapseId}_${this.activeItem.activeRowIndex}`
 | 
						|
            if ((this.$refs[refName][0].questionForm && this.$refs[refName][0].questionForm.MeasureData && measureData.data.uuid === this.$refs[refName][0].questionForm.MeasureData.data.uuid) || !this.$refs[refName][0].questionForm.MeasureData) {
 | 
						|
              this.$refs[refName][0].setMeasureData(measureData)
 | 
						|
            } else {
 | 
						|
              if (this.isBaseLineTask) {
 | 
						|
                var idx = this.tableQuestions.findIndex(item => item.LesionType === 0)
 | 
						|
                if (this.tableQuestions[idx].TableQuestions.Answers.length < this.tableQuestions[idx].MaxQuestionCount && (measureData.type === 'Length' || measureData.type === 'Bidirectional')) {
 | 
						|
                  this.createTTarget(measureData)
 | 
						|
                } else {
 | 
						|
                  this.createNTTarget(measureData)
 | 
						|
                }
 | 
						|
              } else {
 | 
						|
                this.createNLTarget(measureData)
 | 
						|
              }
 | 
						|
            }
 | 
						|
          })
 | 
						|
        } else {
 | 
						|
          if (this.isBaseLineTask) {
 | 
						|
            var idx = this.tableQuestions.findIndex(item => item.LesionType === 0)
 | 
						|
            if (this.tableQuestions[idx].TableQuestions.Answers.length < this.tableQuestions[idx].MaxQuestionCount && (measureData.type === 'Length' || measureData.type === 'Bidirectional')) {
 | 
						|
              this.createTTarget(measureData)
 | 
						|
            } else {
 | 
						|
              this.createNTTarget(measureData)
 | 
						|
            }
 | 
						|
          } else {
 | 
						|
            this.createNLTarget(measureData)
 | 
						|
          }
 | 
						|
        }
 | 
						|
      } else {
 | 
						|
        this.$refs['pcwg3'].setMeasuredData(measureData)
 | 
						|
      }
 | 
						|
    },
 | 
						|
    async close(questionsObj) {
 | 
						|
      // if (questionsObj) {
 | 
						|
      //   await store.dispatch('reading/removeReadingQuestionAndAnswer', { lesionType: questionsObj.lesionType, rowIndex: questionsObj.rowIndex, visitTaskId: questionsObj.visitTaskId })
 | 
						|
      //   var idx = this.visitTaskList.findIndex(i => i.VisitTaskId === this.visitTaskId)
 | 
						|
      //   if (idx > -1) {
 | 
						|
      //     if (this.visitTaskList[idx].ReadingQuestions.length > 0) {
 | 
						|
      //       this.questions = this.visitTaskList[idx].ReadingQuestions
 | 
						|
      //     }
 | 
						|
      //     this.getTableQuestions()
 | 
						|
      //   }
 | 
						|
      // }
 | 
						|
      await this.getReadingQuestionAndAnswer()
 | 
						|
      this.activeItem.activeRowIndex = null
 | 
						|
      this.activeItem.activeCollapseId = null
 | 
						|
      this.activeName = ''
 | 
						|
    },
 | 
						|
    getECRFQuestions(obj) {
 | 
						|
      this.$refs['ecrf'].getQuestions(obj.visitTaskId)
 | 
						|
    },
 | 
						|
    receiveMsg(event) {
 | 
						|
      if (event.data.type === 'isCanActiveNoneDicomTool') {
 | 
						|
        this.getUnSaveTarget()
 | 
						|
        var obj = {}
 | 
						|
        if (this.unSaveTargets.length > 0) {
 | 
						|
          var rowIndex = String(this.unSaveTargets[0].rowIndex)
 | 
						|
          var questionId = this.unSaveTargets[0].questionId
 | 
						|
          const refName = `${this.activeItem.activeCollapseId}_${this.activeItem.activeRowIndex}`
 | 
						|
          if (rowIndex === this.activeItem.activeRowIndex && questionId === this.activeItem.activeCollapseId && !this.$refs[refName][0].questionForm.MeasureData) {
 | 
						|
            // 判断是否是靶病灶
 | 
						|
            //  questions.findIndex(i => i.QuestionMark === questionMark)
 | 
						|
            var lesionType = this.$refs[refName][0].questionForm.LesionType
 | 
						|
            if (lesionType === 0) {
 | 
						|
              obj = { isCanActiveTool: false, lesionName: '', reason: '当前病灶为靶病灶,不允许添加标记!' }
 | 
						|
            } else {
 | 
						|
              obj = { isCanActiveTool: true, lesionName: this.$refs[refName][0].lesionMark, reason: '' }
 | 
						|
            }
 | 
						|
          } else {
 | 
						|
            obj = { isCanActiveTool: false, lesionName: '', reason: `病灶${this.unSaveTargets[0].lessionName}信息未保存,不允许添加!` }
 | 
						|
          }
 | 
						|
        } else {
 | 
						|
          if (this.activeItem.activeCollapseId) {
 | 
						|
            // 判断是否是靶病灶
 | 
						|
            const refName = `${this.activeItem.activeCollapseId}_${this.activeItem.activeRowIndex}`
 | 
						|
            obj = { isCanActiveTool: true, lesionName: this.$refs[refName][0].lesionMark, reason: '' }
 | 
						|
          } else {
 | 
						|
            // 获取非靶病灶/新病灶的长度及标识
 | 
						|
            var qsObj = null
 | 
						|
            var lesionName = ''
 | 
						|
            if (this.isBaseLineTask) {
 | 
						|
              const idx = this.tableQuestions.findIndex(item => item.LesionType === 1)
 | 
						|
              if (idx > -1) {
 | 
						|
                qsObj = this.tableQuestions[idx]
 | 
						|
              }
 | 
						|
            } else {
 | 
						|
              const idx = this.tableQuestions.findIndex(item => item.LesionType === 2)
 | 
						|
              if (idx > -1) {
 | 
						|
                qsObj = this.tableQuestions[idx]
 | 
						|
              }
 | 
						|
            }
 | 
						|
 | 
						|
            var questions = qsObj.TableQuestions.Questions.find(item => item.QuestionMark === 3)
 | 
						|
            if (questions) {
 | 
						|
              var maxIndex = this.getMaxRowIndex(qsObj.TableQuestions.Answers)
 | 
						|
              lesionName = `${qsObj.OrderMark}${String(maxIndex + 1).padStart(2, '0')}`
 | 
						|
            }
 | 
						|
            obj = { isCanActiveTool: true, lesionName: lesionName, reason: '' }
 | 
						|
          }
 | 
						|
        }
 | 
						|
 | 
						|
        DicomEvent.$emit('isCanActiveNoneDicomTool', obj)
 | 
						|
      } else if (event.data.type === 'setMeasurement') {
 | 
						|
        this.setMeasuredData(event.data.data)
 | 
						|
      }
 | 
						|
    }
 | 
						|
 | 
						|
  }
 | 
						|
}
 | 
						|
</script>
 | 
						|
<style lang="scss" scoped>
 | 
						|
.measurement-wrapper{
 | 
						|
  overflow-y: auto;
 | 
						|
  // overflow: hidden;
 | 
						|
 | 
						|
  .container{
 | 
						|
    padding: 10px;
 | 
						|
  }
 | 
						|
  .title{
 | 
						|
    padding: 5px;
 | 
						|
    font-weight: bold;
 | 
						|
    color: #ddd;
 | 
						|
    font-size: 15px;
 | 
						|
 | 
						|
  }
 | 
						|
  .add-icon{
 | 
						|
    padding: 5px;
 | 
						|
    font-weight: bold;
 | 
						|
    color: #ddd;
 | 
						|
    font-size: 15px;
 | 
						|
    border: 1px solid #938b8b;
 | 
						|
    margin-bottom: 2px;
 | 
						|
    cursor: pointer;
 | 
						|
  }
 | 
						|
  .add-icon:hover{
 | 
						|
    background-color: #607d8b;
 | 
						|
  }
 | 
						|
 | 
						|
  .flex-row{
 | 
						|
    display: flex;
 | 
						|
    flex-direction: row;
 | 
						|
    justify-content: space-between;
 | 
						|
    background-color: #424242;
 | 
						|
 | 
						|
  }
 | 
						|
  .lesion_list{
 | 
						|
    position: relative;
 | 
						|
  }
 | 
						|
  .el-collapse{
 | 
						|
    border-bottom:none;
 | 
						|
    >>>.el-collapse-item{
 | 
						|
      background-color: #000!important;
 | 
						|
      color: #ddd;
 | 
						|
 | 
						|
    }
 | 
						|
    >>>.el-collapse-item__header{
 | 
						|
      background-color: #000!important;
 | 
						|
      color: #ddd;
 | 
						|
      border-bottom-color:#5a5a5a;
 | 
						|
      padding-left: 5px;
 | 
						|
      height: 35px;
 | 
						|
      line-height: 35px;
 | 
						|
    }
 | 
						|
    >>>.el-collapse-item__wrap{
 | 
						|
      background-color: #000!important;
 | 
						|
      color: #ddd;
 | 
						|
    }
 | 
						|
    >>>.el-collapse-item__content{
 | 
						|
      width:260px;
 | 
						|
      position: absolute;
 | 
						|
      top: 0px;
 | 
						|
      right: 0px;
 | 
						|
      border: 1px solid #ffeb3b;
 | 
						|
      z-index: 1;
 | 
						|
      color: #ddd;
 | 
						|
      padding: 5px;
 | 
						|
      background-color:#1e1e1e;
 | 
						|
    }
 | 
						|
 | 
						|
  }
 | 
						|
}
 | 
						|
</style>
 |