feat: 新增虚拟支付订单与网盘链接检测功能

This commit is contained in:
王鹏
2026-07-28 13:42:30 +08:00
parent 4070179f46
commit 2250f744d1
60 changed files with 3668 additions and 106 deletions

View File

@@ -0,0 +1,18 @@
import request from '@/utils/request'
// 查询虚拟支付订单列表
export function listVirtualOrder(query) {
return request({
url: '/app/virtualOrder/list',
method: 'get',
params: query
})
}
// 查询虚拟支付订单详情
export function getVirtualOrder(id) {
return request({
url: '/app/virtualOrder/' + id,
method: 'get'
})
}

View File

@@ -43,6 +43,23 @@ export function delProject(id) {
})
}
// 检测单个项目的网盘链接
export function checkProjectLinks(id) {
return request({
url: '/office/project/link-check/single/' + id,
method: 'post'
})
}
// 检测选中项目的网盘链接
export function checkSelectedProjectLinks(ids) {
return request({
url: '/office/project/link-check/batch',
method: 'post',
data: ids
})
}
export function matchCode(id) {
return request({
url: '/office/project/matchCode/' + id,