king
2025-02-10 6226fcf27f6c99b4bc06708f1723aef9d3c78898
2025-02-10
3个文件已修改
48 ■■■■ 已修改文件
src/api/index.js 45 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/index.js 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/tabviews/custom/components/timeline/normal-timeline/index.jsx 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/api/index.js
@@ -138,36 +138,12 @@
  // }
  /**
   * @description 微信业务请求
   * 39上 qingqiumarket.cn|cloud.mk9h.cn|sso.mk9h.cn
   * @description 快递查询
   */
  wxNginxRequest (url, method, param) {
    let _url = url
    if (!/^http/.test(url)) {
      _url = window.GLOB.location + '/' + url
      if (process.env.NODE_ENV === 'production') {
        _url = document.location.origin + '/' + url
      }
    }
    if (/qingqiumarket.cn|cloud.mk9h.cn/.test(_url)) {
      _url = _url.replace('http://qingqiumarket.cn/', 'http://qingqiumarket.cn:8080/')
      _url = _url.replace('http://cloud.mk9h.cn/', 'http://cloud.mk9h.cn:8080/')
      _url = _url.replace('https://qingqiumarket.cn/', 'https://qingqiumarket.cn:8443/')
      _url = _url.replace('https://cloud.mk9h.cn/', 'https://cloud.mk9h.cn:8443/')
    }
    if (param) {
      return axios({
        url: _url,
        method,
        data: param
      })
    }
  expressRequest (url) {
    return axios({
      url: _url,
      method
      url: window.GLOB.location + '/' + url,
      method: 'get'
    })
  }
@@ -1206,19 +1182,8 @@
   * @description oss文件上传
   */
  fileOssUpload (param) {
    let _url = window.GLOB.location + '/file/oss/upload'
    if (process.env.NODE_ENV === 'production') {
      _url = document.location.origin + '/file/oss/upload'
    }
    if (/qingqiumarket.cn|cloud.mk9h.cn/.test(_url)) {
      _url = _url.replace('http://qingqiumarket.cn/', 'http://qingqiumarket.cn:8080/')
      _url = _url.replace('http://cloud.mk9h.cn/', 'http://cloud.mk9h.cn:8080/')
      _url = _url.replace('https://qingqiumarket.cn/', 'https://qingqiumarket.cn:8443/')
      _url = _url.replace('https://cloud.mk9h.cn/', 'https://cloud.mk9h.cn:8443/')
    }
    return axios({
      url: _url,
      url: window.GLOB.location + '/file/oss/upload',
      method: 'post',
      headers: { 'Content-Type': 'multipart/form-data' },
      data: param
src/index.js
@@ -199,6 +199,7 @@
      GLOB.host = window.location.host + (_service ? '_' + _service : '')
      GLOB.baseurl = document.location.origin + '/' + GLOB.service
      GLOB.linkurl = GLOB.baseurl + 'index.html'
      GLOB.location = document.location.origin
    } else {
      GLOB.location = config.host
      GLOB.service = config.service
src/tabviews/custom/components/timeline/normal-timeline/index.jsx
@@ -417,7 +417,7 @@
    this.setState({
      loading: true
    })
    Api.wxNginxRequest(`express/${code}/${order}`, 'get').then(res => {
    Api.expressRequest(`express/${code}/${order}`).then(res => {
      if (!res || typeof(res) !== 'string') {
        notification.error({
          top: 92,