|
|
- <!-- PCR上机 -->
- <template>
- <StepFormPackage ref="stepFormPackageRef" :prefixKey="stepIndex+'_'+'pcrfxyp_pcrsj'" @resetRecord = "resetRecord" :form-config="formConfig" :formData="formData" />
- </template>
-
- <script>
- import StepFormPackage from '@/components/Template/StepFormPackage.vue';
- import stepMixins from '@/components/Template/mixins/stepMixins.js';
-
- export default {
- mixins: [stepMixins],
- components: {
- StepFormPackage
- },
- computed: {
- formConfig() {
- return [{
- config: {
- text1: {
- label: "将处理好的样品孔板,使用",
- type: "text",
- },
- yqmc: {
- fillType: "preFill",
- type: "input",
- },
- yq: {
- fillType: "actFill",
- type: "yq",
- },
- text2: {
- label: "仪器,调用正确的程序",
- type: "text",
- },
- cx:{
- fillType: "preFill",
- type: "select",
- options:this.getDictOptions('business_fycx'),
- otherCode: "cxOther",
- },
- text3: {
- label: "。",
- type: "text",
- },
- }
- }]
- }
- },
- }
- </script>
-
- <style lang="scss" scoped></style>
|