|
|
- <!-- 取菌株 -->
- <template>
- <StepFormPackage ref="stepFormPackageRef" :prefixKey="stepIndex+'_'+'xbjzpz_qjz'" @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: 'qjz',
- },
- },
- components: {
- StepFormPackage
- },
- computed: {
- formConfig() {
- let config = [{
- config: {
- text1: {
- label: "选择液氮罐",
- type: "text",
- },
- yq: {
- type: "yq",
- fillType: "actFill",
- },
- text2: {
- label: ",取出菌株",
- type: "text",
- },
- xb: {
- type: "xj",
- fillType: "actFill",
- },
- text3: {
- label: "。",
- type: "text",
- },
- }
- }]
- return config
- }
- },
- }
- </script>
-
- <style lang="scss" scoped></style>
|