jiangchengfeiyi-xiaochengxu/uni_modules/zp-mixins/methods/relation.js

11 lines
266 B
JavaScript
Raw Normal View History

2025-04-02 15:45:33 +00:00
/**
* 组件间关系
* 注意须与p-f-unicom配合使用
* @param {*} name
* @returns
*/
export function getRelationNodes(name) {
if(!this.$unicom) throw "this.getRelationNodes()需与p-f-unicom配合使用"
return this.$unicom('@' + name)
}