zhangzengfei
2022-07-20 4a800a8fc83c6bd1f86a8e847b079a51a7532c09
src/api/system.ts
@@ -471,6 +471,13 @@
    data: qs.stringify(data)
  })
}
export const activeByOrder = (data: any) => {
  return request({
    url: "/version/auth/shop/activeByOrder",
    method: "post",
    data: qs.stringify(data)
  })
}
export const getShopOrderList = (data: any) => {
  return request({
    url: "/version/auth/shop/getOrderList",
@@ -510,3 +517,34 @@
  })
}
export const getAuthInfo = () => {
  return request({
    url: "/data/api-v/sysset/showAuthInfo",
    method: "get"
  })
}
export const setAuthInfo = (data: any) => {
  return request({
    url: "/data/api-v/sysset/setAuthInfo",
    method: "post",
    data
  })
}
export const getRemoteServer = (data: any) => {
  return request({
    url: "/data/api-v/sysset/getRemoteServer",
    method: "post",
    data
  })
}
export const setRemoteServer = (data: any) => {
  return request({
    url: "/data/api-v/sysset/setRemoteServer",
    method: "post",
    data:qs.stringify(data)
  })
}