From 2b84af9bed8f4b7da94a4bb85e7223d3b18e4fcb Mon Sep 17 00:00:00 2001
From: king <18310653075@163.com>
Date: 星期六, 14 十二月 2019 23:03:26 +0800
Subject: [PATCH] 2019-12-14

---
 src/utils/utils.js |  367 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 365 insertions(+), 2 deletions(-)

diff --git a/src/utils/utils.js b/src/utils/utils.js
index 48e9cf9..d76bdcd 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 + 鏃堕棿
@@ -27,6 +32,239 @@
       return v.toString(16)
     })
     return uuid
+  }
+
+  /**
+   * @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) {
+    if (!value) return ''
+
+    let salt = 'minKe' // 鐩愬��
+    // 鍏抽敭瀛楄浆鎹㈣鍒�
+    let format = [{
+      key: 'select',
+      value: ' msltk '
+    }, {
+      key: 'from',
+      value: ' mfrmk '
+    }, {
+      key: 'where',
+      value: ' mwhrk '
+    }, {
+      key: 'order by',
+      value: ' modbk '
+    }, {
+      key: 'asc',
+      value: ' modack '
+    }, {
+      key: 'desc',
+      value: ' moddesk '
+    }, {
+      key: 'top',
+      value: ' mtpk '
+    }, {
+      key: 'like',
+      value: ' mlkk '
+    }, {
+      key: 'not like',
+      value: ' mnlkk '
+    }, {
+      key: 'between',
+      value: ' mbtnk '
+    }, {
+      key: 'and',
+      value: ' madk '
+    }, {
+      key: 'insert',
+      value: ' mistk '
+    }, {
+      key: 'into',
+      value: ' mitk '
+    }, {
+      key: 'update',
+      value: ' muptk '
+    }, {
+      key: 'delete',
+      value: ' mdelk '
+    }, {
+      key: 'begin',
+      value: ' mbgink '
+    }, {
+      key: 'end',
+      value: ' medk '
+    }, {
+      key: 'if',
+      value: ' mefk '
+    }, {
+      key: 'while',
+      value: ' mwilk '
+    }, {
+      key: 'create',
+      value: ' mcrtk '
+    }, {
+      key: 'alter',
+      value: ' matek '
+    }, {
+      key: 'len',
+      value: ' mlnk '
+    }, {
+      key: 'left',
+      value: ' mlftk '
+    }, {
+      key: 'right',
+      value: ' mritk '
+    }, {
+      key: 'union',
+      value: ' munok '
+    }, {
+      key: 'varchar',
+      value: ' mvcrk '
+    }, {
+      key: 'getdate',
+      value: ' mgtdtk '
+    }, {
+      key: 'TRY',
+      value: ' mtryonek '
+    }, {
+      key: 'TRAN',
+      value: ' mtrnk '
+    }, {
+      key: 'goto',
+      value: ' mgtk '
+    }, {
+      key: 'set',
+      value: ' mstk '
+    }, {
+      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 = value.replace(/>/ig, 'greateror')
+    //   .replace(/</ig, 'lessor')
+    //   .replace(/!=/ig, 'noequal')
+    //   .replace(/=/ig, 'equal')
+    //   .replace(/,/ig, 'comma')
+    //   .replace(/>=/ig, 'greaterorequal')
+    //   .replace(/<=/ig, 'lessorequal')
+    //   .replace(/@/ig, 'matk')
+    //   .replace(/\(/ig, 'mlbrktsk')
+    //   .replace(/\)/ig, 'mrbrktsk')
+    //   .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}  searches    鏍煎紡鍖栧悗缁撴灉
+   */
+  static initMainSearch (searches) {
+    if (!searches || searches.length === 0) return []
+
+    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)
+    })
+    
+    return newsearches
+  }
+
+  /**
+   * @description 鎷兼帴鎼滅储鏉′欢
+   * @param {Array}   searches     鎼滅储鏉′欢
+   * @return {String}  searchText  鎷兼帴缁撴灉
+   */
+  static joinMainSearchkey (searches) {
+    if (!searches || searches.length === 0) return ''
+
+    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') {
+        let timetail = ' 00:00:00.000'
+        if (item.match === '<' || item.match === '<=') {
+          timetail = ' 23:59:59.999'
+        }
+        // eslint-disable-next-line
+        searchText += '(' + item.key + ' ' + item.match + ' ' + '\'' + item.value + timetail + '\')'
+      } else if (item.type === 'datemonth') {
+        // eslint-disable-next-line
+        searchText += '(' + item.key + ' ' + item.match + ' ' + '\'' + item.value + '\')'
+      } else if (item.type === 'dateweek') {
+        let stimetail = ' 00:00:00.000'
+        let etimetail = ' 23:59:59.999'
+        // eslint-disable-next-line
+        searchText += '(' + item.key + ' ' + item.match + ' ' + '\'' + item.value[0] + stimetail + '\' AND \'' + item.value[1] + etimetail + '\')'
+      } else if (item.type === 'daterange') {
+        let stimetail = ' 00:00:00.000'
+        let etimetail = ' 23:59:59.999'
+        // eslint-disable-next-line
+        searchText += '(' + item.key + ' ' + item.match + ' ' + '\'' + item.value[0] + stimetail + '\' AND \'' + item.value[1] + etimetail + '\')'
+      } else {
+        // eslint-disable-next-line
+        searchText += '(' + item.key + ' ' + item.match + ' ' + '\'' + item.value + '\')'
+      }
+    })
+    return searchText
   }
 
   /**
@@ -70,11 +308,136 @@
     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
   }
+
+  /**
+   * @description 鍒犻櫎瀛樺偍杩囩▼sql
+   * @return {String} name 瀛樺偍杩囩▼鍚嶇О
+   */
+  static dropfunc (name) {
+    return `IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID('${name}') AND type in (N'P', N'PC'))  mdrpk PROCEDURE ${name}`
+  }
+
+  /**
+   * @description 鍒涘缓瀛樺偍杩囩▼
+   * @return {String}
+   */
+  static getfunc (param) {
+    let form = ''
+    let formParam = ''
+
+    if (param.fields && param.fields.length > 0) {
+      let _fields = []
+      param.fields.forEach(item => {
+        if (item.field) {
+          let type = ''
+          if (item.type.match(/date/ig)) {
+            type = 'datetime is null'
+          } else if (item.type === 'number') {
+            type = `decimal(18,${item.decimal})=0`
+          } else {
+            type = 'nvarchar(50)=\'\''
+          }
+          formParam = formParam + `mchr13k@${item.field} ${type},`
+
+          _fields.push(item.field)
+        }
+      })
+
+      let field1 = _fields.join(',')
+      let field2 = _fields.join(',@')
+      let field3 = _fields.map(cell => {
+        return cell + '=@' + cell
+      })
+
+      field2 = field2 ? '@' + field2 : ''
+      field3 = field3.join(',')
+
+      form = `
+        insert into ${param.name} (${field1},createuserid) select ${field2},@UserID
+        
+        update ${param.name} set ${field3},modifydate=getdate(),modifyuserid=@UserID
+      `
+    }
+
+    let Ltext = `create proc ${param.funcName}
+    (
+    @BID nvarchar(50)='',
+    @ID nvarchar(50)='',${formParam}
+    @sEPTMenuNo nvarchar(50)='${param.menuNo}',
+    @lang nvarchar(50)='',
+    @debug nvarchar(50)='',
+    @LoginUID nvarchar(50)='',
+    @SessionUid nvarchar(50)='',
+    @UserID nvarchar(50),
+    @ErrorCode nvarchar(50) out,
+    @retmsg nvarchar(4000) out
+    )
+    as
+    begin
+    declare  @BegindateTest datetime,@EnddateTest datetime
+    select  @BegindateTest=getdate()
+    set @ErrorCode=''
+    set @retmsg=''
+    BEGIN TRY
+      /*浜嬪姟鎿嶄綔*/
+      BEGIN TRAN
+        /*鍏蜂綋涓氬姟鎿嶄綔*/
+        
+         /* 
+        select top 10 * from sProcExcep order by id desc
+        
+        declare @UserName  nvarchar(50),@FullName nvarchar(50)
+        
+        select @UserName=UserName,@FullName=FullName from SUsers where UID=@UserID
+        ${form}
+        if 1=2
+        begin
+          set @ErrorCode='E'
+          set @retmsg='鍦ㄦ鍐欐姤閿�'
+          goto GOTO_RETURN
+        end
+        
+        insert into sNote (remark,createuserid,CreateUser,CreateStaff)
+        select '鍦ㄦ鍐欐棩蹇�',@UserID,@UserName,@FullName
+        */
+        
+      COMMIT TRAN
+      SET NOCOUNT ON
+      RETURN
+    END TRY
+    BEGIN CATCH
+      /*閿欒澶勭悊*/
+      ROLLBACK TRAN
+      DECLARE @ErrorMessage NVARCHAR(4000);
+      DECLARE @ErrorSeverity INT;
+      DECLARE @ErrorState INT;
+      
+      /*鎶婅嚜瀹氫箟鐨勫弸濂界殑閿欒淇℃伅鎻愮ず鍔犱笂*/
+      set @ErrorCode=cast(ERROR_NUMBER() as nvarchar(50))
+      SET @retmsg=ERROR_MESSAGE();
+      SELECT @ErrorMessage=ERROR_MESSAGE(),
+        @ErrorSeverity=ERROR_SEVERITY(),
+        @ErrorState=ERROR_STATE();
+        
+      RAISERROR(@ErrorMessage, /*-- Message text.*/
+        @ErrorSeverity, /*-- Severity.*/
+        @ErrorState  /*-- State.*/
+        );
+    END CATCH
+    
+    GOTO_RETURN:
+      ROLLBACK TRAN
+      
+    END`
+    console.log(Ltext)
+    Ltext = Ltext.replace(/\n\s{4}/ig, 'mchr13k')
+    return Ltext
+  }
 }
\ No newline at end of file

--
Gitblit v1.8.0