1.绑定组件 在sv-from里绑定组件
@handle-event="handleEvent"
2.在需要的绑定事件的组件中,添加
event: 'customerTypeEvent'
这里以单选框radio为例
{
// 客户属性
type: 'radio',
prop: 'properties',
label: this.$t('baseManager.placeholder.properties'),
rules: { required: true },
optSet: { name: 'labelDefault', label: 'value' },
options: [],
sm: 24,
md: 24,
lg: 24,
xl: 24,
event: 'customerTypeEvent'
}
],
openSet如何找,前台打印console.log(data),找到labelValue,绑定对应的事件。 字典值:
return this.$store.getters.dicts.contract_customer_supplier_properties
绑定字典
this.$set(
this.fieldList.find(item => item.prop === 'properties'),
'options',
this.customerSupplierProperties
当为1的时候
selectEvent(data) {
if (data === '1') {
this.fieldList.splice(2)
push一个fieldList
|