diff --git a/src/api/jarvis/tgScalperPhone.js b/src/api/jarvis/tgScalperPhone.js new file mode 100644 index 0000000..5886f84 --- /dev/null +++ b/src/api/jarvis/tgScalperPhone.js @@ -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' + }) +} diff --git a/src/views/jarvis/tgScalperPhone/index.vue b/src/views/jarvis/tgScalperPhone/index.vue new file mode 100644 index 0000000..a29f50a --- /dev/null +++ b/src/views/jarvis/tgScalperPhone/index.vue @@ -0,0 +1,281 @@ + + + + +