mixin.js 2.5 KB

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