更多技术支持与服务请加入我的知识星球,名称:亿事达nbcio技术交流社区https://t.zsxq.com/iPi8F
这个部分主要是对自定义业务表单的支持
11、表单初始化传入参数做调整,对显示或只读编辑作为参数传递进去
<!--初始化流程加载自定义表单信息-->
<el-col :span="16" :offset="4" v-if="customForm.visible">
<div>
<component
ref="refCustomForm"
:formDisabled="customForm.fieldDisabled"
:formVisible="customForm.fieldVisible"
:is="customForm.formComponent"
v-model:value="customForm.model"
:formData="customForm.customFormData"
:isNew="customForm.isNew"
/>
</div>
12、对自定义业务表单规则做调整