|
|
- <!-- 试剂加样 -->
- <template>
- <StepFormPackage ref="stepFormPackageRef" :prefixKey="stepIndex+'_'+'pcr_sjjy'" @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],
- props: {
- sn: {
- type: String,
- default: 'sjjy',
- },
- },
- components: {
- StepFormPackage
- },
- computed: {
- formConfig() {
- return [{
- config: {
- text1: {
- label: "使用",
- type: "text",
- },
- ytrq: {
- fillType: "preFill",
- type: "input",
- },
- sjrqcz: {
- fillType: "actFill",
- type: "yq",
- },
- text2: {
- label: "仪器,按照样品排列示意图将",
- type: "text",
- },
- srry: {
- fillType: "preFill",
- type: "input",
- },
- sjrq:{
- fillType: "actFill",
- type: "sj",
- ylCode: "sjsr2",
- dwCode: "sjsrdw2",
- },
- text3:{
- label: "加入对应的96孔板种,每孔预计加入",
- type: "text",
- },
- ytsr1:{
- fillType: "preFill",
- type: "inputNumber",
- },
- tjxz:{
- fillType: "preFill",
- type: "select",
- selectTo: "sjsrdw2",
- options:this.getDictOptions('business_tjdw'),
- },
- text4:{
- label: "每孔实际加入",
- type: "text",
- },
- sjsr2:{
- fillType: "actFill",
- type: "inputNumber",
- compareTo:"ytsr1",
- copyFrom:"ytsr1"
- },
- sjsrdw2:{
- fillType: "preFill",
- type: "select",
- options: this.getDictOptions('business_tjdw'),
- },
- text5:{
- label: "。",
- type: "text",
- },
- remark:{
- fillType: "actFill",
- type: "input",
- },
- }
- }]
- }
- },
- }
- </script>
-
- <style lang="scss" scoped></style>
|