|
|
- <!-- 加入溶液 -->
- <template>
- <StepFormPackage ref="stepFormPackageRef" :prefixKey="stepIndex+'_'+'b_jrry_b'" @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",
- },
- ytrq: {
- fillType: "preFill",
- type: "input",
- },
- yq: {
- fillType: "actFill",
- type: "yq",
- },
- text2: {
- label: "仪器,按上表进行加液。",
- type: "text",
- },
- reamrk: {
- fillType: "actFill",
- type: "input",
- },
- }
- }]
- }
- },
- }
- </script>
-
- <style lang="scss" scoped></style>
|