|
|
- <!-- 计数 -->
- <template>
- <StepFormPackage ref = "stepFormPackageRef" :prefixKey="stepIndex+'_'+'ry_js'" @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",
- },
- ddsys:{
- type:"input",
- fillType:"preFill",
- },
- yq:{
- type:"yq",
- fillType:"actFill",
- },
- text2:{
- label:"仪器,进行细胞检测,检测浓度结果",
- type:"text",
- },
- sjsr:{
- type:"input",
- fillType:"actFill",
- },
- text3:{
- label:"检测活率结果",
- type:"text",
- },
- sjsr2:{
- type:"input",
- fillType:"actFill",
- },
- text4:{
- label:"。",
- type:"text",
- }
- }
- }]
- }
- },
- }
- </script>
-
- <style lang="scss" scoped>
-
- </style>
|