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

44 lines
1.2 KiB

  1. <!-- 二次上机 -->
  2. <template>
  3. <StepFormPackage :fieldItemLabel = "fieldItemLabel" ref="stepFormPackageRef" :prefixKey="stepIndex+'_'+'pcr_ecsj'" @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. props: {
  11. sn: {
  12. type: String,
  13. default: 'ecsj',
  14. },
  15. },
  16. components: {
  17. StepFormPackage
  18. },
  19. computed: {
  20. formConfig() {
  21. return [{
  22. config: {
  23. text1: {
  24. label: "将处理好的96孔板,放回仪器",
  25. type: "text",
  26. },
  27. sr1: {
  28. fillType: "actFill",
  29. type: "input",
  30. },
  31. text2: {
  32. label: "板位,继续运行程序。",
  33. type: "text",
  34. },
  35. }
  36. }]
  37. }
  38. },
  39. }
  40. </script>
  41. <style lang="scss" scoped></style>