|
|
|
@ -47,7 +47,9 @@ |
|
|
|
:showOperation="fillType === 'actFill' || fillType === 'preFill'" |
|
|
|
:tableColumns="ladderStepColumns" :prefixKey="'ladder_' + ladderIndex" |
|
|
|
:configType="'ladder'" :ref="`ladderRef_${ladderIndex}`" |
|
|
|
:fieldItemLabel="'template.common.jtpz'" |
|
|
|
:sn = "sn" |
|
|
|
ladderType = "bq" |
|
|
|
:fieldItemLabel="getOperationStepsLabel()" |
|
|
|
:showHeader="!isPcr234" |
|
|
|
@deleteConfig="deleteConfig('ladderConfigs', ladderConfig)" :fillType="fillType" /> |
|
|
|
</div> |
|
|
|
@ -59,12 +61,12 @@ |
|
|
|
:showOperation="fillType === 'actFill' || fillType === 'preFill'" |
|
|
|
:tableColumns="paralleStepColumns" :prefixKey="'paralle_' + paralleIndex" |
|
|
|
:configType="'paralle'" :ref="`paralleRef_${paralleIndex}`" |
|
|
|
:fieldItemLabel="'template.common.pxpz'" |
|
|
|
:fieldItemLabel="getOperationStepsLabel()" |
|
|
|
:showHeader="!isPcr234" |
|
|
|
:showHeaderLabel="!isGsp" |
|
|
|
@deleteConfig="deleteConfig('paralleConfigs', paralleConfig)" :fillType="fillType" /> |
|
|
|
</div> |
|
|
|
<template v-if="sn === 'LBA005' || sn === 'ADA005'"> |
|
|
|
<template v-if="sn === 'LBA005'"> |
|
|
|
<LineLabel :label="$t('template.lba.lba005.zkpz')" /> |
|
|
|
<div v-if="fillType === 'preFill'" class="mt-20"> |
|
|
|
<el-button type="primary" @click="handleAddConfig('paralleConfigs_1')">{{ |
|
|
|
@ -81,7 +83,7 @@ |
|
|
|
:showOperation="fillType === 'actFill' || fillType === 'preFill'" |
|
|
|
:tableColumns="ladderStepColumns" :prefixKey="'ladder_1_' + ladderIndex" |
|
|
|
:configType="'ladder'" :ref="`ladderRef_1_${ladderIndex}`" |
|
|
|
:fieldItemLabel="'template.common.jtpz'" |
|
|
|
:fieldItemLabel="'template.lba.lba005.zkpz'" |
|
|
|
@deleteConfig="deleteConfig('ladderConfigs_1', ladderConfig)" :fillType="fillType" /> |
|
|
|
</div> |
|
|
|
|
|
|
|
@ -90,9 +92,9 @@ |
|
|
|
:key="'paralle_1_' + paralleConfig.id"> |
|
|
|
<LadderConfig :currentFormConfig="paralleStepFormConfig" :currentFormData="paralleConfig" |
|
|
|
:showOperation="fillType === 'actFill' || fillType === 'preFill'" |
|
|
|
:tableColumns="paralleStepColumns" :prefixKey="'paralle_1_' + paralleIndex" |
|
|
|
:tableColumns="paralleStepColumns1" :prefixKey="'paralle_1_' + paralleIndex" |
|
|
|
:configType="'paralle'" :ref="`paralleRef_1_${paralleIndex}`" |
|
|
|
:fieldItemLabel="'template.common.pxpz'" |
|
|
|
:fieldItemLabel="'template.lba.lba005.zkpz'" |
|
|
|
@deleteConfig="deleteConfig('paralleConfigs_1', paralleConfig)" :fillType="fillType" /> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
@ -189,11 +191,17 @@ export default { |
|
|
|
paralleStepFormConfig() { |
|
|
|
return getParalleStepFormConfig(this); |
|
|
|
}, |
|
|
|
paralleStepFormConfig1() { |
|
|
|
return getParalleStepFormConfig(this); |
|
|
|
}, |
|
|
|
// 操作步骤表单配置 |
|
|
|
ladderStepFormConfig() { |
|
|
|
return getLadderFormConfig(this); |
|
|
|
}, |
|
|
|
paralleStepColumns() { |
|
|
|
return getParallelColumnsConfig(this,this.sn); |
|
|
|
}, |
|
|
|
paralleStepColumns1() { |
|
|
|
return getParallelColumnsConfig(this); |
|
|
|
}, |
|
|
|
// 阶梯配置表格列配置 |
|
|
|
@ -238,7 +246,7 @@ export default { |
|
|
|
getOperationStepsLabel() { |
|
|
|
const obj = { |
|
|
|
"LBA005": "template.lba.lba005.bzqxpz",//标准曲线配制 |
|
|
|
"ADA005": "template.lba.lba005.bzqxpz",//标准曲线配制 |
|
|
|
"ADA005": "template.lba.lba005.zkpz",//质控配制 |
|
|
|
"GSP007": "template.gsp.gsp007.bzqx",//标准曲线 |
|
|
|
// "LBA007": "template.lba.lba005.bzqxpz",// |
|
|
|
} |
|
|
|
|