696 lines
		
	
	
		
			22 KiB
		
	
	
	
		
			Plaintext
		
	
	
			
		
		
	
	
			696 lines
		
	
	
		
			22 KiB
		
	
	
	
		
			Plaintext
		
	
	
<template>
 | 
						|
  <div class="criterion-form-item">
 | 
						|
    <!-- <div
 | 
						|
      v-if="!!question.GroupName && (questionForm[question.ParentId] === question.ParentTriggerValue) || question.ParentId===''||question.ParentId===null"
 | 
						|
      style="font-weight: bold;font-size: 16px;margin: 5px 0px;"
 | 
						|
    >
 | 
						|
      {{ question.GroupName }}
 | 
						|
    </div> -->
 | 
						|
    <div
 | 
						|
      v-if="!!question.GroupName && question.Type==='group'"
 | 
						|
      style="font-weight: bold;font-size: 16px;margin: 5px 0px;"
 | 
						|
    >
 | 
						|
      {{ language==='en'?question.GroupEnName:question.GroupName }}
 | 
						|
    </div>
 | 
						|
    <div
 | 
						|
      v-if=" question.Type==='table'"
 | 
						|
      style="font-weight: bold;font-size: 14px;margin: 5px 0px;"
 | 
						|
    >
 | 
						|
      <div style="display: flex;justify-content: space-between;">
 | 
						|
        <span>{{ question.QuestionName }}</span>
 | 
						|
        <!-- 添加 -->
 | 
						|
        <el-button type="primary" @click="openAddTableCol(question)">
 | 
						|
          {{ $t('trials:readingUnit:qsList:title:add') }}
 | 
						|
        </el-button>
 | 
						|
      </div>
 | 
						|
      <el-table
 | 
						|
        :data="questionForm[question.Id]"
 | 
						|
      >
 | 
						|
        <el-table-column
 | 
						|
          v-for="item of question.TableQuestions.Questions"
 | 
						|
          :key="item.Id"
 | 
						|
          :prop="item.Id"
 | 
						|
          :label="item.QuestionName"
 | 
						|
          min-width="100"
 | 
						|
          show-overflow-tooltip
 | 
						|
        />
 | 
						|
      </el-table>
 | 
						|
    </div>
 | 
						|
    <template v-else>
 | 
						|
      <el-form-item
 | 
						|
        v-if="(question.ShowQuestion===1 && !!~question.ParentTriggerValueList.indexOf(questionForm[question.ParentId])) || question.ShowQuestion===0"
 | 
						|
        :label="`${question.QuestionName}`"
 | 
						|
        :prop="question.Id"
 | 
						|
        :rules="[
 | 
						|
          { required: (question.IsRequired === 0 || (question.IsRequired ===1 && question.RelevanceId && (!!~question.RelevanceValueList.indexOf(questionForm[question.RelevanceId])))) && question.Type!=='group' && question.Type!=='summary',
 | 
						|
            message: this.$t('common:ruleMessage:specify'), trigger: ['blur', 'change']},
 | 
						|
        ]"
 | 
						|
        :class="[question.Type==='group'?'mb':question.Type==='upload'?'uploadWrapper':'']"
 | 
						|
      >
 | 
						|
        <!-- 输入框 -->
 | 
						|
        <el-input
 | 
						|
          v-if="question.Type==='input'"
 | 
						|
          v-model="questionForm[question.Id]"
 | 
						|
          :disabled="question.TableQuestionType === 2"
 | 
						|
        />
 | 
						|
        <!-- 多行文本输入框 -->
 | 
						|
        <el-input
 | 
						|
          v-if="question.Type==='textarea'"
 | 
						|
          v-model="questionForm[question.Id]"
 | 
						|
          type="textarea"
 | 
						|
          :autosize="{ minRows: 2, maxRows: 4}"
 | 
						|
        />
 | 
						|
        <!-- 下拉框 -->
 | 
						|
        <el-select
 | 
						|
          v-if="question.Type==='select'"
 | 
						|
          v-model="questionForm[question.Id]"
 | 
						|
          clearable
 | 
						|
          :disabled="(question.TableQuestionType === 2 || question.QuestionGenre === 2) && !!question.DictionaryCode"
 | 
						|
          @change="((val)=>{formItemChange(val, question)})"
 | 
						|
        >
 | 
						|
          <template v-if="question.TableQuestionType === 1">
 | 
						|
            <el-option
 | 
						|
              v-for="item in organList"
 | 
						|
              :key="item.Id"
 | 
						|
              :label="item[question.DataTableColumn]"
 | 
						|
              :value="item[question.DataTableColumn]"
 | 
						|
            />
 | 
						|
          </template>
 | 
						|
          <template v-else-if="question.TableQuestionType === 3 || question.QuestionGenre === 3">
 | 
						|
            <el-option
 | 
						|
              v-for="item of $d[question.DictionaryCode]"
 | 
						|
              :key="item.id"
 | 
						|
              :value="item.value"
 | 
						|
              :label="item.label"
 | 
						|
            />
 | 
						|
          </template>
 | 
						|
          <template v-else-if="(question.TableQuestionType === 2 || question.QuestionGenre === 2) && question.DictionaryCode">
 | 
						|
            <el-option
 | 
						|
              v-for="item of $d[question.DictionaryCode]"
 | 
						|
              :key="item.id"
 | 
						|
              :value="item.value"
 | 
						|
              :label="item.label"
 | 
						|
            />
 | 
						|
          </template>
 | 
						|
          <template v-else>
 | 
						|
            <el-option
 | 
						|
              v-for="val in question.TypeValue.split('|')"
 | 
						|
              :key="val"
 | 
						|
              :label="val"
 | 
						|
              :value="val"
 | 
						|
            />
 | 
						|
          </template>
 | 
						|
 | 
						|
        </el-select>
 | 
						|
        <!-- 单选 -->
 | 
						|
        <el-radio-group
 | 
						|
          v-if="question.Type==='radio'"
 | 
						|
          v-model="questionForm[question.Id]"
 | 
						|
          @change="((val)=>{formItemChange(val, question)})"
 | 
						|
        >
 | 
						|
        <template v-if="question.DictionaryCode">
 | 
						|
          <el-radio
 | 
						|
            v-for="item of $d[question.DictionaryCode]"
 | 
						|
            :key="item.id"
 | 
						|
            :label="item.value"
 | 
						|
          >
 | 
						|
            {{ item.label }}
 | 
						|
          </el-radio>
 | 
						|
        </template>
 | 
						|
        <template v-if="question.TypeValue">
 | 
						|
          <el-radio
 | 
						|
            v-for="val in question.TypeValue.split('|')"
 | 
						|
            :key="val"
 | 
						|
            :label="val"
 | 
						|
          >
 | 
						|
            {{ val }}
 | 
						|
          </el-radio>
 | 
						|
        </template>
 | 
						|
        </el-radio-group>
 | 
						|
        <!-- 复选框 -->
 | 
						|
        <el-checkbox-group
 | 
						|
          v-if="question.Type==='checkbox'"
 | 
						|
          v-model="questionForm[question.Id]"
 | 
						|
        >
 | 
						|
          <template v-if="question.DictionaryCode">
 | 
						|
            <el-checkbox
 | 
						|
              v-for="item of $d[question.DictionaryCode]"
 | 
						|
              :key="item.id"
 | 
						|
              :label="item.value"
 | 
						|
            >
 | 
						|
              {{ item.label }}
 | 
						|
            </el-checkbox>
 | 
						|
          </template>
 | 
						|
          <template v-if="question.TypeValue">
 | 
						|
            <el-checkbox
 | 
						|
              v-for="val in question.TypeValue.split('|')"
 | 
						|
              :key="val"
 | 
						|
              :label="val"
 | 
						|
            >
 | 
						|
              {{ val }}
 | 
						|
            </el-checkbox>
 | 
						|
          </template>
 | 
						|
        </el-checkbox-group>
 | 
						|
 | 
						|
        <!-- 自动计算 -->
 | 
						|
        <!-- :precision="2" :step="0.1" :max="10" -->
 | 
						|
        <el-input
 | 
						|
          v-if="question.Type==='calculation'"
 | 
						|
          v-model="questionForm[question.Id]"
 | 
						|
          disabled
 | 
						|
        />
 | 
						|
        <!-- 自增 -->
 | 
						|
        <el-input
 | 
						|
          v-if="question.Type==='increment'"
 | 
						|
          v-model="questionForm[question.Id]"
 | 
						|
          disabled
 | 
						|
        />
 | 
						|
        <!-- 数值 -->
 | 
						|
        <!-- :precision="2" :step="0.1" :max="10" -->
 | 
						|
        <el-input
 | 
						|
          v-if="question.Type === 'number' && question.DataSource !== 1"
 | 
						|
          v-model="questionForm[question.Id]"
 | 
						|
          type="number"
 | 
						|
          @change="((val)=>{formItemNumberChange(val, question)})"
 | 
						|
        />
 | 
						|
        <el-input
 | 
						|
          v-if="question.Type === 'number' && question.DataSource === 1"
 | 
						|
          v-model="questionForm[question.Id]"
 | 
						|
          type="number"
 | 
						|
          :disabled="question.DataSource === 1"
 | 
						|
        />
 | 
						|
        <!-- 上传图像 -->
 | 
						|
        <el-upload
 | 
						|
          v-if="question.Type==='upload'"
 | 
						|
          :action="accept"
 | 
						|
          :limit="question.ImageCount"
 | 
						|
          :on-preview="handlePictureCardPreview"
 | 
						|
          :before-upload="handleBeforeUpload"
 | 
						|
          :http-request="uploadScreenshot"
 | 
						|
          list-type="picture-card"
 | 
						|
          :on-remove="handleRemove"
 | 
						|
          :file-list="fileList"
 | 
						|
          :class="{disabled:fileList.length >= question.ImageCount}"
 | 
						|
        >
 | 
						|
          <i slot="default" class="el-icon-plus" />
 | 
						|
          <div slot="file" slot-scope="{file}">
 | 
						|
            <img
 | 
						|
              class="el-upload-list__item-thumbnail"
 | 
						|
              :src="file.url"
 | 
						|
              alt=""
 | 
						|
            >
 | 
						|
            <span class="el-upload-list__item-actions">
 | 
						|
              <span
 | 
						|
                class="el-upload-list__item-preview"
 | 
						|
                @click="handlePictureCardPreview(file)"
 | 
						|
              >
 | 
						|
                <i class="el-icon-zoom-in" />
 | 
						|
              </span>
 | 
						|
 | 
						|
              <span
 | 
						|
                v-if="readingTaskState < 2"
 | 
						|
                class="el-upload-list__item-delete"
 | 
						|
                @click="handleRemove(file)"
 | 
						|
              >
 | 
						|
                <i class="el-icon-delete" />
 | 
						|
              </span>
 | 
						|
            </span>
 | 
						|
          </div>
 | 
						|
        </el-upload>
 | 
						|
        <el-dialog
 | 
						|
          v-if="question.Type==='upload'"
 | 
						|
          append-to-body
 | 
						|
          :visible.sync="imgVisible"
 | 
						|
          width="600px"
 | 
						|
        >
 | 
						|
          <el-image :src="imageUrl" width="100%">
 | 
						|
            <!-- 加载中 -->
 | 
						|
            <div slot="placeholder" class="image-slot">
 | 
						|
              {{ $t('trials:readingUnit:qsList:message:loading') }}<span class="dot">...</span>
 | 
						|
            </div>
 | 
						|
          </el-image>
 | 
						|
        </el-dialog>
 | 
						|
      </el-form-item>
 | 
						|
    </template>
 | 
						|
 | 
						|
    <template v-if="question.Childrens && question.Childrens.length>0 && question.Type !== 'table'">
 | 
						|
      <QuestionFormItem
 | 
						|
        v-for="(item) in question.Childrens"
 | 
						|
        :key="item.Id"
 | 
						|
        :question="item"
 | 
						|
        :reading-task-state="readingTaskState"
 | 
						|
        :question-form="questionForm"
 | 
						|
        :visit-task-id="visitTaskId"
 | 
						|
        :criterion-id="criterionId"
 | 
						|
        :calculation-list="calculationList"
 | 
						|
        @formItemNumberChange="formItemNumberChange"
 | 
						|
        @setFormItemData="setFormItemData"
 | 
						|
        @resetFormItemData="resetFormItemData"
 | 
						|
      />
 | 
						|
    </template>
 | 
						|
    <el-dialog
 | 
						|
      v-if="addOrEdit.visible"
 | 
						|
      class="my_dialog"
 | 
						|
      :visible.sync="addOrEdit.visible"
 | 
						|
      :close-on-click-modal="false"
 | 
						|
      :title="addOrEdit.title"
 | 
						|
      width="400px"
 | 
						|
      append-to-body
 | 
						|
    >
 | 
						|
      <el-form
 | 
						|
        ref="tableQsForm"
 | 
						|
        v-loading="loading"
 | 
						|
        size="small"
 | 
						|
      >
 | 
						|
        <QuestionTableFormItem
 | 
						|
          v-for="(item) in QuestionsList"
 | 
						|
          :key="item.Id"
 | 
						|
          :question="item"
 | 
						|
          :reading-task-state="readingTaskState"
 | 
						|
          :question-form="QuestionsForm"
 | 
						|
          :visit-task-id="visitTaskId"
 | 
						|
          :criterion-id="criterionId"
 | 
						|
          @formItemTableNumberChange="formItemTableNumberChange"
 | 
						|
          @setFormItemData="setFormItemData"
 | 
						|
          @resetFormItemData="resetFormItemData"
 | 
						|
        />
 | 
						|
        <div class="base-dialog-footer" style="text-align:right;margin-top:10px;">
 | 
						|
          <el-form-item>
 | 
						|
            <!-- 取消 -->
 | 
						|
            <el-button
 | 
						|
              size="small"
 | 
						|
              type="primary"
 | 
						|
              @click="addOrEdit.visible = false"
 | 
						|
            >
 | 
						|
              {{ $t('common:button:cancel') }}
 | 
						|
            </el-button>
 | 
						|
            <!-- 保存 -->
 | 
						|
            <el-button size="small" type="primary" @click="save">
 | 
						|
              {{ $t('common:button:save') }}
 | 
						|
            </el-button>
 | 
						|
          </el-form-item>
 | 
						|
        </div>
 | 
						|
      </el-form>
 | 
						|
    </el-dialog>
 | 
						|
  </div>
 | 
						|
</template>
 | 
						|
<script>
 | 
						|
import { uploadReadingAnswerImage, getTrialOrganList, getCustomTableQuestionPreview, getQuestionCalculateRelation } from '@/api/trials'
 | 
						|
import QuestionTableFormItem from './QuestionTableFormItem'
 | 
						|
import { mapGetters } from 'vuex'
 | 
						|
export default {
 | 
						|
  name: 'QuestionFormItem',
 | 
						|
  components: { QuestionTableFormItem },
 | 
						|
  props: {
 | 
						|
    questionForm: {
 | 
						|
      type: Object,
 | 
						|
      default() {
 | 
						|
        return {}
 | 
						|
      }
 | 
						|
    },
 | 
						|
    question: {
 | 
						|
      type: Object,
 | 
						|
      default() {
 | 
						|
        return []
 | 
						|
      }
 | 
						|
    },
 | 
						|
    criterionId: {
 | 
						|
      type: String,
 | 
						|
      required: true
 | 
						|
    },
 | 
						|
    readingTaskState: {
 | 
						|
      type: Number,
 | 
						|
      required: true
 | 
						|
    },
 | 
						|
    visitTaskId: {
 | 
						|
      type: String,
 | 
						|
      default: ''
 | 
						|
    },
 | 
						|
    calculationList: {
 | 
						|
      type: Array,
 | 
						|
      default() {
 | 
						|
        return []
 | 
						|
      }
 | 
						|
    }
 | 
						|
  },
 | 
						|
  
 | 
						|
  computed: {
 | 
						|
    ...mapGetters(['language'])
 | 
						|
  },
 | 
						|
  data() {
 | 
						|
    return {
 | 
						|
      addOrEdit: { visible: false, title: '' },
 | 
						|
      fileList: [],
 | 
						|
      accept: '.png,.jpg,.jpeg',
 | 
						|
      imgVisible: false,
 | 
						|
      imageUrl: '',
 | 
						|
      urls: [],
 | 
						|
      organList: [],
 | 
						|
      QuestionsList: [],
 | 
						|
      QuestionsForm: {},
 | 
						|
      AnswersList: [],
 | 
						|
      loading: false
 | 
						|
    }
 | 
						|
  },
 | 
						|
  watch: {
 | 
						|
    questionForm: {
 | 
						|
      deep: true,
 | 
						|
      immediate: true,
 | 
						|
      handler(v, oldv) {
 | 
						|
        try {
 | 
						|
          if (!v || !v[this.question.Id] || !oldv || !oldv[this.question.Id]) return
 | 
						|
        } catch (e) {
 | 
						|
          console.log(e, v)
 | 
						|
        }
 | 
						|
        this.formItemNumberChange(this.question.Id, false)
 | 
						|
      }
 | 
						|
    }
 | 
						|
  },
 | 
						|
  mounted() {
 | 
						|
    if (this.question.Type === 'upload') {
 | 
						|
      if (this.questionForm[this.question.Id]) {
 | 
						|
        this.urls = this.questionForm[this.question.Id].split('|')
 | 
						|
        this.fileList = []
 | 
						|
        this.urls.map(url => {
 | 
						|
          this.fileList.push({ name: '', url: `${url}` })
 | 
						|
        })
 | 
						|
      }
 | 
						|
    }
 | 
						|
    if (this.question.Type === 'table') {
 | 
						|
      // this.getQuestionCalculateRelation()
 | 
						|
      if (this.questionForm[this.question.Id]) {
 | 
						|
        this.QuestionsForm = {}
 | 
						|
        this.question.TableQuestions.Questions.forEach(v => {
 | 
						|
          if (v.Type === 'number') {
 | 
						|
            this.$set(this.QuestionsForm, v.Id, 0)
 | 
						|
          } else {
 | 
						|
            this.$set(this.QuestionsForm, v.Id, '')
 | 
						|
          }
 | 
						|
        })
 | 
						|
      }
 | 
						|
    }
 | 
						|
  },
 | 
						|
  methods: {
 | 
						|
    getQuestionCalculateRelation() {
 | 
						|
      getQuestionCalculateRelation({
 | 
						|
        TrialReadingCriterionId: this.criterionId,
 | 
						|
        ReadingQuestionId: this.question.Id
 | 
						|
      }).then(res => {
 | 
						|
        this.calculationList = res.Result
 | 
						|
      })
 | 
						|
    },
 | 
						|
    save() {
 | 
						|
      this.AnswersList.push(this.QuestionsForm)
 | 
						|
      this.$emit('setFormItemData', { key: this.question.Id, val: this.AnswersList })
 | 
						|
      this.formItemNumberChange(this.question.Id, true)
 | 
						|
      this.addOrEdit.visible = false
 | 
						|
    },
 | 
						|
    logic(rules, num = 0) {
 | 
						|
      try {
 | 
						|
        if (rules.CalculateQuestionList.length === 0) {
 | 
						|
          return false
 | 
						|
        }
 | 
						|
        rules.CalculateQuestionList.forEach((o, i) => {
 | 
						|
          if (i === 0) {
 | 
						|
            if (rules.CustomCalculateMark > 4) {
 | 
						|
              switch (rules.CustomCalculateMark) {
 | 
						|
                case 5:
 | 
						|
                  this.questionForm[o.QuestionId].forEach((q, qi) => {
 | 
						|
                    if (qi === 0) {
 | 
						|
                      num = parseFloat(q[o.TableQuestionId])
 | 
						|
                    } else {
 | 
						|
                      num *= parseFloat(q[o.TableQuestionId])
 | 
						|
                    }
 | 
						|
                  })
 | 
						|
                  break
 | 
						|
                case 6:
 | 
						|
                  console.log(this.questionForm[o.QuestionId])
 | 
						|
                  console.log(this.questionForm)
 | 
						|
                  this.questionForm[o.QuestionId].forEach((q, qi) => {
 | 
						|
                    if (qi === 0) {
 | 
						|
                      num = parseFloat(q[o.TableQuestionId])
 | 
						|
                    } else {
 | 
						|
                      num += parseFloat(q[o.TableQuestionId])
 | 
						|
                    }
 | 
						|
                  })
 | 
						|
                  break
 | 
						|
                case 7:
 | 
						|
                  this.questionForm[o.QuestionId].forEach((q, qi) => {
 | 
						|
                    if (qi === 0) {
 | 
						|
                      num = parseFloat(q[o.TableQuestionId])
 | 
						|
                    } else {
 | 
						|
                      num += parseFloat(q[o.TableQuestionId])
 | 
						|
                    }
 | 
						|
                  })
 | 
						|
                  num = this.questionForm[o.QuestionId].length === 0 ? 0 : num / this.questionForm[o.QuestionId].length
 | 
						|
                  break
 | 
						|
                case 8:
 | 
						|
                  var arr = []
 | 
						|
                  this.questionForm[o.QuestionId].forEach(q => {
 | 
						|
                    arr.push(q[o.TableQuestionId])
 | 
						|
                  })
 | 
						|
                  num = arr.length === 0 ? 0 : Math.max(...arr)
 | 
						|
                  break
 | 
						|
                case 9:
 | 
						|
                  var arr = []
 | 
						|
                  this.questionForm[o.QuestionId].forEach(q => {
 | 
						|
                    arr.push(q[o.TableQuestionId])
 | 
						|
                  })
 | 
						|
                  num = arr.length === 0 ? 0 : Math.min(...arr)
 | 
						|
                  console.log('min', this.questionForm[o.QuestionId], arr, num)
 | 
						|
                  break
 | 
						|
              }
 | 
						|
            } else {
 | 
						|
              num = parseFloat(this.questionForm[o.TableQuestionId])
 | 
						|
            }
 | 
						|
          } else {
 | 
						|
            switch (rules.CustomCalculateMark) {
 | 
						|
              case 1:
 | 
						|
                num += parseFloat(this.questionForm[o.TableQuestionId])
 | 
						|
                break
 | 
						|
              case 2:
 | 
						|
                num -= parseFloat(this.questionForm[o.TableQuestionId])
 | 
						|
                break
 | 
						|
              case 3:
 | 
						|
                num *= parseFloat(this.questionForm[o.TableQuestionId])
 | 
						|
                break
 | 
						|
              case 4:
 | 
						|
                num /= parseFloat(this.questionForm[o.TableQuestionId])
 | 
						|
                break
 | 
						|
            }
 | 
						|
          }
 | 
						|
        })
 | 
						|
      } catch (e) {
 | 
						|
        console.log(e)
 | 
						|
      }
 | 
						|
      return num
 | 
						|
    },
 | 
						|
    formItemNumberChange(questionId, isTable) {
 | 
						|
      if (isTable) {
 | 
						|
        this.calculationList.forEach((v, i) => {
 | 
						|
          console.log(v, i)
 | 
						|
          var find = v.CalculateQuestionList.filter(o => {
 | 
						|
            return o.QuestionId === questionId
 | 
						|
          })
 | 
						|
          // find的自动计算值number
 | 
						|
          console.log('find', find)
 | 
						|
          if (find) {
 | 
						|
            var num = this.logic(v)
 | 
						|
            if (num !== false) {
 | 
						|
              this.$emit('setFormItemData', { key: v.QuestionId, val: num })
 | 
						|
            }
 | 
						|
          }
 | 
						|
        })
 | 
						|
      } else {
 | 
						|
        this.calculationList.forEach(v => {
 | 
						|
          var find = v.CalculateQuestionList.filter(o => {
 | 
						|
            return o.TableQuestionId === questionId
 | 
						|
          })
 | 
						|
          // find的自动计算值number
 | 
						|
          if (find) {
 | 
						|
            var num = this.logic(v)
 | 
						|
            if (num !== false) {
 | 
						|
              this.$emit('setFormItemData', { key: v.QuestionId, val: num })
 | 
						|
            }
 | 
						|
          }
 | 
						|
        })
 | 
						|
      }
 | 
						|
      // this.$emit('formItemNumberChange')
 | 
						|
    },
 | 
						|
    formItemTableNumberChange() {
 | 
						|
      this.question.TableQuestions.Questions.forEach(v => {
 | 
						|
        if (v.Type === 'number' && v.DataSource === 1) {
 | 
						|
          var CalculateQuestions = JSON.parse(v.CalculateQuestions)
 | 
						|
          var num
 | 
						|
          CalculateQuestions.forEach((o, i) => {
 | 
						|
            if (i === 0) {
 | 
						|
              num = this.QuestionsForm[o.TableQuestionId]
 | 
						|
            } else {
 | 
						|
              switch (v.CustomCalculateMark) {
 | 
						|
                case 1:
 | 
						|
                  num += this.QuestionsForm[o.TableQuestionId]
 | 
						|
                  break
 | 
						|
                case 2:
 | 
						|
                  num -= this.QuestionsForm[o.TableQuestionId]
 | 
						|
                  break
 | 
						|
                case 3:
 | 
						|
                  num *= this.QuestionsForm[o.TableQuestionId]
 | 
						|
                  break
 | 
						|
                case 4:
 | 
						|
                  num /= this.QuestionsForm[o.TableQuestionId]
 | 
						|
                  break
 | 
						|
              }
 | 
						|
            }
 | 
						|
          })
 | 
						|
          this.$set(this.QuestionsForm, v.Id, num.toString())
 | 
						|
        }
 | 
						|
      })
 | 
						|
    },
 | 
						|
    openAddTableCol(row) {
 | 
						|
      this.addOrEdit.visible = true
 | 
						|
      this.addOrEdit.title = row.QuestionName + this.$t('trials:readingUnit:qsList:title:tableQs')// '表格问题'
 | 
						|
      this.QuestionsList = row.TableQuestions.Questions
 | 
						|
      this.AnswersList = row.TableQuestions.Answers
 | 
						|
      this.QuestionsForm = {}
 | 
						|
    },
 | 
						|
    getOrganInfoList() {
 | 
						|
      var param = {
 | 
						|
        trialId: this.$route.query.trialId,
 | 
						|
        lesionType: this.question.LesionType,
 | 
						|
        // systemCriterionId: this.criterionId,
 | 
						|
        isEnable: true
 | 
						|
      }
 | 
						|
      getTrialOrganList(param).then(res => {
 | 
						|
        this.organList = res.Result
 | 
						|
      })
 | 
						|
    },
 | 
						|
    formNumberItemChange(v) {
 | 
						|
      this.$emit('setFormItemData', { key: v.QuestionId, val: num })
 | 
						|
    },
 | 
						|
    formItemChange(v, question) {
 | 
						|
      if (question.Childrens.length > 0) {
 | 
						|
        this.resetChild(question.Childrens)
 | 
						|
      }
 | 
						|
      if (question.TableQuestionType === 1 && question.RelationQuestions.length > 0) {
 | 
						|
        var index = this.organList.findIndex(item => item[question.DataTableColumn] === v)
 | 
						|
        if (index < 0) return
 | 
						|
        var selected = this.organList[index]
 | 
						|
        this.question.RelationQuestions.map(qs => {
 | 
						|
          var val = selected[qs.DataTableColumn]
 | 
						|
          // if (typeof val === 'boolean') {
 | 
						|
          //   // val = String(val)
 | 
						|
          // }
 | 
						|
          this.$emit('setFormItemData', { key: qs.Id, val: val })
 | 
						|
        })
 | 
						|
      }
 | 
						|
    },
 | 
						|
    resetChild(obj) {
 | 
						|
      obj.forEach(i => {
 | 
						|
        this.$emit('resetFormItemData', i.Id)
 | 
						|
        if (i.Childrens && i.Childrens.length > 0) {
 | 
						|
          this.resetChild(i.Childrens)
 | 
						|
        }
 | 
						|
      })
 | 
						|
    },
 | 
						|
    resetFormItemData(v) {
 | 
						|
      this.$emit('resetFormItemData', v)
 | 
						|
    },
 | 
						|
    setFormItemData(obj) {
 | 
						|
      this.$emit('setFormItemData', obj)
 | 
						|
    },
 | 
						|
    uploadScreenshot(param) {
 | 
						|
      if (!this.visitTaskId) return
 | 
						|
      const loading = this.$loading({
 | 
						|
        target: document.querySelector('.ecrf-wrapper'),
 | 
						|
        fullscreen: false,
 | 
						|
        lock: true,
 | 
						|
        text: 'Loading',
 | 
						|
        spinner: 'el-icon-loading'
 | 
						|
      })
 | 
						|
      const formData = new FormData()
 | 
						|
      formData.append('file', param.file)
 | 
						|
      uploadReadingAnswerImage(this.$route.query.trialId, this.visitTaskId, formData).then(res => {
 | 
						|
        if (res.IsSuccess) {
 | 
						|
          this.fileList.push({ url: `${res.Result.Path}` })
 | 
						|
          this.urls.push(res.Result.Path)
 | 
						|
          this.$emit('setFormItemData', { key: this.question.Id, val: this.urls.length > 0 ? this.urls.join('|') : '' })
 | 
						|
        }
 | 
						|
        loading.close()
 | 
						|
      }).catch(() => {
 | 
						|
        loading.close()
 | 
						|
      })
 | 
						|
    },
 | 
						|
    handleBeforeUpload(file) {
 | 
						|
      // 检测文件类型是否符合要求
 | 
						|
      if (this.checkFileSuffix(file.name)) {
 | 
						|
        // this.fileList = []
 | 
						|
        return true
 | 
						|
      } else {
 | 
						|
        var msg = this.$t('trials:readingUnit:qsList:message:imageFormat').replace('xxx', this.accept)
 | 
						|
        this.$alert(msg)
 | 
						|
        return false
 | 
						|
      }
 | 
						|
    },
 | 
						|
    checkFileSuffix(fileName) {
 | 
						|
      var index = fileName.lastIndexOf('.')
 | 
						|
      var suffix = fileName.substring(index + 1, fileName.length)
 | 
						|
      if (this.accept.toLocaleLowerCase().search(suffix.toLocaleLowerCase()) === -1) {
 | 
						|
        return false
 | 
						|
      } else {
 | 
						|
        return true
 | 
						|
      }
 | 
						|
    },
 | 
						|
    autoCalculation() {
 | 
						|
      // console.log('自动计算')
 | 
						|
    },
 | 
						|
    // 预览图片
 | 
						|
    handlePictureCardPreview(file) {
 | 
						|
      this.imageUrl = file.url
 | 
						|
      this.imgVisible = true
 | 
						|
    },
 | 
						|
    // 删除图片
 | 
						|
    handleRemove(file, fileList) {
 | 
						|
      this.imageUrl = ''
 | 
						|
      this.fileList.splice(this.fileList.findIndex(f => f.url === file.url), 1)
 | 
						|
      this.urls.splice(this.fileList.findIndex(f => f === file.url), 1)
 | 
						|
      this.$emit('setFormItemData', { key: this.question.Id, val: this.urls.length > 0 ? this.urls.join('|') : '' })
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 | 
						|
</script>
 | 
						|
<style lang="scss" scoped>
 | 
						|
.my_dialog{
 | 
						|
  .criterion-form-item{
 | 
						|
    >>>.el-form-item__content{
 | 
						|
      width: auto;
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 | 
						|
.criterion-form-item{
 | 
						|
  .el-form-item{
 | 
						|
    display: flex;
 | 
						|
    flex-direction: row;
 | 
						|
    align-items: flex-start;
 | 
						|
  }
 | 
						|
  >>>.el-form-item__content{
 | 
						|
    width: 500px;
 | 
						|
  }
 | 
						|
  .el-input{
 | 
						|
    width:100%;
 | 
						|
  }
 | 
						|
.mb{
 | 
						|
  margin-bottom: 0px;
 | 
						|
}
 | 
						|
.disabled{
 | 
						|
  >>>.el-upload--picture-card {
 | 
						|
    display: none;
 | 
						|
  }
 | 
						|
}
 | 
						|
.uploadWrapper{
 | 
						|
  display: flex;
 | 
						|
  flex-direction: column;
 | 
						|
  align-items: flex-start;
 | 
						|
}
 | 
						|
}
 | 
						|
</style>
 |