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

126 lines
4.5 KiB

  1. <!-- 染色 -->
  2. <template>
  3. <StepFormPackage ref = "stepFormPackageRef" @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:"instrument",
  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:"regent",
  80. fillType:"actFill",
  81. },
  82. text6:{
  83. label:"溶液,加入预计体积为",
  84. type:"text",
  85. },
  86. yjtj2:{
  87. type:"input",
  88. fillType:"preFill",
  89. },
  90. yjtjdw1:{
  91. type:"select",
  92. fillType:"preFill",
  93. options: this.getDictOptions("business_tjdw"),
  94. selectTo:"sjtjdw1"
  95. },
  96. text7:{
  97. label:",实际休积为",
  98. type:"text",
  99. },
  100. sjtj2:{
  101. type:"input",
  102. fillType:"actFill",
  103. compareTo:"yjtj2",
  104. copyFrom:"yjtj2",
  105. },
  106. sjtjdw1:{
  107. type:"select",
  108. fillType:"preFill",
  109. options: this.getDictOptions("business_tjdw"),
  110. },
  111. text8:{
  112. label:"进行染色。",
  113. type:"text",
  114. },
  115. }
  116. }]
  117. }
  118. },
  119. }
  120. </script>
  121. <style lang="scss" scoped>
  122. </style>