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

59 lines
1.9 KiB

  1. <!-- 计数 -->
  2. <template>
  3. <StepFormPackage ref = "stepFormPackageRef" :prefixKey="stepIndex+'_'+'ry_js'" @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. ddsys:{
  22. type:"input",
  23. fillType:"preFill",
  24. },
  25. yq:{
  26. type:"yq",
  27. fillType:"actFill",
  28. },
  29. text2:{
  30. label:"仪器,进行细胞检测,检测浓度结果",
  31. type:"text",
  32. },
  33. sjsr:{
  34. type:"input",
  35. fillType:"actFill",
  36. },
  37. text3:{
  38. label:"检测活率结果",
  39. type:"text",
  40. },
  41. sjsr2:{
  42. type:"input",
  43. fillType:"actFill",
  44. },
  45. text4:{
  46. label:"。",
  47. type:"text",
  48. }
  49. }
  50. }]
  51. }
  52. },
  53. }
  54. </script>
  55. <style lang="scss" scoped>
  56. </style>