华西海圻ELN前端工程
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

42 lines
1.0 KiB

<!-- 分装 -->
<template>
<StepFormPackage :fieldItemLabel = "fieldItemLabel" @clickButton="onHandleClickButton" ref="stepFormPackageRef" :prefixKey="stepIndex+'_'+'ry_fz'" @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: 'fz',
},
},
components: {
StepFormPackage
},
computed: {
formConfig() {
let config = [{
config: {
fz: {
type: "button",
buttonName:"分装",
fillType:"actFill",
noSign: true,
},
}
}]
return config
}
},
methods: {
}
}
</script>
<style lang="scss" scoped></style>