king
2022-09-17 064363587292c429075273db1cc40b23ea4a847e
2022-09-17
9个文件已修改
29 ■■■■■ 已修改文件
src/api/index.js 11 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/menu/components/card/cardcellcomponent/dragaction/index.scss 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/tabviews/custom/components/card/cardcellList/index.scss 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/tabviews/custom/components/share/normalTable/index.scss 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/tabviews/custom/components/table/edit-table/normalTable/index.scss 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/tabviews/custom/index.jsx 8 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/tabviews/zshare/normalTable/index.scss 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/login/index.jsx 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/sso/index.jsx 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/api/index.js
@@ -201,7 +201,7 @@
  /**
   * @description 游客登录
   */
  getTouristMsg (appid, openid, memberid, scanId) {
  getTouristMsg (binding_type, appid, openid, memberid, scanId) {
    let _SessionUid = localStorage.getItem('SessionUid')
    if (!_SessionUid) { // 手动清除SessionUid时,实时生成
@@ -218,11 +218,16 @@
    }
    
    param.LText = md5(window.btoa(_SessionUid + param.timestamp))
    param.secretkey = md5(param.LText + 'mingke' + param.timestamp)
    // param.secretkey = md5(param.LText + 'mingke' + param.timestamp) // v_type 为空时
    let solt = md5((window.GLOB.appkey + window.btoa(window.GLOB.appkey + 'mingke') + 'mingke').toLowerCase()).slice(-6).toUpperCase()
    param.v_type = 'Y'
    param.secretkey = md5(param.LText + solt + param.timestamp)
    param.appkey = window.GLOB.appkey || ''
    if (appid) {
    if (binding_type === 'mk') {
      param.binding_type = 'mk'
      param.thd_party_member_id = memberid
      param.thd_party_openid = openid
src/menu/components/card/cardcellcomponent/dragaction/index.scss
@@ -114,6 +114,7 @@
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #e9e9e9;
  }
  .ant-mk-icon {
    vertical-align: top;
src/tabviews/custom/components/card/cardcellList/index.scss
@@ -155,6 +155,7 @@
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #e9e9e9;
  }
  .ant-mk-picture.scale {
    cursor: zoom-in;
src/tabviews/custom/components/share/normalTable/index.scss
@@ -100,6 +100,7 @@
          position: relative;
          background-position: center center;
          background-size: cover;
          background-color: #e9e9e9;
          margin: 2px;
        }
        .ant-mk-picture.scale {
src/tabviews/custom/components/table/edit-table/normalTable/index.scss
@@ -78,6 +78,7 @@
          position: relative;
          background-position: center center;
          background-size: cover;
          background-color: #e9e9e9;
          margin: 2px;
        }
        .ant-mk-picture.scale {
src/tabviews/custom/index.jsx
@@ -1038,13 +1038,13 @@
      }
  
      if (sessionStorage.getItem('dataM') === 'true') { // 数据权限
        component.setting.dataresource = component.setting.dataresource.replace(/\$@/ig, '/*').replace(/@datam@/ig, 'Y')
        component.setting.dataresource = component.setting.dataresource.replace(/\$@/ig, '/*').replace(/@datam@/ig, '\'Y\'')
        component.setting.dataresource = component.setting.dataresource.replace(/@\$/ig, '*/')
        _customScript = _customScript.replace(/\$@/ig, '/*').replace(/@datam@/ig, 'Y')
        _customScript = _customScript.replace(/\$@/ig, '/*').replace(/@datam@/ig, '\'Y\'')
        _customScript = _customScript.replace(/@\$/ig, '*/')
      } else {
        component.setting.dataresource = component.setting.dataresource.replace(/@\$|\$@/ig, '').replace(/@datam@/ig, '')
        _customScript = _customScript.replace(/@\$|\$@/ig, '').replace(/@datam@/ig, '')
        component.setting.dataresource = component.setting.dataresource.replace(/@\$|\$@/ig, '').replace(/@datam@/ig, '\'\'')
        _customScript = _customScript.replace(/@\$|\$@/ig, '').replace(/@datam@/ig, '\'\'')
      }
      regs.forEach(cell => {
src/tabviews/zshare/normalTable/index.scss
@@ -175,7 +175,7 @@
            padding: 5px;
          }
          .mk-picture {
            background-color: #d9d9d9;
            background-color: #e9e9e9;
            background-position: center center;
            background-size: cover;
          }
src/views/login/index.jsx
@@ -214,7 +214,7 @@
  }
  authLogin = (appid, openid, memberid, scanId) => {
    Api.getTouristMsg(appid, openid, memberid, scanId).then(res => {
    Api.getTouristMsg('mk', appid, openid, memberid, scanId).then(res => {
      if (res.status) {
        sessionStorage.setItem('UserID', res.UserID)
        sessionStorage.setItem('LoginUID', res.LoginUID)
src/views/sso/index.jsx
@@ -24,7 +24,7 @@
  }
  authLogin = (appid, openid, memberid, scanId) => {
    Api.getTouristMsg(appid, openid, memberid, scanId).then(res => {
    Api.getTouristMsg('mk', appid, openid, memberid, scanId).then(res => {
      if (res.status) {
        sessionStorage.setItem('UserID', res.UserID)
        sessionStorage.setItem('LoginUID', res.LoginUID)