<!-- 过滤(自动) -->
|
|
<template>
|
|
<StepFormPackage ref = "stepFormPackageRef" prefixKey="ry_glzd" @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],
|
|
components: {
|
|
StepFormPackage
|
|
},
|
|
computed: {
|
|
formConfig() {
|
|
return [{
|
|
config:{
|
|
text1:{
|
|
label:"使用隔膜真空泵",
|
|
type:"text",
|
|
},
|
|
yq:{
|
|
type:"instrument",
|
|
fillType:"actFill",
|
|
},
|
|
text2:{
|
|
label:"仪器,选择",
|
|
type:"text",
|
|
},
|
|
sjsr:{
|
|
type:"input",
|
|
fillType:"preFill",
|
|
},
|
|
sj:{
|
|
type:"regent",
|
|
fillType:"actFill",
|
|
},
|
|
text3:{
|
|
label:"进行过滤。",
|
|
type:"text",
|
|
},
|
|
}
|
|
}]
|
|
}
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
</style>
|