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

86 lines
2.9 KiB

  1. <!-- 复溶 -->
  2. <template>
  3. <StepFormPackage ref = "stepFormPackageRef" prefixKey="ry_fr" @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:"sj",
  39. fillType:"actFill",
  40. ylCode: "sjtj",
  41. dwCode: "sjtjdw",
  42. },
  43. text3:{
  44. label:"溶液,各预计加入休积为",
  45. type:"text",
  46. },
  47. yjtj:{
  48. type:"input",
  49. fillType:"preFill",
  50. },
  51. yjtjdw:{
  52. type:"select",
  53. fillType:"preFill",
  54. options: this.getDictOptions("business_tjdw"),
  55. selectTo:"sjtjdw"
  56. },
  57. text4:{
  58. label:",实际加入休积为",
  59. type:"text",
  60. },
  61. sjtj:{
  62. type:"input",
  63. fillType:"actFill",
  64. compareTo:"yjtj",
  65. copyFrom:"yjtj",
  66. },
  67. sjtjdw:{
  68. type:"select",
  69. fillType:"preFill",
  70. options: this.getDictOptions("business_tjdw"),
  71. },
  72. text5:{
  73. label:"进行复溶。",
  74. type:"text",
  75. }
  76. }
  77. }]
  78. }
  79. },
  80. }
  81. </script>
  82. <style lang="scss" scoped>
  83. </style>