define(['zepto','medtap'],function($,medtap){
var order = { orderSn:medtap.getRequest('id'), init:function(){ order.bindEve(); }, bindEve:function(){ $('.go_detail').on('click',function(){ medtap.pushWindow('imgConsultDetail.html?id=' + order.orderSn + '&wechatId=' + medtap.getRequest('wechatId')) }) } } order.init();
})