index.js 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. // 看到此报错,是因为没有配置vite.config.js的【transpileDependencies】
  2. // const pleaseSetTranspileDependencies = {}, babelTest = pleaseSetTranspileDependencies?.test
  3. // 引入全局mixin
  4. import { mixin } from './libs/mixin/mixin.js'
  5. // 小程序特有的mixin
  6. import { mpMixin } from './libs/mixin/mpMixin.js'
  7. // 路由封装
  8. import route from './libs/util/route.js'
  9. // 颜色渐变相关,colorGradient-颜色渐变,hexToRgb-十六进制颜色转rgb颜色,rgbToHex-rgb转十六进制
  10. import colorGradient from './libs/function/colorGradient.js'
  11. // 规则检验
  12. import test from './libs/function/test.js'
  13. // 防抖方法
  14. import debounce from './libs/function/debounce.js'
  15. // 节流方法
  16. import throttle from './libs/function/throttle.js'
  17. // 浮点计算
  18. import calc from './libs/function/calc.js'
  19. // 浮点计算
  20. import digit from './libs/function/digit.js'
  21. // 公共文件写入的方法
  22. import index from './libs/function/index.js'
  23. // 配置信息
  24. import config from './libs/config/config.js'
  25. // props配置信息
  26. import props from './libs/config/props.js'
  27. // 各个需要fixed的地方的z-index配置文件
  28. import zIndex from './libs/config/zIndex.js'
  29. // 关于颜色的配置,特殊场景使用
  30. import color from './libs/config/color.js'
  31. // 平台
  32. import platform from './libs/function/platform'
  33. // http
  34. import http from './libs/function/http.js'
  35. // 导出
  36. let themeType = ['primary', 'success', 'error', 'warning', 'info'];
  37. export { route, http, debounce, throttle, calc, digit, platform, themeType, mixin, mpMixin, props, color, test, zIndex }
  38. export * from './libs/function/index.js'
  39. export * from './libs/function/colorGradient.js'
  40. /**
  41. * @description 修改uView内置属性值
  42. * @param {object} props 修改内置props属性
  43. * @param {object} config 修改内置config属性
  44. * @param {object} color 修改内置color属性
  45. * @param {object} zIndex 修改内置zIndex属性
  46. */
  47. export function setConfig(configs) {
  48. index.shallowMerge(config, configs.config || {})
  49. index.shallowMerge(props, configs.props || {})
  50. index.shallowMerge(color, configs.color || {})
  51. index.shallowMerge(zIndex, configs.zIndex || {})
  52. }
  53. index.setConfig = setConfig
  54. const $u = {
  55. route,
  56. date: index.timeFormat, // 另名date
  57. colorGradient: colorGradient.colorGradient,
  58. hexToRgb: colorGradient.hexToRgb,
  59. rgbToHex: colorGradient.rgbToHex,
  60. colorToRgba: colorGradient.colorToRgba,
  61. test,
  62. type: themeType,
  63. http,
  64. config, // uview-plus配置信息相关,比如版本号
  65. zIndex,
  66. debounce,
  67. throttle,
  68. calc,
  69. mixin,
  70. mpMixin,
  71. props,
  72. ...index,
  73. color,
  74. platform
  75. }
  76. export const mount$u = function() {
  77. uni.$u = $u
  78. }
  79. function toCamelCase(str) {
  80. return str.replace(/-([a-z])/g, function(match, group1) {
  81. return group1.toUpperCase();
  82. }).replace(/^[a-z]/, function(match) {
  83. return match.toUpperCase();
  84. });
  85. }
  86. // #ifdef APP || H5
  87. const importFn = import.meta.glob('./components/u-*/u-*.vue', { eager: true })
  88. let components = [];
  89. // 批量注册全局组件
  90. for (const key in importFn) {
  91. let component = importFn[key].default;
  92. if (component.name && component.name.indexOf('u--') !== 0) {
  93. component.install = function (Vue) {
  94. Vue.component(name, component);
  95. };
  96. // 导入组件
  97. components.push(component);
  98. }
  99. }
  100. // #endif
  101. const install = (Vue, upuiParams = '') => {
  102. // #ifdef APP || H5
  103. components.forEach(function(component) {
  104. const name = component.name.replace(/u-([a-zA-Z0-9-_]+)/g, 'up-$1');
  105. if (name != component.name) {
  106. Vue.component(component.name, component);
  107. }
  108. Vue.component(name, component);
  109. });
  110. // #endif
  111. // 初始化
  112. if (upuiParams) {
  113. uni.upuiParams = upuiParams
  114. let temp = upuiParams()
  115. if (temp.httpIns) {
  116. temp.httpIns(http)
  117. }
  118. if (temp.options) {
  119. setConfig(temp.options)
  120. }
  121. }
  122. // 同时挂载到uni和Vue.prototype中
  123. // $u挂载到uni对象上
  124. uni.$u = $u
  125. // #ifndef APP-NVUE
  126. // 只有vue,挂载到Vue.prototype才有意义,因为nvue中全局Vue.prototype和Vue.mixin是无效的
  127. Vue.config.globalProperties.$u = $u
  128. Vue.mixin(mixin)
  129. // #endif
  130. }
  131. export default {
  132. install
  133. }