华西海圻ELN前端工程
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

107 lines
3.7 KiB

  1. <!-- 浓度测定 -->
  2. <template>
  3. <StepFormPackage ref="stepFormPackageRef" :prefixKey="stepIndex+'_'+'pcrfx_ndcd'" @resetRecord = "resetRecord" :form-config="formConfig" :formData="formData" />
  4. </template>
  5. <script>
  6. import StepFormPackage from '@/components/Template/StepFormPackage.vue';
  7. import stepMixins from '@/components/Template/mixins/stepMixins.js';
  8. export default {
  9. mixins: [stepMixins],
  10. components: {
  11. StepFormPackage
  12. },
  13. computed: {
  14. formConfig() {
  15. return [{
  16. config: {
  17. text1: {
  18. label: "使用",
  19. type: "text",
  20. },
  21. yqmc: {
  22. fillType: "preFill",
  23. type: "input",
  24. },
  25. yq: {
  26. fillType: "actFill",
  27. type: "yq",
  28. },
  29. text2: {
  30. label: "仪器,按核酸浓度测定排版表吸取核酸样品和Blank样品",
  31. type: "text",
  32. },
  33. ry:{
  34. fillType: "actFill",
  35. type: "sj",
  36. ylCode: "sjtj",
  37. dwCode: "sjtjdw",
  38. },
  39. text3:{
  40. label: ",预计吸取",
  41. type: "text",
  42. },
  43. yjtj:{
  44. fillType: "preFill",
  45. type: "inputNumber",
  46. },
  47. yjtjdw:{
  48. fillType: "preFill",
  49. type: "select",
  50. selectTo: "sjtjdw",
  51. options:this.getDictOptions('business_tjdw'),
  52. },
  53. text4:{
  54. label: ",实际吸取",
  55. type: "text",
  56. },
  57. sjtj:{
  58. fillType: "actFill",
  59. type: "inputNumber",
  60. compareTo:"yjtj",
  61. copyFrom:"yjtj"
  62. },
  63. sjtjdw:{
  64. fillType: "preFill",
  65. type: "select",
  66. options: this.getDictOptions('business_tjdw'),
  67. },
  68. text5:{
  69. label: "至uDrop Duo Plates,用多功能酶标仪系统",
  70. type: "text",
  71. },
  72. mbxt: {
  73. fillType: "actFill",
  74. type: "yq",
  75. },
  76. text6:{
  77. label: ",选择程序预计为",
  78. type: "text",
  79. },
  80. yjcx:{
  81. fillType: "preFill",
  82. type: "select",
  83. options:this.getDictOptions('business_step_pcr'),
  84. },
  85. text7:{
  86. label: ",选择程序实际为",
  87. type: "text",
  88. },
  89. sjcx:{
  90. fillType: "actFill",
  91. type: "select",
  92. options:this.getDictOptions('business_step_pcr'),
  93. compareTo:'yjcx'
  94. },
  95. text8:{
  96. label: ",进行浓度测定。",
  97. type: "text",
  98. },
  99. }
  100. }]
  101. }
  102. },
  103. }
  104. </script>
  105. <style lang="scss" scoped></style>