parent
b7f898eede
commit
b8a5a5489d
@ -0,0 +1,30 @@
|
|||||||
|
# jweixin-module
|
||||||
|
|
||||||
|
微信JS-SDK
|
||||||
|
|
||||||
|
## 安装
|
||||||
|
|
||||||
|
### NPM
|
||||||
|
|
||||||
|
```shell
|
||||||
|
npm install jweixin-module --save
|
||||||
|
```
|
||||||
|
|
||||||
|
### UMD
|
||||||
|
|
||||||
|
```http
|
||||||
|
https://unpkg.com/jweixin-module/out/index.js
|
||||||
|
```
|
||||||
|
|
||||||
|
## 使用
|
||||||
|
|
||||||
|
```js
|
||||||
|
var jweixin = require('jweixin-module')
|
||||||
|
jweixin.ready(function(){
|
||||||
|
// TODO
|
||||||
|
});
|
||||||
|
```
|
||||||
|
|
||||||
|
## 完整API
|
||||||
|
|
||||||
|
>[微信JS-SDK说明文档](https://mp.weixin.qq.com/wiki?t=resource/res_main&id=mp1421141115)
|
||||||
File diff suppressed because one or more lines are too long
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"name": "jweixin-module",
|
||||||
|
"version": "1.6.0",
|
||||||
|
"description": "微信JS-SDK",
|
||||||
|
"main": "lib/index.js",
|
||||||
|
"scripts": {},
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "git+https://github.com/zhetengbiji/jweixin-module.git"
|
||||||
|
},
|
||||||
|
"keywords": [
|
||||||
|
"wxjssdk",
|
||||||
|
"weixin",
|
||||||
|
"jweixin",
|
||||||
|
"wechat",
|
||||||
|
"jssdk",
|
||||||
|
"wx"
|
||||||
|
],
|
||||||
|
"author": "Shengqiang Guo",
|
||||||
|
"license": "ISC",
|
||||||
|
"bugs": {
|
||||||
|
"url": "https://github.com/zhetengbiji/jweixin-module/issues"
|
||||||
|
},
|
||||||
|
"homepage": "https://github.com/zhetengbiji/jweixin-module#readme",
|
||||||
|
"devDependencies": {}
|
||||||
|
}
|
||||||
@ -1,16 +1,36 @@
|
|||||||
{
|
{
|
||||||
|
"name": "szgb-book-wx",
|
||||||
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"lockfileVersion": 1,
|
"packages": {
|
||||||
|
"": {
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"moment": {
|
"jweixin-module": "^1.6.0",
|
||||||
|
"moment": "^2.29.3",
|
||||||
|
"uview-ui": "^2.0.31"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/jweixin-module": {
|
||||||
|
"version": "1.6.0",
|
||||||
|
"resolved": "https://registry.npmmirror.com/jweixin-module/-/jweixin-module-1.6.0.tgz",
|
||||||
|
"integrity": "sha512-dGk9cf+ipipHmtzYmKZs5B2toX+p4hLyllGLF6xuC8t+B05oYxd8fYoaRz0T30U2n3RUv8a4iwvjhA+OcYz52w==",
|
||||||
|
"license": "ISC"
|
||||||
|
},
|
||||||
|
"node_modules/moment": {
|
||||||
"version": "2.29.3",
|
"version": "2.29.3",
|
||||||
"resolved": "https://registry.npmjs.org/moment/-/moment-2.29.3.tgz",
|
"resolved": "https://registry.npmjs.org/moment/-/moment-2.29.3.tgz",
|
||||||
"integrity": "sha512-c6YRvhEo//6T2Jz/vVtYzqBzwvPT95JBQ+smCytzf7c50oMZRsR/a4w88aD34I+/QVSfnoAnSBFPJHItlOMJVw=="
|
"integrity": "sha512-c6YRvhEo//6T2Jz/vVtYzqBzwvPT95JBQ+smCytzf7c50oMZRsR/a4w88aD34I+/QVSfnoAnSBFPJHItlOMJVw==",
|
||||||
|
"engines": {
|
||||||
|
"node": "*"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"uview-ui": {
|
"node_modules/uview-ui": {
|
||||||
"version": "2.0.31",
|
"version": "2.0.31",
|
||||||
"resolved": "https://registry.npmjs.org/uview-ui/-/uview-ui-2.0.31.tgz",
|
"resolved": "https://registry.npmjs.org/uview-ui/-/uview-ui-2.0.31.tgz",
|
||||||
"integrity": "sha512-I/0fGuvtiKHH/mBb864SGYk+SJ7WaF32tsBgYgeBOsxlUp+Th+Ac2tgz2cTvsQJl6eZYWsKZ3ixiSXCAcxZ8Sw=="
|
"integrity": "sha512-I/0fGuvtiKHH/mBb864SGYk+SJ7WaF32tsBgYgeBOsxlUp+Th+Ac2tgz2cTvsQJl6eZYWsKZ3ixiSXCAcxZ8Sw==",
|
||||||
|
"engines": {
|
||||||
|
"HBuilderX": "^3.1.0"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in new issue