Keine Beschreibung
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

shop_get_wechat_addr.htm 4.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <title>选择添加收货方式-{eyou:global name='web_name' /}</title>
  6. <meta name="renderer" content="webkit">
  7. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  8. <meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport" />
  9. <link href="{eyou:global name='web_cmspath' /}/favicon.ico" rel="shortcut icon" type="image/x-icon" />
  10. {eyou:static file="users/skin/css/basic.css" /}
  11. {eyou:static file="users/skin/css/eyoucms.css" /}
  12. {eyou:include file="users/skin/css/diy_css.htm" /}
  13. {eyou:static file="/public/static/common/js/jquery.min.js"/}
  14. {eyou:static file="/public/plugins/layer-v3.1.0/layer.js"/}
  15. {eyou:static file="users/skin/js/global.js" /}
  16. </head>
  17. <body class="reg">
  18. <div class="register_index ey-member">
  19. <div class="container">
  20. {eyou:empty name="$is_wechat_applets"}
  21. <!-- 为空则表示在微信端中但不在微信小程序中 -->
  22. <button class="btn btn-lg btn-primary btn-block" data-url="{$eyou.field.wechat_url}" style="width: 100%;" onclick="GetWechatData(this);" >
  23. 获取微信地址
  24. </button>
  25. {/eyou:empty}
  26. <br/>
  27. <button class="btn btn-lg btn-primary btn-block" data-url="{$eyou.field.add_addr_url}" style="width: 100%;" onclick="ShopAddAddress(this);">
  28. 添加本站地址
  29. </button>
  30. </div>
  31. </div>
  32. <script type="text/javascript" src="//res.wx.qq.com/open/js/jweixin-1.4.0.js"></script>
  33. <script type="text/javascript">
  34. // 获取微信调用接口数据
  35. function GetWechatData(ey_this){
  36. var wechat_url = $(ey_this).attr('data-url');
  37. if (!wechat_url) {
  38. showErrorAlert('网络失败,请刷新页面后重试');
  39. }
  40. layer_loading('正在处理');
  41. $.ajax({
  42. url: wechat_url,
  43. data: {data:0},
  44. type: 'post',
  45. dataType:'json',
  46. success:function(res){
  47. layer.closeAll();
  48. if (res.code == 1) {
  49. GetAddr(res.data);
  50. }else{
  51. showErrorAlert(res.msg);
  52. }
  53. },
  54. error : function(e) {
  55. layer.closeAll();
  56. showErrorAlert(e.responseText);
  57. }
  58. });
  59. }
  60. function GetAddr(data){
  61. wx.config({
  62. appId: data.appid,
  63. timestamp: data.timestamp,
  64. nonceStr: data.noncestr,
  65. signature: data.signature,
  66. jsApiList: [
  67. 'checkJsApi',
  68. 'openAddress',
  69. // 'chooseAddress',
  70. ]
  71. });
  72. wx.ready(function(){
  73. wx.openAddress({
  74. success: function (res) {
  75. // 地址同步到本地数据库中
  76. AddWechatAddress(res);
  77. },
  78. cancel: function () {
  79. layer.msg('不使用微信地址,请添加本站地址!', {time: 2000});
  80. }
  81. });
  82. });
  83. }
  84. function AddWechatAddress(addr){
  85. if (!addr) {
  86. layer.msg('获取数据错误,请刷新重试~~', {time: 2000});
  87. }
  88. $.ajax({
  89. url: "{eyou:url link='user/Shop/add_wechat_addr'/}",
  90. data: {
  91. userName :addr.userName,
  92. telNumber :addr.telNumber,
  93. provinceName:addr.provinceName,
  94. cityName :addr.cityName,
  95. countryName :addr.countryName,
  96. detailInfo :addr.detailInfo,
  97. },
  98. type:'post',
  99. dataType:'json',
  100. success:function(res){
  101. if (1 == res.code) {
  102. layer.msg(res.msg, {time: 500}, function(){
  103. window.location.href = res.url;
  104. });
  105. }else{
  106. showErrorAlert(res.msg);
  107. }
  108. }
  109. });
  110. }
  111. // 添加收货地址
  112. function ShopAddAddress(ey_this){
  113. var add_addr_url = $(ey_this).attr('data-url');
  114. if (!add_addr_url) {
  115. showErrorAlert('网络失败,请刷新页面后重试');
  116. }
  117. var url = add_addr_url;
  118. if (url.indexOf('?') > -1) {
  119. url += '&';
  120. } else {
  121. url += '?';
  122. }
  123. url += 'type=order_new';
  124. //iframe窗
  125. layer.open({
  126. type: 2,
  127. title: '添加收货地址',
  128. shadeClose: false,
  129. maxmin: false, //开启最大化最小化按钮
  130. area: ['100%', '100%'],
  131. content: url
  132. });
  133. }
  134. function returnUrl(url){
  135. window.location.href = url;
  136. }
  137. </script>
  138. </body>
  139. </html>