Merge branch 'main' of https://gitea.frp.extimaging.com/XCKJ/irc_web
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
commit
eec16c1a2c
|
@ -312,7 +312,7 @@ export default {
|
||||||
getInstanceList(seriesId).then(res => {
|
getInstanceList(seriesId).then(res => {
|
||||||
if (!res.Result || (res.Result && res.Result.length === 0)) return
|
if (!res.Result || (res.Result && res.Result.length === 0)) return
|
||||||
var seriesInstanceUid = res.Result[0].SeriesInstanceUid
|
var seriesInstanceUid = res.Result[0].SeriesInstanceUid
|
||||||
var sliceLocation = res.Result[0].SliceLocation
|
var sliceThickness = res.Result[0].SliceThickness
|
||||||
var isReading = res.Result[0].IsReading
|
var isReading = res.Result[0].IsReading
|
||||||
var isDeleted = res.Result[0].IsDeleted
|
var isDeleted = res.Result[0].IsDeleted
|
||||||
var seriesList = []
|
var seriesList = []
|
||||||
|
@ -339,7 +339,7 @@ export default {
|
||||||
seriesId: seriesId,
|
seriesId: seriesId,
|
||||||
seriesUid: seriesInstanceUid,
|
seriesUid: seriesInstanceUid,
|
||||||
seriesNumber: seriesNumber,
|
seriesNumber: seriesNumber,
|
||||||
sliceThickness: sliceLocation,
|
sliceThickness: sliceThickness,
|
||||||
modality: this.modality,
|
modality: this.modality,
|
||||||
description: this.description,
|
description: this.description,
|
||||||
isReading,
|
isReading,
|
||||||
|
|
|
@ -73,13 +73,23 @@
|
||||||
clearable
|
clearable
|
||||||
@change="((val)=>{formItemChange(val, question)})"
|
@change="((val)=>{formItemChange(val, question)})"
|
||||||
>
|
>
|
||||||
|
<template v-if="pet5PS*1=== -1">
|
||||||
<el-option
|
<el-option
|
||||||
v-for="item of $d[question.DictionaryCode]"
|
v-for="item of $d[question.DictionaryCode]"
|
||||||
v-show="(pet5PS*1=== -1) || (pet5PS*1!== -1 && item.value !== 4)"
|
v-show="item.value !== 4"
|
||||||
:key="item.id"
|
:key="item.id"
|
||||||
:value="String(item.value)"
|
:value="String(item.value)"
|
||||||
:label="item.label"
|
:label="item.label"
|
||||||
/>
|
/>
|
||||||
|
</template>
|
||||||
|
<template v-else>
|
||||||
|
<el-option
|
||||||
|
v-for="item of $d[question.DictionaryCode]"
|
||||||
|
:key="item.id"
|
||||||
|
:value="String(item.value)"
|
||||||
|
:label="item.label"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
</el-select>
|
</el-select>
|
||||||
</template>
|
</template>
|
||||||
<template v-else-if="question.QuestionType === 57">
|
<template v-else-if="question.QuestionType === 57">
|
||||||
|
@ -89,13 +99,23 @@
|
||||||
clearable
|
clearable
|
||||||
@change="((val)=>{formItemChange(val, question)})"
|
@change="((val)=>{formItemChange(val, question)})"
|
||||||
>
|
>
|
||||||
|
<template v-if="pet5PS*1=== -1">
|
||||||
<el-option
|
<el-option
|
||||||
v-for="item of $d[question.DictionaryCode]"
|
v-for="item of $d[question.DictionaryCode]"
|
||||||
v-show="(pet5PS*1=== -1) || (pet5PS*1!== -1 && item.value !== 1)"
|
v-show="item.value !== 1"
|
||||||
:key="item.id"
|
:key="item.id"
|
||||||
:value="String(item.value)"
|
:value="String(item.value)"
|
||||||
:label="item.label"
|
:label="item.label"
|
||||||
/>
|
/>
|
||||||
|
</template>
|
||||||
|
<template v-else>
|
||||||
|
<el-option
|
||||||
|
v-for="item of $d[question.DictionaryCode]"
|
||||||
|
:key="item.id"
|
||||||
|
:value="String(item.value)"
|
||||||
|
:label="item.label"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
</el-select>
|
</el-select>
|
||||||
</template>
|
</template>
|
||||||
<!-- 输入框 -->
|
<!-- 输入框 -->
|
||||||
|
|
Loading…
Reference in New Issue