Browse Source

feat:[模板管理][生物样品分析方法学样品制备表-Recovery]

lkf
HanLong 3 months ago
parent
commit
207722ca3e
1 changed files with 36 additions and 1 deletions
  1. +36
    -1
      src/views/business/comps/template/comps/sp/SWYPFXFFXYPZBB/Recovery.vue

+ 36
- 1
src/views/business/comps/template/comps/sp/SWYPFXFFXYPZBB/Recovery.vue View File

@ -38,6 +38,30 @@
</template> </template>
</CustomTable> </CustomTable>
</div> </div>
<div class="template-form-item">
<span>test</span>
<BaseInfoFormPcakge fieldItemLabel="template.common.operationSteps" ref="stepFormPackageRef" :formConfig="stepFormConfig" @blur="onHandleBlur"
:formData="formData" />
<CustomTable
@blur="onHandleTableBlur"
:ref="`tableRef`"
:columns="tableStepColumns"
:formData="formData"
:prefixKey = "`table`"
@clickable="handleClickable"
fieldItemLabel = "这个是什么"
>
<template slot="operation" slot-scope="{ row, rowIndex}">
<TableOpertaion
:fillType="fillType"
:row="row"
:rowIndex="rowIndex"
@deleteRow="(rowIndex) => deleteRow(rowIndex)"
></TableOpertaion>
</template>
</CustomTable>
</div>
<Step ref="stepRef" :formData="formData.stepData"></Step> <Step ref="stepRef" :formData="formData.stepData"></Step>
<BaseInfoFormPcakge fieldItemLabel="template.common.remark" label="template.common.remark" ref="remarkRef" :formConfig="remarkConig" <BaseInfoFormPcakge fieldItemLabel="template.common.remark" label="template.common.remark" ref="remarkRef" :formConfig="remarkConig"
:formData="formData" /> :formData="formData" />
@ -198,6 +222,15 @@ export default {
{ {
type: "step", type: "step",
config: { config: {
jz1: {
label: 'template.sp.sp009.xzjz',
type: "span",
label: 'template.common.storageConditionLabel',
fillType: "preFill",
options: this.getDictOptions("business_cctj"),
otherCode: "storageConditionOther",
},
jz: { jz: {
label: 'template.sp.sp009.xzjz', label: 'template.sp.sp009.xzjz',
type: "input", type: "input",
@ -207,8 +240,10 @@ export default {
subFillType: "actFill", subFillType: "actFill",
maxlength: 20, maxlength: 20,
}, },
} }
}
},
] ]
}, },
tableStepColumns() { tableStepColumns() {

Loading…
Cancel
Save