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

53 lines
1.6 KiB

  1. <!-- 加入溶液 -->
  2. <template>
  3. <StepFormPackage ref="stepFormPackageRef" :prefixKey="stepIndex+'_'+'pcrcjg_jrry_pcrcjg'" @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. yqmc: {
  22. fillType: "preFill",
  23. type: "input",
  24. },
  25. yq: {
  26. fillType: "actFill",
  27. type: "yq",
  28. },
  29. text2: {
  30. label: "仪器,吸取",
  31. type: "text",
  32. },
  33. rymc: {
  34. fillType: "preFill",
  35. type: "input",
  36. },
  37. ry:{
  38. fillType: "actFill",
  39. type: "sj",
  40. },
  41. text3:{
  42. label: "溶液,按上表进行添加。",
  43. type: "text",
  44. },
  45. }
  46. }]
  47. }
  48. },
  49. }
  50. </script>
  51. <style lang="scss" scoped></style>