191 lines
4.4 KiB
TypeScript
191 lines
4.4 KiB
TypeScript
import { useBaAccount } from '/@/stores/baAccount'
|
|
import { useSiteConfig } from '/@/stores/siteConfig'
|
|
import createAxios from '/@/utils/axios'
|
|
|
|
const storeUrl = '/api/v7.store/'
|
|
const moduleControllerUrl = '/admin/module/'
|
|
|
|
export function index(params: anyObj = {}) {
|
|
return createAxios({
|
|
url: moduleControllerUrl + 'index',
|
|
method: 'get',
|
|
params: params,
|
|
})
|
|
}
|
|
|
|
export function modules(params: anyObj = {}) {
|
|
const siteConfig = useSiteConfig()
|
|
return createAxios({
|
|
url: siteConfig.apiUrl + storeUrl + 'modules',
|
|
method: 'get',
|
|
params: params,
|
|
})
|
|
}
|
|
|
|
export function info(params: anyObj) {
|
|
const baAccount = useBaAccount()
|
|
const siteConfig = useSiteConfig()
|
|
return createAxios(
|
|
{
|
|
url: siteConfig.apiUrl + storeUrl + 'info',
|
|
method: 'get',
|
|
params: params,
|
|
},
|
|
{
|
|
anotherToken: baAccount.getToken('auth'),
|
|
}
|
|
)
|
|
}
|
|
|
|
export function createOrder(params: object = {}) {
|
|
const baAccount = useBaAccount()
|
|
const siteConfig = useSiteConfig()
|
|
return createAxios(
|
|
{
|
|
url: siteConfig.apiUrl + storeUrl + 'order',
|
|
method: 'post',
|
|
params: params,
|
|
},
|
|
{
|
|
anotherToken: baAccount.getToken('auth'),
|
|
}
|
|
)
|
|
}
|
|
|
|
export function payOrder(orderId: number, payType: string) {
|
|
const baAccount = useBaAccount()
|
|
const siteConfig = useSiteConfig()
|
|
return createAxios(
|
|
{
|
|
url: siteConfig.apiUrl + storeUrl + 'pay',
|
|
method: 'post',
|
|
params: {
|
|
order_id: orderId,
|
|
pay_type: payType,
|
|
},
|
|
},
|
|
{
|
|
anotherToken: baAccount.getToken('auth'),
|
|
showSuccessMessage: true,
|
|
}
|
|
)
|
|
}
|
|
|
|
export function payCheck(sn: string) {
|
|
const baAccount = useBaAccount()
|
|
const siteConfig = useSiteConfig()
|
|
return createAxios(
|
|
{
|
|
url: siteConfig.apiUrl + '/api/pay/check',
|
|
method: 'get',
|
|
params: {
|
|
sn: sn,
|
|
},
|
|
},
|
|
{
|
|
anotherToken: baAccount.getToken('auth'),
|
|
showCodeMessage: false,
|
|
}
|
|
)
|
|
}
|
|
|
|
/**
|
|
* 获取模块的可安装版本列表
|
|
*/
|
|
export function preDownload(data: anyObj) {
|
|
const baAccount = useBaAccount()
|
|
const siteConfig = useSiteConfig()
|
|
return createAxios(
|
|
{
|
|
url: siteConfig.apiUrl + storeUrl + 'preDownload',
|
|
method: 'POST',
|
|
data,
|
|
},
|
|
{
|
|
anotherToken: baAccount.getToken('auth'),
|
|
}
|
|
)
|
|
}
|
|
|
|
export function getInstallState(uid: string) {
|
|
return createAxios({
|
|
url: moduleControllerUrl + 'state',
|
|
method: 'get',
|
|
params: {
|
|
uid: uid,
|
|
},
|
|
})
|
|
}
|
|
|
|
export function postInstallModule(uid: string, orderId: number, version: string, update: boolean, extend: anyObj = {}) {
|
|
const baAccount = useBaAccount()
|
|
return createAxios(
|
|
{
|
|
url: moduleControllerUrl + 'install',
|
|
method: 'POST',
|
|
data: {
|
|
uid,
|
|
update,
|
|
version,
|
|
orderId,
|
|
token: baAccount.getToken('auth'),
|
|
extend,
|
|
},
|
|
timeout: 3000 * 10,
|
|
},
|
|
{
|
|
showCodeMessage: false,
|
|
}
|
|
)
|
|
}
|
|
|
|
export function postUninstall(uid: string) {
|
|
return createAxios(
|
|
{
|
|
url: moduleControllerUrl + 'uninstall',
|
|
method: 'post',
|
|
params: {
|
|
uid: uid,
|
|
},
|
|
},
|
|
{
|
|
showSuccessMessage: true,
|
|
}
|
|
)
|
|
}
|
|
|
|
export function changeState(params: anyObj) {
|
|
return createAxios(
|
|
{
|
|
url: moduleControllerUrl + 'changeState',
|
|
method: 'post',
|
|
data: params,
|
|
},
|
|
{
|
|
showCodeMessage: false,
|
|
}
|
|
)
|
|
}
|
|
|
|
export function dependentInstallComplete(uid: string) {
|
|
return createAxios({
|
|
url: moduleControllerUrl + 'dependentInstallComplete',
|
|
method: 'post',
|
|
params: {
|
|
uid: uid,
|
|
},
|
|
})
|
|
}
|
|
|
|
export function upload(file: string) {
|
|
const baAccount = useBaAccount()
|
|
return createAxios({
|
|
url: moduleControllerUrl + 'upload',
|
|
method: 'post',
|
|
params: {
|
|
file: file,
|
|
token: baAccount.getToken('auth'),
|
|
},
|
|
})
|
|
}
|