This commit is contained in:
van
2026-05-09 22:57:41 +08:00
parent 6578c89960
commit 2e6ec81ba7
2 changed files with 320 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
import request from '@/utils/request'
export function listTgScalperPhone(query) {
return request({
url: '/jarvis/tgScalperPhone/list',
method: 'get',
params: query
})
}
export function getTgScalperPhone(id) {
return request({
url: '/jarvis/tgScalperPhone/' + id,
method: 'get'
})
}
export function addTgScalperPhone(data) {
return request({
url: '/jarvis/tgScalperPhone',
method: 'post',
data: data
})
}
export function updateTgScalperPhone(data) {
return request({
url: '/jarvis/tgScalperPhone',
method: 'put',
data: data
})
}
export function delTgScalperPhone(id) {
return request({
url: '/jarvis/tgScalperPhone/' + id,
method: 'delete'
})
}