* @function ComponentsViewBase.prototype.on * @description 事件绑定。 * @param {string} eventType - 监听的事件类型。 * @param {function} callback - 监听事件的回调函数。
(eventType, callback)
| 72 | * @param {function} callback - 监听事件的回调函数。 |
| 73 | */ |
| 74 | on(eventType, callback) { |
| 75 | this._event.on(eventType, callback); |
| 76 | }, |
| 77 | |
| 78 | /** |
| 79 | * @function ComponentsViewBase.prototype.off |