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

41 lines
1.3 KiB

  1. <!-- 剪碎组织 -->
  2. <template>
  3. <StepFormPackage ref = "stepFormPackageRef" prefixKey="spyjzzb_jszz" @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: 'jszz',
  14. },
  15. },
  16. components: {
  17. StepFormPackage
  18. },
  19. computed: {
  20. formConfig() {
  21. return [{
  22. config:{
  23. text1:{
  24. label:this.sn==='jszz'? "取上述组织,在冰板上剪碎。":this.sn==='cqzz'? "使用上述电子天平,称取剪碎的组织于匀浆管中。":this.sn==='yjyhh'? "将同一动物的同种组织匀浆液混匀。":"",
  25. type:"text",
  26. },
  27. check:{
  28. type:"checkbox",
  29. fillType:"actFill",
  30. },
  31. }
  32. }]
  33. }
  34. },
  35. }
  36. </script>
  37. <style lang="scss" scoped>
  38. </style>