You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
617 B
18 lines
617 B
/**
|
|
* Copyright © 2020-present LiuDanYang. All rights Reserved.
|
|
*/
|
|
import { mGet, mPost } from "./request"
|
|
const app = getApp()
|
|
|
|
const sconfig = {
|
|
baseUrl: app.release ? `https://api-client-ztb.qniao.cn` : `http://47.113.118.47:9000`
|
|
}
|
|
// *****************************************账户业务**********************************************
|
|
const loginToken = (params) => mPost(`/recycle-user-center/authorize/get/product-line-token/by/login-token`, params, sconfig)
|
|
const getBaseInfo = () => mGet(`/ztb-factory/get/self-enterprise-profile-detail`, null, sconfig)
|
|
|
|
export {
|
|
sconfig,
|
|
loginToken,
|
|
getBaseInfo
|
|
}
|