1
lkk
2025-04-28 5d87fe6b8fbb78f4406be2663060f4ea5444f13d
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
import loadScript from './loadScript'
import ELEMENT from 'element-ui'
 
let wxObj
 
export default function loadWXJs(cb) {
  if (wxObj) {
    cb(wxObj)
    return
  }
 
  const loading = ELEMENT.Loading.service({
    fullscreen: true,
    lock: true,
    text: 'wxsdk资源加载中...',
    spinner: 'el-icon-loading',
    background: 'rgba(255, 255, 255, 0.5)'
  })
 
  loadScript('https://res.wx.qq.com/open/js/jweixin-1.6.0.js', () => {
    loading.close()
    // eslint-disable-next-line no-undef
    wxObj = wx
    cb(wxObj)
  })
}