success.js 351 Bytes
Newer Older
hanpeng committed
1
define(['zepto','medtap'],function($,medtap){
2 3 4 5 6 7 8 9 10 11 12 13 14
	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();
hanpeng committed
15
})