{"version":3,"sources":["websitecommand.js"],"sourcesContent":["/******/ (function(modules) { // webpackBootstrap\n/******/ \t// The module cache\n/******/ \tvar installedModules = {};\n/******/\n/******/ \t// The require function\n/******/ \tfunction __webpack_require__(moduleId) {\n/******/\n/******/ \t\t// Check if module is in cache\n/******/ \t\tif(installedModules[moduleId]) {\n/******/ \t\t\treturn installedModules[moduleId].exports;\n/******/ \t\t}\n/******/ \t\t// Create a new module (and put it into the cache)\n/******/ \t\tvar module = installedModules[moduleId] = {\n/******/ \t\t\ti: moduleId,\n/******/ \t\t\tl: false,\n/******/ \t\t\texports: {}\n/******/ \t\t};\n/******/\n/******/ \t\t// Execute the module function\n/******/ \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n/******/\n/******/ \t\t// Flag the module as loaded\n/******/ \t\tmodule.l = true;\n/******/\n/******/ \t\t// Return the exports of the module\n/******/ \t\treturn module.exports;\n/******/ \t}\n/******/\n/******/\n/******/ \t// expose the modules object (__webpack_modules__)\n/******/ \t__webpack_require__.m = modules;\n/******/\n/******/ \t// expose the module cache\n/******/ \t__webpack_require__.c = installedModules;\n/******/\n/******/ \t// identity function for calling harmony imports with the correct context\n/******/ \t__webpack_require__.i = function(value) { return value; };\n/******/\n/******/ \t// define getter function for harmony exports\n/******/ \t__webpack_require__.d = function(exports, name, getter) {\n/******/ \t\tif(!__webpack_require__.o(exports, name)) {\n/******/ \t\t\tObject.defineProperty(exports, name, {\n/******/ \t\t\t\tconfigurable: false,\n/******/ \t\t\t\tenumerable: true,\n/******/ \t\t\t\tget: getter\n/******/ \t\t\t});\n/******/ \t\t}\n/******/ \t};\n/******/\n/******/ \t// getDefaultExport function for compatibility with non-harmony modules\n/******/ \t__webpack_require__.n = function(module) {\n/******/ \t\tvar getter = module && module.__esModule ?\n/******/ \t\t\tfunction getDefault() { return module['default']; } :\n/******/ \t\t\tfunction getModuleExports() { return module; };\n/******/ \t\t__webpack_require__.d(getter, 'a', getter);\n/******/ \t\treturn getter;\n/******/ \t};\n/******/\n/******/ \t// Object.prototype.hasOwnProperty.call\n/******/ \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n/******/\n/******/ \t// __webpack_public_path__\n/******/ \t__webpack_require__.p = \"\";\n/******/\n/******/ \t// Load entry module and return exports\n/******/ \treturn __webpack_require__(__webpack_require__.s = 4);\n/******/ })\n/************************************************************************/\n/******/ ([\n/* 0 */\n/***/ (function(module, exports) {\n\n\r\nvar getKeys = Object.names || function (obj) {\r\n var names = [], name = '';\r\n for (name in obj) {\r\n if (obj.hasOwnProperty(name)) names.push(name);\r\n }\r\n return names;\r\n }\r\nfunction isPlainObject(value) {\r\n return !!value && Object.prototype.toString.call(value) === '[object Object]';\r\n}\r\nfunction isArray(value) {\r\n return value instanceof Array\r\n}\r\nfunction toArray(value) {\r\n return Array.prototype.slice.call(value);\r\n}\r\nfunction Cookie() {\r\n if (!(this instanceof Cookie)) {\r\n return new Cookie()\r\n }\r\n ;\r\n}\r\nCookie.prototype = {\r\n get: function (name) {\r\n var nameEQ = name + \"=\";\r\n var ca = document.cookie.split(';');//把cookie分割成组\r\n for (var i = 0; i < ca.length; i++) {\r\n var c = ca[i];//取得字符串\r\n while (c.charAt(0) == ' ') {//判断一下字符串有没有前导空格\r\n c = c.substring(1, c.length);//有的话,从第二位开始取\r\n }\r\n //如果含有我们要的name\r\n if (c.indexOf(nameEQ) == 0) {\r\n return decodeURIComponent(c.substring(nameEQ.length, c.length));//解码并截取我们要值\r\n }\r\n }\r\n return false;\r\n },\r\n set: function (name, value, options) {\r\n if (isPlainObject(name)) {\r\n for (var k in name) {\r\n if (name.hasOwnProperty(k)) this.set(k, name[k], value);\r\n }\r\n } else {\r\n var opt = isPlainObject(options) ? options : {expires: options},\r\n expires = opt.expires !== undefined ? opt.expires : '',\r\n expiresType = typeof(expires),\r\n path = opt.path !== undefined ? ';path=' + opt.path : ';path=/',\r\n domain = opt.domain ? ';domain=' + opt.domain : '',\r\n secure = opt.secure ? ';secure' : '';\r\n\r\n //过期时间\r\n if (expiresType === 'string' && expires !== '') expires = new Date(expires);\r\n else if (expiresType === 'number') expires = new Date(+new Date + 1000 * expires);\r\n if (expires !== '' && 'toGMTString' in expires) expires = ';expires=' + expires.toGMTString();\r\n\r\n\r\n document.cookie = name + \"=\" + encodeURIComponent(value) + expires + path + domain + secure; //转码并赋值\r\n }\r\n },\r\n remove: function (names) {\r\n names = isArray(names) ? names : toArray(arguments);\r\n for (var i = 0, l = names.length; i < l; i++) {\r\n this.set(names[i], '', -1);\r\n }\r\n return names;\r\n },\r\n clear: function (name) {\r\n return name ? this.remove(name) : this.remove(getKeys(this.all()));\r\n },\r\n del: function (name, path, domain) {\r\n document.cookie = name + \"=\" +\r\n ((path) ? \"; path=\" + path : \"; path=/\") +\r\n ((domain) ? \"; domain=\" + domain : \"\") +\r\n \";expires=Thu, 01-Jan-1970 00:00:01 GMT\";\r\n },\r\n all: function () {\r\n if (document.cookie === '') return {};\r\n var cookies = document.cookie.split('; '), result = {};\r\n for (var i = 0, l = cookies.length; i < l; i++) {\r\n var item = cookies[i].split('=');\r\n result[decodeURIComponent(item[0])] = decodeURIComponent(item[1]);\r\n }\r\n return result;\r\n }\r\n};\r\n\r\nvar cookie = function (name, value, options) {\r\n var argm = arguments;\r\n if (argm.length === 0) return Cookie().all();\r\n if (argm.length === 1 && name === null) return Cookie().clear();\r\n if (argm.length === 2 && !value) return Cookie().clear(name);\r\n if (typeof(name) == 'string' && !value) return Cookie().get(name);\r\n if (isPlainObject(name) || (argm.length > 1 && name && value))\r\n return Cookie().set(name, value, options);\r\n if (value === null) return Cookie().remove(name);\r\n return Cookie().all();\r\n}\r\nfor (var a in Cookie.prototype) cookie[a] = Cookie.prototype[a];\r\n\r\n\r\n// var cookies = {\r\n// set: function (name, value, expires, path, domain) {\r\n// expires = new Date(new Date().getTime() + (((typeof expires == \"undefined\") ? 12 * 7200 : expires)) * 1000);\r\n// var tempcookie = name + \"=\" + encodeURIComponent(value) +\r\n// ((expires) ? \"; expires=\" + expires.toGMTString() : \"\") +\r\n// ((path) ? \"; path=\" + path : \"; path=/\") +\r\n// ((domain) ? \"; domain=\" + domain : \"\");\r\n// (tempcookie.length < 4096) ? document.cookie = tempcookie : alert(\"The cookie is bigger than cookie lagrest\");\r\n// },\r\n//\r\n//\r\n// get: function (name) {\r\n// var xarr = document.cookie.match(new RegExp(\"(^| )\" + name + \"=([^;]*)(;|$)\"));\r\n// if (xarr != null)\r\n// return decodeURIComponent(xarr[2]);\r\n// return null;\r\n// },\r\n//\r\n// del: function (name, path, domain) {\r\n// if (this.get(name))\r\n// document.cookie = name + \"=\" +\r\n// ((path) ? \"; path=\" + path : \"; path=/\") +\r\n// ((domain) ? \"; domain=\" + domain : \"\") +\r\n// \";expires=Thu, 01-Jan-1970 00:00:01 GMT\";\r\n// },\r\n// day: function (xd) {\r\n// return xd * 24 * 3600;\r\n// },\r\n// hour: function (xh) {\r\n// return xh * 3600;\r\n// }\r\n// };\r\n\r\nmodule.exports = cookie;\n\n/***/ }),\n/* 1 */,\n/* 2 */,\n/* 3 */,\n/* 4 */\n/***/ (function(module, exports, __webpack_require__) {\n\nvar cookies = __webpack_require__(0);\r\n(function(){\r\n ;\r\n var _css = '.iemodal{display:inline;}.ie-shengji-main{margin:0;padding:0;font-family:\\'Microsoft Yahei\\',\\'Hiragino Sans GB\\',simsun;color:#666;font-size:14px;text-align:left;}.ie-shengji-main ul{padding:0;margin:0}.ie-shengji-main ul li{padding:0;margin:0;list-style:none}.ie-shengji-main img{border:0}.ie-shengji-main .glist{width:1202px;margin:0 auto;padding-top:60px}.ie-shengji-main .glist .p{margin:50px 0 30px 0}.ie-shengji-main .update{width:800px;height:360px;background-color:#f8f8f8;margin:0 auto}.ie-shengji-main .update .u1{padding-left:110px;font-size:16px;position:relative;padding-top:30px}.ie-shengji-main .update .u1 .u1img{position:absolute}.ie-shengji-main .update .u1 .u1t{padding-left:110px;padding-top:12px;font-weight:bold;font-size:16px;}.ie-shengji-main .update .u1 .u1t2{padding-left:110px;padding-top:10px;font-size:16px;line-height:28px;}.ie-shengji-main .update .u2{border-top:1px solid #ddd;width:580px;margin:46px auto;position:relative}.ie-shengji-main .update .u2 span{position:absolute;background-color:#f8f8f8;top:-7px;padding:0 10px;left:185px;font-size:12px}.ie-shengji-main .update .blist{padding-left:100px;}.ie-shengji-main .update .blist li{list-style:none;float:left;text-align:center;height:80px;width:150px;font-size:12px}.ie-shengji-main a:link,.ie-shengji-main a:visited{color:#003598;text-decoration:none}.ie-shengji-main a:hover{color:#ea5404}.iepopbox {position: absolute;z-index: 80001;border: 3px solid #aecee1;background-color: #fff;width:800px;height:360px;}.iepopbox .iepopboxtitle {font-size: 14px;font-weight: 700;color: #fff;background-color: #466b98;padding: 8px 0 8px 12px}.iepopbox .iepopboxclose {position: absolute;right: 10px;top: 10px;width: 12px;height: 12px;cursor: pointer;color: #fff;z-index:80001;background: url(//g1.dfcfw.com/g3/201904/20190415093037.png) no-repeat}.iemask {position: absolute;left: 0;top: 0;width: 100%;height: 100%;z-index: 80000;background: url(//g1.dfcfw.com/g3/201904/20190415093226.png);_background: 0 0;_filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale, src=\"img/mask.png\")}';\r\n function AddCssByStyle(cssString){\r\n var doc=document;\r\n var style=doc.createElement(\"style\");\r\n style.setAttribute(\"type\", \"text/css\");\r\n \r\n if(style.styleSheet){style.styleSheet.cssText = cssString;} else {var cssText = doc.createTextNode(cssString);style.appendChild(cssText);}\r\n \r\n var heads = doc.getElementsByTagName(\"head\");\r\n if(heads.length){heads[0].appendChild(style);}else{doc.documentElement.appendChild(style);}\r\n }\r\n var __isshowbox = false;\r\n var _intervalIEDialogPos;\r\n var __PosCount = 0;\r\n function setIEDialogPos(){\r\n __PosCount++;\r\n var _scrollHeight = document.documentElement.scrollHeight;\r\n if(_scrollHeight == 0){\r\n _scrollHeight = document.body.scrollHeight;\r\n }\r\n // if(__PosCount < 1000){\r\n // _scrollHeight = _scrollHeight - 10;\r\n // }\r\n document.getElementById(\"iemask\").style.height = (_scrollHeight + \"px\");\r\n // document.getElementById(\"iemask\").style.height = (document.body.clientHeight + \"px\");\r\n\r\n var scrollTop = window.pageYOffset || document.documentElement.scrollTop;\r\n var _clientHeight = document.documentElement.clientHeight;\r\n if(_clientHeight == 0){\r\n _clientHeight = document.body.clientHeight;\r\n }\r\n var _clientWidth = document.documentElement.clientWidth;\r\n if(_clientWidth == 0){\r\n _clientWidth = document.body.clientWidth;\r\n }\r\n var __top = _clientHeight / 2 - document.getElementById(\"iepopbox\").offsetHeight / 2 + scrollTop;\r\n if(__top < 50){\r\n __top = 50;\r\n }\r\n document.getElementById(\"iepopbox\").style.left = (parseInt(_clientWidth / 2 - document.getElementById(\"iepopbox\").offsetWidth / 2) + \"px\");\r\n document.getElementById(\"iepopbox\").style.top = (parseInt(__top) + \"px\");\r\n }\r\n function showIEDialog(){\r\n AddCssByStyle(_css);\r\n var _html = '