摘要: <script> function GetRandomNum(Min,Max){ var Range = Max - Min; var Rand = Math.random(); return(Min + Math.round(Rand * Range)); } var num = GetRando 阅读全文
posted @ 2017-11-23 18:04 ThisCall 阅读(1067) 评论(0) 推荐(0) 编辑
摘要: // 订单生成返回数据,弹出是否支付模态 wx.showModal({ title: '微信支付', content: '确定支付吗?', success: function (res) { if (res.confirm) { self.pay(bianhao); } else if (res.c 阅读全文
posted @ 2017-11-23 17:45 ThisCall 阅读(238) 评论(0) 推荐(0) 编辑