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

51 lines
1.6 KiB

  1. <!-- 过滤(自动) -->
  2. <template>
  3. <StepFormPackage ref = "stepFormPackageRef" prefixKey="ry_glzd" @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:"instrument",
  23. fillType:"actFill",
  24. },
  25. text2:{
  26. label:"仪器,选择",
  27. type:"text",
  28. },
  29. sjsr:{
  30. type:"input",
  31. fillType:"preFill",
  32. },
  33. sj:{
  34. type:"regent",
  35. fillType:"actFill",
  36. },
  37. text3:{
  38. label:"进行过滤。",
  39. type:"text",
  40. },
  41. }
  42. }]
  43. }
  44. },
  45. }
  46. </script>
  47. <style lang="scss" scoped>
  48. </style>