From 43988e7dae93378116a8c5f1fc76f5568d8fd4b2 Mon Sep 17 00:00:00 2001 From: WXL <1785969728@qq.com> Date: 星期一, 17 六月 2024 10:32:07 +0800 Subject: [PATCH] 测试完成 --- src/api/smartor/svytitle.js | 20 ++++++++++---------- 1 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/api/smartor/svytitle.js b/src/api/smartor/svytitle.js index 5c8e5ff..a652481 100644 --- a/src/api/smartor/svytitle.js +++ b/src/api/smartor/svytitle.js @@ -1,44 +1,44 @@ import request from '@/utils/request' // 鏌ヨ闂嵎鍒楄〃 -export function listSvytitle(query) { +export function listsvyTemplate(query) { return request({ - url: '/smartor/svytitle/list', + url: '/smartor/svyTemplate/list', method: 'get', params: query }) } // 鏌ヨ闂嵎璇︾粏 -export function getSvytitle(svyid) { +export function getsvyTemplate(svyid) { return request({ - url: '/smartor/svytitle/' + svyid, + url: '/smartor/svyTemplate/' + svyid, method: 'get' }) } // 鏂板闂嵎 -export function addSvytitle(data) { +export function addsvyTemplate(data) { return request({ - url: '/smartor/svytitle', + url: '/smartor/svyTemplate', method: 'post', data: data }) } // 淇敼闂嵎 -export function updateSvytitle(data) { +export function updatesvyTemplate(data) { return request({ - url: '/smartor/svytitle/edit', + url: '/smartor/svyTemplate/edit', method: 'post', data: data }) } // 鍒犻櫎闂嵎 -export function delSvytitle(svyid) { +export function delsvyTemplate(svyid) { return request({ - url: '/smartor/svytitle/remove/' + svyid, + url: '/smartor/svyTemplate/remove/' + svyid, method: 'get' }) } -- Gitblit v1.9.3