mui.init();
mui.plusReady(function(){
//barcode扫一扫
var styles = {
frameColor: "#65e102",
scanbarColor: "#b7e871",
background: "#000"
};
var filter; //扫码格式 空为全类型,不能省略
var scan=new plus.barcode.Barcode('bcode',filter,styles);
//条码识别成功事件
scan.onmarked=(function(type, code, file){
console.info("type="+type);//类型 的number如plus.barcode.QR=0
console.info("code="+code);//扫描的内容
//scan.close();
})
scan.start();//开始扫描
})