From a426c23b9bc90df787bc4d66718872f7c95c255a Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期三, 11 十二月 2019 10:46:37 +0800 Subject: [PATCH] 2019-12-11 --- src/utils/utils.js | 109 +++++++++++++++++++++++++++++++++++++++++++++++++----- 1 files changed, 99 insertions(+), 10 deletions(-) diff --git a/src/utils/utils.js b/src/utils/utils.js index 1717dc4..b0119dd 100644 --- a/src/utils/utils.js +++ b/src/utils/utils.js @@ -1,3 +1,8 @@ +import moment from 'moment' +import md5 from 'md5' + +const service = window.GLOB.service ? (/\/$/.test(window.GLOB.service) ? window.GLOB.service : window.GLOB.service + '/') : '' + export default class Utils { /** * @description 鐢熸垚32浣島uid string + 鏃堕棿 @@ -30,11 +35,24 @@ } /** + * @description md5鍔犲瘑 + * @return {String} str 鍔犲瘑涓� + * @return {String} timestamp 鏃堕棿鎴� + */ + static encrypt (str, timestamp) { + let salt = 'mingke' // 鐩愬�� + return md5(str + salt + timestamp) + } + + /** * @description sql鍔犲瘑 * @return {String} value */ static formatOptions (value) { - // 浜х敓涓�涓柊鐨凣UID鍊� + if (!value) return '' + + let salt = 'minKe' // 鐩愬�� + // 鍏抽敭瀛楄浆鎹㈣鍒� let format = [{ key: 'select', value: ' msltk ' @@ -132,18 +150,18 @@ key: 'ROLLBACK', value: ' mrlbkk ' }] + + // 鏇挎崲鍏抽敭瀛� format.forEach(item => { let reg = new RegExp('(^|\\s)' + item.key + '(\\s|$)', 'ig') value = value.replace(reg, item.value) }) + + // 1銆佹浛鎹�%绗︼紙鏁版嵁搴撲腑瑙f瀽鍚巗ql鎶ラ敊锛夛紝2銆佸幓闄ゆ敹灏惧浣欑┖鏍� + value = value.replace(/%/ig, 'mpercent') value = value.replace(/(^\s|\s$)/ig, '') - value = window.btoa(window.encodeURIComponent(value)) - // let index = Math.floor(Math.random() * value.length) - // value = value.slice(0, index) + 'minKe' + value.slice(index) - value = 'minKe' + value - value = window.btoa(value) - // value = value.replace(/%/ig, 'mpercent') - // .replace(/>/ig, 'greateror') + + // value = value.replace(/>/ig, 'greateror') // .replace(/</ig, 'lessor') // .replace(/!=/ig, 'noequal') // .replace(/=/ig, 'equal') @@ -156,7 +174,78 @@ // .replace(/\*/ig, 'mastrsk') // .replace(/'/ig, 'mqotek') // .replace(/\s/ig, 'mspace') + + // 1銆乪ncode缂栫爜锛堜腑鏂囧瓧绗﹁秴鍑篵ase64鍔犲瘑鑼冨洿锛夛紝2銆乥ase64鍔犲瘑 + value = window.btoa(window.encodeURIComponent(value)) + + // 闅忔満鎻掑叆瀛楃 + let index = Math.floor(Math.random() * value.length) + value = value.slice(0, index) + salt + value.slice(index) + + // base64鍔犲瘑 + value = window.btoa(value) + return value + } + + /** + * @description 鎷兼帴鎼滅储鏉′欢 + * @param {Array} searches 鎼滅储鏉′欢 + * @return {String} searchText 鎷兼帴缁撴灉 + */ + static mainjointsearchkey (searches) { + if (!searches || searches.length === 0) return '' + + if (searches[0].hasOwnProperty('initval')) { + let newsearches = [] + searches.forEach(search => { + let item = { + key: search.field, + match: search.match, + type: search.type, + value: search.initval + } + if (item.type === 'date') { + item.value = item.value ? moment().subtract(item.value, 'days').format('YYYY-MM-DD') : '' + } else if (item.type === 'datemonth') { + item.value = item.value ? moment().subtract(item.value, 'month').format('YYYY-MM') : '' + } else if (item.type === 'dateweek') { + item.value = item.value ? [moment().subtract(item.value * 7, 'days').startOf('week').format('YYYY-MM-DD'), + moment().subtract(item.value * 7, 'days').endOf('week').format('YYYY-MM-DD')] : '' + } else if (item.type === 'daterange') { + item.value = item.value ? [moment().subtract(item.value, 'days').format('YYYY-MM-DD'), + moment().subtract(item.value === 1 ? 1 : 0, 'days').format('YYYY-MM-DD')] : '' + } + newsearches.push(item) + }) + searches = newsearches + } + + let searchText = '' + searches.forEach(item => { + if (!item.value) return + // eslint-disable-next-line + searchText += (searchText !== '' ? ' ' + 'AND' + ' ' : '') + if (item.type === 'text' || item.type === 'select') { + // eslint-disable-next-line + let str = item.match === '=' ? '' : '%' + // eslint-disable-next-line + searchText += item.key + ' ' + item.match + ' ' + '\'' + str + item.value + str + '\'' + } else if (item.type === 'date' || item.type === 'datemonth') { + // eslint-disable-next-line + searchText += '(' + item.key + ' ' + item.match + ' ' + '\'' + item.value + '\')' + } else if (item.type === 'dateweek') { + // eslint-disable-next-line + searchText += '(' + item.key + ' ' + item.match + ' ' + '\'' + item.value[0] + '\' AND \'' + item.value[1] + '\')' + } else if (item.type === 'daterange') { + // eslint-disable-next-line + searchText += '(' + item.key + ' ' + item.match + ' ' + '\'' + item.value[0] + '\' AND \'' + item.value[1] + '\')' + } else { + // eslint-disable-next-line + searchText += '(' + item.key + ' ' + item.match + ' ' + '\'' + item.value + '\')' + } + }) + return searchText } /** @@ -200,9 +289,9 @@ if (!url) return '' let baseurl = '' if (process.env.NODE_ENV === 'production') { - baseurl = document.location.origin + '/' + baseurl = document.location.origin + '/' + service } else { - baseurl = 'http://qingqiumarket.cn/MKWMS/' + baseurl = 'http://qingqiumarket.cn/' + service } let realurl = url.match(/^http/) || url.match(/^\/\//) ? url : baseurl + url return realurl -- Gitblit v1.8.0