All Projects → alsey → Wxbarcode

alsey / Wxbarcode

Licence: mit
微信小程序条码、二维码生成模块

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Wxbarcode

likeshop
🔥🔥🔥 likeshop开源免费商用电商系统,PC商城、H5商城、小程序商城、安卓APP商城、苹果APP商城,免费商用。场景:B2C商城,新零售商城,社交电商商城,分销系统商城,分销电商商城,小程序商城,商城源码,商城系统,单商户,多商户,电商系统,直播,uniapp,uni-app,B2B2C,B2B,O2O,ERP,Wechat,交易系统,内容系统,雷达,crm
Stars: ✭ 160 (-55.92%)
Mutual labels:  wechat-app
Eweapp
eweapp:ECShop非官方版微信小程序商城
Stars: ✭ 257 (-29.2%)
Mutual labels:  wechat-app
Xboot
基于Spring Boot 2.x的一站式前后端分离快速开发平台XBoot 微信小程序+Uniapp 前端:Vue+iView Admin 后端:Spring Boot 2.x/Spring Security/JWT/JPA+Mybatis-Plus/Redis/Elasticsearch/Activiti 分布式限流/同步锁/验证码/SnowFlake雪花算法ID 动态权限 数据权限 工作流 代码生成 定时任务 社交账号 短信登录 单点登录 OAuth2开放平台 客服机器人 数据大屏 暗黑模式
Stars: ✭ 3,432 (+845.45%)
Mutual labels:  wechat-app
QR Attendance
This project is an attendance system which provides attendance on scanning QR code. The attendance is stored in Excel sheet named with the date of attendance taken. In this folder a file named Generate.py is used to generate the QR code for given input file. Attend.py file is for scanning the QR code
Stars: ✭ 17 (-95.32%)
Mutual labels:  qrcode-generator
weChat-learning
微信开发学习demo,完成网页授权以及微信SDK调用,具体实现教程参考我的博客
Stars: ✭ 13 (-96.42%)
Mutual labels:  wechat-app
Miemie
🐑 咩咩单词:简易背单词的微信小程序
Stars: ✭ 286 (-21.21%)
Mutual labels:  wechat-app
wxapp-dev-tool-for-linux
linux版的微信小程序开发工具. 源码与官方一致
Stars: ✭ 15 (-95.87%)
Mutual labels:  wechat-app
Weapp Qrcode
Wechat miniapp generate qrcode image
Stars: ✭ 339 (-6.61%)
Mutual labels:  wechat-app
QNews we chat
趣闻-小程序版
Stars: ✭ 17 (-95.32%)
Mutual labels:  wechat-app
Wepy Mall
微信小程序--基于wepy 商城(微店)微信小程序 欢迎学习交流
Stars: ✭ 3,224 (+788.15%)
Mutual labels:  wechat-app
qr
🔲 Generate QR Codes straight in your terminal!
Stars: ✭ 34 (-90.63%)
Mutual labels:  qrcode-generator
qrencode.cr
Crystal bindings for libqrencode (qrencode), a library for QR code generation
Stars: ✭ 28 (-92.29%)
Mutual labels:  qrcode-generator
Swiftscan
A barcode and qr code scanner( 二维码/条形码扫描、生成,仿微信、支付宝)
Stars: ✭ 293 (-19.28%)
Mutual labels:  qrcode-generator
WechatApp
简单的电商系统小程序开发实践
Stars: ✭ 49 (-86.5%)
Mutual labels:  wechat-app
Wx Words Pk
微信小程序云开发 「 单词天天斗 」,单词对战游戏,支持好友对战、随机匹配、人机对战等,单词 毕业设计
Stars: ✭ 315 (-13.22%)
Mutual labels:  wechat-app
AntForest
源代码一共有两个版本(uni-app小程序 和 微信原生小程序),都是完整的工程代码,可直接在对应的开发环境中运行,所以把代码分别放在对应的目录中啦!蚂蚁森林 给小树浇水成长、给好友投票,加油,助力,仿支付宝-蚂蚁森林,给小树苗浇水逐渐成长到大树的过程,所有参数都可配置(如水滴值,树的类型、动画等), 欢迎小伙伴们参与进来,一起完善。
Stars: ✭ 24 (-93.39%)
Mutual labels:  wechat-app
Wxcloud Bookcase
小程序云开发项目 · 私房书柜
Stars: ✭ 271 (-25.34%)
Mutual labels:  wechat-app
Fehelper
😍FeHelper--Web前端助手(Awesome!Chrome & Firefox & MS-Edge Extension, All in one Toolbox!)
Stars: ✭ 3,880 (+968.87%)
Mutual labels:  qrcode-generator
Wechat Mini Shop
微信小程序商城,微信小程序微店,接口基于FaShop
Stars: ✭ 328 (-9.64%)
Mutual labels:  wechat-app
Lbxscan
A barcode and qr code scanner (二维码、扫码、扫一扫、ZXing、ZBar、iOS系统AVFoundation扫码封装,扫码界面效果封装)
Stars: ✭ 3,133 (+763.09%)
Mutual labels:  qrcode-generator

wxbarcode

微信小程序生成条码和二维码模块。

NPM Version NPM Downloads

NPM

效果

截图

安装

$ npm install wxbarcode

使用方法

import wxbarcode from 'wxbarcode'

wxbarcode.barcode('barcode', '1234567890123456789', 680, 200);
wxbarcode.qrcode('qrcode', '1234567890123456789', 420, 420);

条形码

函数名:barcode

函数原型:barcode(id, code, width, height)

参数:

  • id: wxml文件中的 Canvas ID
  • code: 用于生成条形码的字符串
  • width: 生成的条形码宽度,单位 rpx
  • height: 生成的条形码高度,单位 rpx

二维码

函数名:qrcode

函数原型:qrcode(id, code, width, height)

参数:

  • id: wxml文件中的 Canvas ID
  • code: 用于生成二维码的字符串
  • width: 生成的二维码宽度,单位 rpx
  • height: 生成的二维码高度,单位 rpx

例子

请参考demo文件夹下代码。

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].