mixin.js 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. export default {
  2. data() {
  3. return {}
  4. },
  5. onLoad() {
  6. // getRect挂载到$u上,因为这方法需要使用in(this),所以无法把它独立成一个单独的文件导出
  7. this.$u.getRect = this.$uGetRect
  8. },
  9. methods: {
  10. // 查询节点信息
  11. // 目前此方法在支付宝小程序中无法获取组件跟接点的尺寸,为支付宝的bug(2020-07-21)
  12. // 解决办法为在组件根部再套一个没有任何作用的view元素
  13. $uGetRect(selector, all) {
  14. return new Promise(resolve => {
  15. uni.createSelectorQuery().
  16. in(this)[all ? 'selectAll' : 'select'](selector)
  17. .boundingClientRect(rect => {
  18. if (all && Array.isArray(rect) && rect.length) {
  19. resolve(rect)
  20. }
  21. if (!all && rect) {
  22. resolve(rect)
  23. }
  24. })
  25. .exec()
  26. })
  27. },
  28. getParentData(parentName = '') {
  29. // 避免在created中去定义parent变量
  30. if(!this.parent) this.parent = false;
  31. // 这里的本质原理是,通过获取父组件实例(也即u-radio-group的this)
  32. // 将父组件this中对应的参数,赋值给本组件(u-radio的this)的parentData对象中对应的属性
  33. // 之所以需要这么做,是因为所有端中,头条小程序不支持通过this.parent.xxx去监听父组件参数的变化
  34. this.parent = this.$u.$parent.call(this, parentName);
  35. if(this.parent) {
  36. // 历遍parentData中的属性,将parent中的同名属性赋值给parentData
  37. Object.keys(this.parentData).map(key => {
  38. this.parentData[key] = this.parent[key];
  39. });
  40. // #ifdef VUE3
  41. this.parentData.value = this.parent.modelValue;
  42. // #endif
  43. }
  44. },
  45. // 阻止事件冒泡
  46. preventEvent(e) {
  47. e && e.stopPropagation && e.stopPropagation()
  48. }
  49. },
  50. onReachBottom() {
  51. uni.$emit('uOnReachBottom')
  52. },
  53. // #ifdef VUE2
  54. beforeDestroy() {
  55. // 判断当前页面是否存在parent和chldren,一般在checkbox和checkbox-group父子联动的场景会有此情况
  56. // 组件销毁时,移除子组件在父组件children数组中的实例,释放资源,避免数据混乱
  57. if(this.parent && uni.$u.test.array(this.parent.children)) {
  58. // 组件销毁时,移除父组件中的children数组中对应的实例
  59. const childrenList = this.parent.children
  60. childrenList.map((child, index) => {
  61. // 如果相等,则移除
  62. if(child === this) {
  63. childrenList.splice(index, 1)
  64. }
  65. })
  66. }
  67. },
  68. // #endif
  69. // #ifdef VUE3
  70. beforeUnmount() {
  71. // 判断当前页面是否存在parent和chldren,一般在checkbox和checkbox-group父子联动的场景会有此情况
  72. // 组件销毁时,移除子组件在父组件children数组中的实例,释放资源,避免数据混乱
  73. if(this.parent && uni.$u.test.array(this.parent.children)) {
  74. // 组件销毁时,移除父组件中的children数组中对应的实例
  75. const childrenList = this.parent.children
  76. childrenList.map((child, index) => {
  77. // 如果相等,则移除
  78. if(child === this) {
  79. childrenList.splice(index, 1)
  80. }
  81. })
  82. }
  83. },
  84. // #endif
  85. }