¶Ô±ÈÐÂÎļþ |
| | |
| | | /** |
| | | * date:2020/03/01 |
| | | * author:Mr.Chung |
| | | * version:2.0 |
| | | * description:layuimini ç»è®¡æ¡æ¶æ©å± |
| | | */ |
| | | layui.define(["jquery"], function (exports) { |
| | | var $ = layui.$; |
| | | |
| | | var miniTongji = { |
| | | |
| | | /** |
| | | * åå§å |
| | | * @param options |
| | | */ |
| | | render: function (options) { |
| | | options.specific = options.specific || false; |
| | | options.domains = options.domains || []; |
| | | var domain = window.location.hostname; |
| | | if (options.specific === false || (options.specific === true && options.domains.indexOf(domain) >=0)) { |
| | | miniTongji.listen(); |
| | | } |
| | | }, |
| | | |
| | | /** |
| | | * çå¬ç»è®¡ä»£ç |
| | | */ |
| | | listen: function () { |
| | | var _hmt = _hmt || []; |
| | | (function () { |
| | | var hm = document.createElement("script"); |
| | | hm.src = "https://hm.baidu.com/hm.js?d97abf6d61c21d773f97835defbdef4e"; |
| | | var s = document.getElementsByTagName("script")[0]; |
| | | s.parentNode.insertBefore(hm, s); |
| | | })(); |
| | | } |
| | | }; |
| | | |
| | | exports("miniTongji", miniTongji); |
| | | }); |