<!-- 观察 -->
|
|
<template>
|
|
<StepFormPackage ref = "stepFormPackageRef" :prefixKey="stepIndex+'_'+'xbjzpz_gc'" @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: 'gc',
|
|
},
|
|
},
|
|
components: {
|
|
StepFormPackage
|
|
},
|
|
computed: {
|
|
formConfig() {
|
|
let config = [{
|
|
config:{
|
|
text1:{
|
|
label:"使用显微镜",
|
|
type:"text",
|
|
},
|
|
yq:{
|
|
type:"yq",
|
|
fillType:"actFill",
|
|
},
|
|
text2:{
|
|
label:"仪器,进行观察。",
|
|
type:"text",
|
|
},
|
|
check:{
|
|
type:"checkbox",
|
|
fillType:"actFill",
|
|
},
|
|
}
|
|
}]
|
|
return config
|
|
}
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
</style>
|