### 生成二維碼方法
**位置:** Public\Base\js\coscia.js
**參數:**
* @param position 二維碼顯示的元素位置
* @param width 二維碼的寬度
* @param height 二維碼的高度
* @param text 二維碼的內容
**調用:**
~~~
插件引入:
<script language="javascript" src="__PUBLIC__/plug/qrcode/jquery.qrcode.min.js"></script>
<script language="javascript" src="__PUBLIC__/plug/jqprint/jquery.jqprint-0.3.js"></script>
<script language="javascript" src="__PUBLIC__/plug/jqprint/jquery-migrate-1.2.1.min.js"></script>
方法調用:
createQrCodes(position, width, height, text);
~~~
**完整代碼:**
~~~
/**
*
* 封裝 生成二維碼
* @param position 二維碼顯示的元素位置
* @param width 二維碼的寬度
* @param height 二維碼的高度
* @param text 二維碼的內容
* Lanson 2018-03-15
*
**/
function createQrCodes(position, width, height, text) {
position.empty().qrcode({
render: 'canvas',// 設置渲染方式
width:width,
height:height,
ecLevel: 'L',
text:text
});
// 轉化為圖片格式,才能與打印兼容使用
var canvas = $(position.selector +' '+'canvas');
var img = canvas[0].toDataURL('image/png');
position.html("<img src='" + img + "'>");
}
~~~
**調用示范:**
~~~
// 打印 商品列表
function goodsPrint(e) {
var val = '';
var num = 0;
$("input[name='subBox'] ").each(function(index,element) {
if ($(this).prop('checked')) {
val += $(this).val() + ',';
num = num + 1;
}
});
if(val == ''){
alert('打印預覽需請先勾選商品!');
return false;
}
var url = $(e).attr('url');
$.post(url, {id: val}, function(result){
$('#print_content').empty().append(result);
for(var i = 0;i<num;i++){
// 調用封裝的生成二維碼方法 Lanson 2018-03-15
createQrCodes($('#output_'+i), 120, 110, $('#qrcode_'+i).val());
// 調用封裝的生成條形方法 Lanson 2018-03-15
createBarCodes($('#bcTarget_'+i), 1, 30, $('#src_'+i).val());
$("#no_"+i).empty().text($("#src_"+i).val());
}
// 對元素內容進行打印
$('#print_content').jqprint();
});
}
~~~
- 模版
- 前言
- 項目架構
- 項目規范
- HTML
- CSS
- Javascript
- PHP
- MySQL
- 注意規范
- 開發版本管理
- 開發流程
- 系統配置
- 阿里云服務器配置
- 計劃任務配置說明
- 開發示例
- Page分頁
- Search_param搜索結果賦值
- Add新增
- Edit編輯
- Ajax表單驗證
- Ajax二級聯動
- Excel 導出數據首位不去0的方法
- POS總部控制
- 下載CSV格式的模板
- 訂單唯一碼表和訂單SKU表實收金額生成
- 快捷日期選擇
- JS函數
- ajax_send
- ajax_result
- createQrCodes
- createBarCodes
- printTpl
- JS插件
- BootstrapValidator表單驗證插件
- Address省市區插件
- Bootstrap-datepicker日期插件
- Bootstrap-select多選框插件
- Toastr消息提示插件
- PalyAudit掃描聲音提示插件
- WebUploader多圖片上傳插件
- Ueditor富文本編輯器插件
- Function
- alert
- object_to_array
- array_to_object
- get_address
- set_param_url
- get_shops_name
- get_user_name
- get_warehouse
- get_cheapest_sku
- print_attr(新)
- print_img(新)
- get_spu_no(新)
- get_type_name(新)
- get_brand_en(新)
- get_cat_name(新)
- get_attr_name(新)
- spu_cat_info(新)
- get_time_event_price
- get_vendors
- check_total_reduce
- check_total_discount
- get_inventory
- get_delivery
- get_sale_inventory
- get_customer_name
- phone_protection
- get_order_no
- get_event_name
- get_order_status
- get_item_status
- get_ditch_name
- get_card_no
- get_shop_sales
- get_pay_name
- get_season
- amt_format
- get_cat_parent
- print_attr_id
- round_bcadd
- round_bcsub
- round_bcmul
- round_bcdiv
- get_account_name
- Controller
- Common_BaseController
- check_membership_card
- get_menu_list
- importErrorMassage
- Wpos_IndexController
- get_customer_vip_card
- get_shops_id
- calculate_active_integral
- check_numbers_active
- check_goods_active
- Woms_IndexController
- Model
- View
- category
- cycle_date.html
- shop_select門店多選搜索框
- 品牌A-Z排序多選brand_mc.html
- 供應商代碼A-Z排序vendor_no_mc.html
- Lib
- BuyerLib
- WarehouseLib
- EventLib
- getTimeEventPrice
- getVipType
- getEvent
- orderTotalEvent
- orderTimeEvent
- getTotalReduce
- getTotalDiscount
- SaleLib
- CustomerLib
- addCustomerService
- GiftcardLib
- WechatLib
- wxRefund
- OrdersLib
- orderLog
- calculatePayinAmount
- calculateSubtotal
- correctPayinAmount
- saveOrderAddress
- getOrderAddress
- setDeliveryNo
- SyncLib
- updateOuterStock
- UserLib
- createCommission
- FlowLib
- orderList
- addOrder
- addLog
- orderInfo
- checkSku
- orderSave
- orderStop
- orderExecute
- skuEdit
- orderPrinta
- scanGoods
- boxClose
- orderOut
- take
- bview
- check
- deliveryStatus
- checkGoods
- GoodsLib
- createGoodsNo
- createNewGoodsNo
- getSystemStyleNo
- getDim
- MallLib
- smsLog
- GoodsBaseLib
- getBrandInfo
- getBrandsInfo
- getAttrIdArray
- getPrintAttr
- getMustAttr
- getCatIdInfo
- valTypeId
- valsTypeId
- getCatNoInfo
- getCatInfo
- getAttrArr
- getAttrInfo
- getValInfo
- getAttrId
- getValId
- getAttrSeaon
- getValueId
- PointsLog
- pointsIn
- pointsUp
- EcGoodsLib
- getSkuInventory
- Tools
- CsvTools
- csvImport
- csvExport
- ExcelTools
- importExcel
- exportExcel
- exportHeadExcel
- MailTools
- SmsTools
- sendMessage
- UploadTools
- ExportTools
- exportData
- TaobaoTools
- getOnsaleItems
- getSkusItems
- PicturesTools
- uploadPicture
- Plugins
- WxBase
- Taobao
- 問題反饋