schangxiang@126.com
2025-09-19 9be9c3784b2881a3fa25e93ae2033dc2803c0ed0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
/* eslint-disable */
function broadcast(componentName, eventName, params) {
  this.$children.forEach(child => {
    var _name = child.$options.name;
    var name = child.$options.componentName;
    if (!name) {
      try {
        name = child.$el.attributes && child.$el.attributes["name"] && child.$el.attributes.name.value;
      } catch (e) {
        console.log(e.messsage);
      }
    }
 
    if (name === componentName) {
      child.$emit.apply(child, [eventName].concat(params));
    } else {
      broadcast.apply(child, [componentName, eventName].concat([params]));
    }
  });
}
 
// 查找组件(根据组件名称)
function findComponent(componentName) {
  var existChild = null;
  this.$children.forEach(child => {
    var name = child.$options.name || child.$options.componentName;
    if (!name) {
      try {
        name = child.$el.attributes && child.$el.attributes["name"] && child.$el.attributes.name.value;
      } catch (e) {
        console.log(e.messsage);
      }
    }
 
    if (name === componentName) {
      existChild = child;
      return false;
    } else {
      var _subExistsChild = findComponent.apply(child, [componentName]);
      if (_subExistsChild) {
        existChild = _subExistsChild;
      }
    }
  });
 
  return existChild;
}
 
// 根据路由查找缓冲组件
function findKeepComponent(routeName) {
  var existChild = null;
  this.$children.forEach(child => {
    var key = child.$vnode.key;
    if (key && key.indexOf(routeName) >= 0) {
      existChild = child;
      return false;
    } else {
      var _subExistsChild = findKeepComponent.apply(child, [routeName]);
      if (_subExistsChild) {
        existChild = _subExistsChild;
      }
    }
  });
  return existChild;
}
 
// 查找组件(根据ref名)
function findRef(refName) {
  var existChild = this.$refs[refName];
  if (existChild) return existChild;
 
  this.$children.forEach(child => {
    var _subExistsChild = findRef.apply(child, [refName]);
    if (_subExistsChild) {
      existChild = _subExistsChild;
      return;
    }
  });
 
  return existChild;
}
 
export default {
  methods: {
    dispatch(componentName, eventName, params) {
      var parent = this.$parent || this.$root;
      var name = parent.$options.componentName;
 
      while (parent && (!name || name !== componentName)) {
        parent = parent.$parent;
 
        if (parent) {
          name = parent.$options.componentName;
        }
      }
      if (parent) {
        parent.$emit.apply(parent, [eventName].concat(params));
      }
    },
    broadcast(componentName, eventName, params) {
      broadcast.call(this, componentName, eventName, params);
    },
    findComponent(componentName) {
      var root = this.$root;
      return findComponent.call(root, componentName);
    },
    findKeepComponent(routeName) {
      var root = this.$root;
      return findKeepComponent.call(root, routeName);
    },
    findRef(refName) {
      var root = this.$root;
      return findRef.call(root, refName);
    },
    findChildRef(refName) {
      var root = this.$parent;
      return findRef.call(root, refName);
    }
  }
};