|
|
|
@ -27,7 +27,7 @@ |
|
|
|
</CustomTable> |
|
|
|
</div> |
|
|
|
<LineLabel :label="getOperationStepsLabel()" /> |
|
|
|
<div v-if="fillType === 'preFill' && !isPcr234 && !isGsp" class="mt-20"> |
|
|
|
<div v-if="fillType === 'preFill' && !isPcr234" class="mt-20"> |
|
|
|
<el-button type="primary" @click="handleAddConfig('paralleConfigs')">{{ |
|
|
|
$t('template.common.xzpxpz') |
|
|
|
}}</el-button> |
|
|
|
@ -35,11 +35,7 @@ |
|
|
|
$t('template.common.xzjtpz') |
|
|
|
}}</el-button> |
|
|
|
</div> |
|
|
|
<div v-else-if="fillType === 'preFill' && isGsp" class="mt-20"> |
|
|
|
<el-button type="primary" @click="handleAddConfig('ladderConfigs')">{{ |
|
|
|
$t('template.common.addBtn') |
|
|
|
}}</el-button> |
|
|
|
</div> |
|
|
|
|
|
|
|
<!-- 阶梯配制区域 --> |
|
|
|
<div v-for="(ladderConfig, ladderIndex) in formData.ladderConfigs" |
|
|
|
:key="'ladder_' + ladderConfig.id"> |
|
|
|
@ -63,7 +59,6 @@ |
|
|
|
:configType="'paralle'" :ref="`paralleRef_${paralleIndex}`" |
|
|
|
:fieldItemLabel="getTableLabel('paralle')" |
|
|
|
:showHeader="!isPcr234" |
|
|
|
:showHeaderLabel="!isGsp" |
|
|
|
@deleteConfig="deleteConfig('paralleConfigs', paralleConfig)" :fillType="fillType" /> |
|
|
|
</div> |
|
|
|
<template v-if="sn === 'LBA005'"> |
|
|
|
@ -261,9 +256,6 @@ export default { |
|
|
|
"paralle": "template.common.pxpz",//标准曲线配制 |
|
|
|
"ladder": "template.common.jtpz",//阶梯配制 |
|
|
|
} |
|
|
|
if(this.isGsp){ |
|
|
|
return ""; |
|
|
|
} |
|
|
|
return obj[type] || '';//表格标签 |
|
|
|
}, |
|
|
|
// 删除选板信息行 |
|
|
|
|