/**
* 商家小票
* jonyguan 支付后信息反馈页面
* 服务商模式 商家小票功能
*/
public function doMobileXiaoPiao(){
global $_W, $_GPC;
// 加载生成二维码需要用到的库
load()->library('qrcode');
// 生成二维码并保存
$url='https://jingchengda.wangzhanbaomu.com/app/index.php?i=2&c=entry&m=js_sc&do=confirm&op=confirm&total=1&id=1&channel=3';
$filename = 'qr'.time().'.png';
$basedir = dirname(__FILE__);
$path = $basedir.'/images/qr/'.$filename;
$qrres = QRcode::png($url, $path , $level=QR_ECLEVEL_L, $size=3, $margin=4,$saveandprint=false);
$qrimg = 'https://jingchengda.wangzhanbaomu.com/addons/js_sc/images/qr/'.$filename;
include $this->template('xiaopiao');
}