华西海圻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.

94 lines
3.0 KiB

  1. <!-- 试剂加样 -->
  2. <template>
  3. <StepFormPackage ref="stepFormPackageRef" :prefixKey="stepIndex+'_'+'pcr_sjjy'" @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. props: {
  11. sn: {
  12. type: String,
  13. default: 'sjjy',
  14. },
  15. },
  16. components: {
  17. StepFormPackage
  18. },
  19. computed: {
  20. formConfig() {
  21. return [{
  22. config: {
  23. text1: {
  24. label: "使用",
  25. type: "text",
  26. },
  27. ytrq: {
  28. fillType: "preFill",
  29. type: "input",
  30. },
  31. sjrqcz: {
  32. fillType: "actFill",
  33. type: "yq",
  34. },
  35. text2: {
  36. label: "仪器,按照样品排列示意图将",
  37. type: "text",
  38. },
  39. srry: {
  40. fillType: "preFill",
  41. type: "input",
  42. },
  43. sjrq:{
  44. fillType: "actFill",
  45. type: "sj",
  46. ylCode: "sjsr2",
  47. dwCode: "sjsrdw2",
  48. },
  49. text3:{
  50. label: "加入对应的96孔板种,每孔预计加入",
  51. type: "text",
  52. },
  53. ytsr1:{
  54. fillType: "preFill",
  55. type: "inputNumber",
  56. },
  57. tjxz:{
  58. fillType: "preFill",
  59. type: "select",
  60. selectTo: "sjsrdw2",
  61. options:this.getDictOptions('business_tjdw'),
  62. },
  63. text4:{
  64. label: "每孔实际加入",
  65. type: "text",
  66. },
  67. sjsr2:{
  68. fillType: "actFill",
  69. type: "inputNumber",
  70. compareTo:"ytsr1",
  71. copyFrom:"ytsr1"
  72. },
  73. sjsrdw2:{
  74. fillType: "preFill",
  75. type: "select",
  76. options: this.getDictOptions('business_tjdw'),
  77. },
  78. text5:{
  79. label: "。",
  80. type: "text",
  81. },
  82. remark:{
  83. fillType: "actFill",
  84. type: "input",
  85. },
  86. }
  87. }]
  88. }
  89. },
  90. }
  91. </script>
  92. <style lang="scss" scoped></style>