123456789101112131415161718192021222324 |
- <!-- +---------------------------------------------------------------------- -->
- <!-- | CRMEB [ CRMEB赋能开发者,助力企业发展 ] -->
- <!-- +---------------------------------------------------------------------- -->
- <!-- | Copyright (c) 2016~2022 https://www.crmeb.com All rights reserved. -->
- <!-- +---------------------------------------------------------------------- -->
- <!-- | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权 -->
- <!-- +---------------------------------------------------------------------- -->
- <!-- | Author: CRMEB Team <admin@crmeb.com> -->
- <!-- +---------------------------------------------------------------------- -->
- <script type="text/javascript">
- $(function () {
- if(window.overallShare){
- var wechat_share=<?php echo isset($overallShareWechat) ? $overallShareWechat : '{}'; ?>,uid=<?php echo isset($userInfo['uid']) && $userInfo['uid'] ? $userInfo['uid'] : 0;?>;
- mapleWx($jssdk(), function () {
- this.onMenuShareAll({
- title:wechat_share.wechat_share_title,
- desc: wechat_share.wechat_share_synopsis,
- imgUrl: wechat_share.wechat_share_img,
- link: location.href.indexOf('?') == -1 ? location.href+'?spread_uid='+uid : location.href + '&spread_uid='+ uid,
- });
- });
- }
- })
- </script>
|