jiangchengfeiyi-xiaochengxu/uni_modules/zp-mixins/methods/relation.js
2025-04-02 23:45:33 +08:00

11 lines
266 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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