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

111 lines
3.7 KiB

  1. <!-- 调节PH(非传值) -->
  2. <template>
  3. <StepFormPackage ref="stepFormPackageRef" :prefixKey="stepIndex+'_'+'ry_tjphfcz'" @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: "使用PH测量仪",
  19. type: "text",
  20. },
  21. yq: {
  22. type: "yq",
  23. fillType: "actFill",
  24. },
  25. text2: {
  26. label: "仪器,目标PH值为",
  27. type: "text",
  28. },
  29. rm: {
  30. type: "inputNumber",
  31. fillType: "preFill",
  32. },
  33. text3: {
  34. label: ",加入酸性溶液",
  35. type: "text",
  36. },
  37. rxry: {
  38. type: "input",
  39. fillType: "preFill",
  40. },
  41. sj1: {
  42. type: "sj",
  43. fillType: "actFill",
  44. ylCode: "sjjrl",
  45. dwCode: "sjjrldw",
  46. },
  47. text4: {
  48. label: "进行调节,实际加入量为",
  49. type: "text",
  50. },
  51. sjjrl: {
  52. type: "input",
  53. fillType: "actFill",
  54. },
  55. sjjrldw: {
  56. type: "select",
  57. options: this.getDictOptions("business_tjdw"),
  58. selectTo: "sjbdtjdw",
  59. fillType: "actFill",
  60. },
  61. text5: {
  62. label: ",加入碱性溶液",
  63. type: "text",
  64. },
  65. jxry: {
  66. type: "input",
  67. fillType: "preFill",
  68. },
  69. sj2: {
  70. type: "sj",
  71. fillType: "actFill",
  72. ylCode: "sjjrl1",
  73. dwCode: "sjjrldw1",
  74. },
  75. text6: {
  76. label: "进行调节,实际加入量为",
  77. type: "text",
  78. },
  79. sjjrl1: {
  80. type: "input",
  81. fillType: "actFill",
  82. },
  83. sjjrldw1: {
  84. type: "select",
  85. options: this.getDictOptions("business_tjdw"),
  86. selectTo: "sjbdtjdw",
  87. fillType: "actFill",
  88. },
  89. text7: {
  90. label: ",调节后实际PH值为",
  91. type: "text",
  92. },
  93. ph: {
  94. type: "inputNumber",
  95. fillType: "actFill",
  96. },
  97. text8: {
  98. type: "text",
  99. label: "。",
  100. },
  101. }
  102. }]
  103. }
  104. },
  105. }
  106. </script>
  107. <style lang="scss" scoped></style>