update 对接lianlian平台

This commit is contained in:
2024-04-18 17:26:08 +08:00
parent 8f7b7d994e
commit 80632ec121
9 changed files with 1089 additions and 4 deletions

44
jsowell-ui/src/api/thirdParty/secret.js vendored Normal file
View File

@@ -0,0 +1,44 @@
import request from '@/utils/request'
// 查询对接三方平台配置列表
export function listSecret(query) {
return request({
url: '/thirdparty/secret/list',
method: 'get',
params: query
})
}
// 查询对接三方平台配置详细
export function getSecret(id) {
return request({
url: '/thirdparty/secret/' + id,
method: 'get'
})
}
// 新增对接三方平台配置
export function addSecret(data) {
return request({
url: '/thirdparty/secret',
method: 'post',
data: data
})
}
// 修改对接三方平台配置
export function updateSecret(data) {
return request({
url: '/thirdparty/secret',
method: 'put',
data: data
})
}
// 删除对接三方平台配置
export function delSecret(id) {
return request({
url: '/thirdparty/secret/' + id,
method: 'delete'
})
}