123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- export function judgmentNetworkReturnAddress() {
- /*判断是否是内网IP*/
- // 获取当前页面url
- var curPageUrl = window.location.href;
- // console.log('curPageUrl-0 '+curPageUrl);
- var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
- curPageUrl =curPageUrl.replace(reg1,'');
- // console.log('curPageUrl-1 '+curPageUrl);
- var reg2 = /\:+/g;//替换冒号为一点
- curPageUrl =curPageUrl.replace(reg2,'.');
- // console.log('curPageUrl-2 '+curPageUrl);
- curPageUrl = curPageUrl.split('.');//通过一点来划分数组
- // console.log(curPageUrl);
- var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
- var isInnerIp = false;//默认给定IP不是内网IP
- var ipNum = getIpNum(ipAddress);
- /**
- * 私有IP:A类 10.0.0.0 -10.255.255.255
- * B类 172.16.0.0 -172.31.255.255
- * C类 192.168.0.0 -192.168.255.255
- * D类 127.0.0.0 -127.255.255.255(环回地址)
- **/
- var aBegin = getIpNum("10.0.0.0");
- var aEnd = getIpNum("10.255.255.255");
- var bBegin = getIpNum("172.16.0.0");
- var bEnd = getIpNum("172.31.255.255");
- var cBegin = getIpNum("192.168.0.0");
- var cEnd = getIpNum("192.168.255.255");
- var dBegin = getIpNum("127.0.0.0");
- var dEnd = getIpNum("127.255.255.255");
- isInnerIp = isInner(ipNum,aBegin,aEnd) || isInner(ipNum,bBegin,bEnd) || isInner(ipNum,cBegin,cEnd) || isInner(ipNum,dBegin,dEnd);
- // console.log('是否是内网:'+isInnerIp);
- return isInnerIp?process.env.VUE_APP_BASE_LOCAL_API:process.env.VUE_APP_BASE_API;
- /*获取IP数*/
- function getIpNum(ipAddress) {
- var ip = ipAddress.split(".");
- var a = parseInt(ip[0]);
- var b = parseInt(ip[1]);
- var c = parseInt(ip[2]);
- var d = parseInt(ip[3]);
- var ipNum = a * 256 * 256 * 256 + b * 256 * 256 + c * 256 + d;
- return ipNum;
- }
- function isInner(userIp,begin,end){
- return (userIp>=begin) && (userIp<=end);
- }
- }
- /**
- * 参数处理
- * @param {*} params 参数
- */
- export function tansParams(params) {
- let result = ''
- for (const propName of Object.keys(params)) {
- const value = params[propName];
- var part = encodeURIComponent(propName) + "=";
- if (value !== null && typeof (value) !== "undefined") {
- if (typeof value === 'object') {
- for (const key of Object.keys(value)) {
- if (value[key] !== null && typeof (value[key]) !== 'undefined') {
- let params = propName + '[' + key + ']';
- var subPart = encodeURIComponent(params) + "=";
- result += subPart + encodeURIComponent(value[key]) + "&";
- }
- }
- } else {
- result += part + encodeURIComponent(value) + "&";
- }
- }
- }
- return result
- }
- // 日期格式化
- export function parseTime(time, pattern) {
- if (arguments.length === 0 || !time) {
- return null
- }
- if(time.indexOf('T')!== -1){
- let newTime = time.split('T')
- time = newTime[0] + ' ' + newTime[1]
- }
- const format = pattern || '{y}-{m}-{d} {h}:{i}:{s}'
- let date
- if (typeof time === 'object') {
- date = time
- } else {
- if ((typeof time === 'string') && (/^[0-9]+$/.test(time))) {
- time = parseInt(time)
- } else if (typeof time === 'string') {
- time = time.replace(new RegExp(/-/gm), '/');
- }
- if ((typeof time === 'number') && (time.toString().length === 10)) {
- time = time * 1000
- }
- date = new Date(time)
- }
- const formatObj = {
- y: date.getFullYear(),
- m: date.getMonth() + 1,
- d: date.getDate(),
- h: date.getHours(),
- i: date.getMinutes(),
- s: date.getSeconds(),
- a: date.getDay()
- }
- const time_str = format.replace(/{(y|m|d|h|i|s|a)+}/g, (result, key) => {
- let value = formatObj[key]
- // Note: getDay() returns 0 on Sunday
- if (key === 'a') { return ['日', '一', '二', '三', '四', '五', '六'][value] }
- if (result.length > 0 && value < 10) {
- value = '0' + value
- }
- return value || 0
- })
- return time_str
- }
|