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

128 lines
4.6 KiB

  1. <!-- 染色 -->
  2. <template>
  3. <StepFormPackage ref = "stepFormPackageRef" :prefixKey="stepIndex+'_'+'ry_rs'" @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. ddsys:{
  22. type:"input",
  23. fillType:"preFill",
  24. },
  25. yq:{
  26. type:"yq",
  27. fillType:"actFill",
  28. },
  29. text2:{
  30. label:"仪器,吸取",
  31. type:"text",
  32. },
  33. ddsys2:{
  34. type:"input",
  35. fillType:"preFill",
  36. },
  37. sj:{
  38. type:"xb",
  39. fillType:"actFill",
  40. },
  41. text3:{
  42. label:"吸入预计体积为",
  43. type:"text",
  44. },
  45. yjtj:{
  46. type:"input",
  47. fillType:"preFill",
  48. },
  49. yjtjdw:{
  50. type:"select",
  51. fillType:"preFill",
  52. options: this.getDictOptions("business_tjdw"),
  53. selectTo:"sjtjdw"
  54. },
  55. text4:{
  56. label:",实际休积为",
  57. type:"text",
  58. },
  59. sjtj:{
  60. type:"input",
  61. fillType:"actFill",
  62. compareTo:"yjtj",
  63. copyFrom:"yjtj",
  64. },
  65. sjtjdw:{
  66. type:"select",
  67. fillType:"preFill",
  68. options: this.getDictOptions("business_tjdw"),
  69. },
  70. text5:{
  71. label:"再吸取",
  72. type:"text",
  73. },
  74. yjtj1:{
  75. type:"input",
  76. fillType:"preFill",
  77. },
  78. yjsj:{
  79. type:"sj",
  80. fillType:"actFill",
  81. ylCode: "sjtj2",
  82. dwCode: "sjtjdw1",
  83. },
  84. text6:{
  85. label:"溶液,加入预计体积为",
  86. type:"text",
  87. },
  88. yjtj2:{
  89. type:"input",
  90. fillType:"preFill",
  91. },
  92. yjtjdw1:{
  93. type:"select",
  94. fillType:"preFill",
  95. options: this.getDictOptions("business_tjdw"),
  96. selectTo:"sjtjdw1"
  97. },
  98. text7:{
  99. label:",实际休积为",
  100. type:"text",
  101. },
  102. sjtj2:{
  103. type:"input",
  104. fillType:"actFill",
  105. compareTo:"yjtj2",
  106. copyFrom:"yjtj2",
  107. },
  108. sjtjdw1:{
  109. type:"select",
  110. fillType:"preFill",
  111. options: this.getDictOptions("business_tjdw"),
  112. },
  113. text8:{
  114. label:"进行染色。",
  115. type:"text",
  116. },
  117. }
  118. }]
  119. }
  120. },
  121. }
  122. </script>
  123. <style lang="scss" scoped>
  124. </style>