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.
20 lines
732 B
20 lines
732 B
/**
|
|
* Copyright © 2020-present LiuDanYang. All rights Reserved.
|
|
*/
|
|
import { mGet, mPost } from "./request"
|
|
const app = getApp()
|
|
|
|
const pconfig = {
|
|
baseUrl: app.release ? `https://psc.qniao.cn` : `http://psc-dev.qniao.cn`
|
|
}
|
|
// *******************************************************************账户业务***********************************************************
|
|
// /credit/get/self-enterprise-credit-by-enterprise-id查看个人的采购额度
|
|
const getCreditInfo = (params) => mGet(`/payment-settlement-center/credit/get/self-enterprise-credit-by-enterprise-id`, params, pconfig)
|
|
|
|
const paymentInfo = (params) => mPost(`/payment-settlement-center/pay`, params, pconfig)
|
|
|
|
export {
|
|
pconfig,
|
|
getCreditInfo,
|
|
paymentInfo
|
|
}
|