作者 anyv
1 个管道 的构建 通过 耗费 0 秒

5

@@ -291,23 +291,19 @@ @@ -291,23 +291,19 @@
291 <script src="__TMPL__/public/assets/js/uploadfile.js"></script> 291 <script src="__TMPL__/public/assets/js/uploadfile.js"></script>
292 <script src="https://res.wx.qq.com/open/js/jweixin-1.2.0.js"></script> 292 <script src="https://res.wx.qq.com/open/js/jweixin-1.2.0.js"></script>
293 <script> 293 <script>
294 - /* $(function (){  
295 - wx.config({  
296 - debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,测试完成后需要关闭。  
297 - appId: "wxdf34ec2179e19b9a", // 必填,公众号的唯一标识  
298 - timestamp: "1560818590", // 必填,生成签名的时间戳  
299 - nonceStr: "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789", // 必填,生成签名的随机串  
300 - signature: "almGHISt15642",// 必填,签名(加密后,下文有实现)  
301 - jsApiList: ['chooseImage', 'uploadImage'] // 必填,需要使用的JS接口列表,开发文档上有所有接口名称,根据需要选用就好。  
302 - });  
303 - });*/  
304 -  
305 294
306 function openCamera(){ 295 function openCamera(){
307 296
308 $.post("{:url('Salesmangoods/getSignPackage')}",{},function (data) { 297 $.post("{:url('Salesmangoods/getSignPackage')}",{},function (data) {
309 data = JSON.parse(data); 298 data = JSON.parse(data);
310 - console.log(data); 299 + wx.config({
  300 + debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,测试完成后需要关闭。
  301 + appId: data.appId, // 必填,公众号的唯一标识
  302 + timestamp: data.timestamp, // 必填,生成签名的时间戳
  303 + nonceStr: data.nonceStr, // 必填,生成签名的随机串
  304 + signature: data.signature,// 必填,签名(加密后,下文有实现)
  305 + jsApiList: ['chooseImage', 'uploadImage'] // 必填,需要使用的JS接口列表,开发文档上有所有接口名称,根据需要选用就好。
  306 + });
311 }); 307 });
312 308
313 wx.chooseImage({ 309 wx.chooseImage({
@@ -322,9 +318,10 @@ @@ -322,9 +318,10 @@
322 success: function (res) { 318 success: function (res) {
323 var mediaId = res.serverId; // 返回图片的服务器端ID,即mediaId 319 var mediaId = res.serverId; // 返回图片的服务器端ID,即mediaId
324 //将获取到的 mediaId 传入后台 方法savePicture 320 //将获取到的 mediaId 传入后台 方法savePicture
325 - $.post(path+"/getImage/savePicture",{"mediaId":mediaId,"tmp":"填写证件的正反面参数"},function(res){ 321 + /*$.post(path+"/getImage/savePicture",{"mediaId":mediaId,"tmp":"填写证件的正反面参数"},function(res){
326 //填写你自己的业务逻辑 322 //填写你自己的业务逻辑
327 - }); 323 + });*/
  324 + console.log(res);
328 }, 325 },
329 fail: function (res) { 326 fail: function (res) {
330 alertModal('图片上传失败,请重试'); 327 alertModal('图片上传失败,请重试');