From 2e6ec81ba7ad0283fafdeb63aa2bdf6bf006979a Mon Sep 17 00:00:00 2001 From: van Date: Sat, 9 May 2026 22:57:41 +0800 Subject: [PATCH] 1 --- src/api/jarvis/tgScalperPhone.js | 39 +++ src/views/jarvis/tgScalperPhone/index.vue | 281 ++++++++++++++++++++++ 2 files changed, 320 insertions(+) create mode 100644 src/api/jarvis/tgScalperPhone.js create mode 100644 src/views/jarvis/tgScalperPhone/index.vue 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 @@ + + + + +