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

55 lines
1.7 KiB

  1. <!-- 灭菌 -->
  2. <template>
  3. <StepFormPackage ref = "stepFormPackageRef" prefixKey="ry_mj" @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. yq:{
  22. type:"yq",
  23. fillType:"actFill",
  24. },
  25. text2:{
  26. label:"高压锅,设置灭菌温度为",
  27. type:"text",
  28. },
  29. sjwd:{
  30. type:"input",
  31. fillType:"actFill",
  32. },
  33. text3:{
  34. label:"°C,灭菌时长为",
  35. type:"text",
  36. },
  37. sjsr2:{
  38. type:"input",
  39. fillType:"actFill",
  40. },
  41. text4:{
  42. label:"对上述溶液进行灭菌。",
  43. type:"text",
  44. }
  45. }
  46. }]
  47. }
  48. },
  49. }
  50. </script>
  51. <style lang="scss" scoped>
  52. </style>