|
|
- <!-- 剪碎组织 -->
- <template>
- <StepFormPackage ref = "stepFormPackageRef" prefixKey="spyjzzb_jszz" @resetRecord = "resetRecord" :form-config="formConfig" :formData = "formData" />
- </template>
-
- <script>
- import StepFormPackage from '@/components/Template/StepFormPackage.vue';
- import stepMixins from '@/components/Template/mixins/stepMixins.js';
-
- export default {
- mixins: [stepMixins],
- props: {
- sn: {
- type: String,
- default: 'jszz',
- },
- },
- components: {
- StepFormPackage
- },
- computed: {
- formConfig() {
- return [{
- config:{
- text1:{
- label:this.sn==='jszz'? "取上述组织,在冰板上剪碎。":this.sn==='cqzz'? "使用上述电子天平,称取剪碎的组织于匀浆管中。":this.sn==='yjyhh'? "将同一动物的同种组织匀浆液混匀。":"",
- type:"text",
- },
- check:{
- type:"checkbox",
- fillType:"actFill",
- },
- }
- }]
- }
- },
- }
- </script>
-
- <style lang="scss" scoped>
-
- </style>
|