|
|
- <!-- 分装 -->
- <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>
|