<!-- 空白(仪器) -->
|
|
<template>
|
|
<StepFormPackage ref = "stepFormPackageRef" prefixKey="ry_kbyq" @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",
|
|
},
|
|
mmyq:{
|
|
type:"input",
|
|
fillType:"preFill",
|
|
},
|
|
yq:{
|
|
type:"yq",
|
|
fillType:"actFill",
|
|
},
|
|
text2:{
|
|
label:",",
|
|
type:"text",
|
|
},
|
|
sjsr:{
|
|
type:"input",
|
|
fillType:"actFill",
|
|
},
|
|
text3:{
|
|
label:"。",
|
|
type:"text",
|
|
}
|
|
}
|
|
}]
|
|
}
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
</style>
|