From d3c60e18b95b50751f8088fa2d23cd8ff7f173bc Mon Sep 17 00:00:00 2001
From: WXL (wul) <wl_5969728@163.com>
Date: 星期三, 01 七月 2026 11:05:17 +0800
Subject: [PATCH] 测试完成

---
 src/api/smartor/smstemplet.js |   14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/src/api/smartor/smstemplet.js b/src/api/smartor/smstemplet.js
index 0b53f02..b761845 100644
--- a/src/api/smartor/smstemplet.js
+++ b/src/api/smartor/smstemplet.js
@@ -4,8 +4,8 @@
 export function listSmstemplet(query) {
   return request({
     url: '/smartor/smstemplet/list',
-    method: 'get',
-    params: query
+    method: 'post',
+    data: query
   })
 }
 
@@ -20,7 +20,7 @@
 // 鏂板鐭俊妯℃澘
 export function addSmstemplet(data) {
   return request({
-    url: '/smartor/smstemplet',
+    url: '/smartor/smstemplet/add',
     method: 'post',
     data: data
   })
@@ -29,8 +29,8 @@
 // 淇敼鐭俊妯℃澘
 export function updateSmstemplet(data) {
   return request({
-    url: '/smartor/smstemplet',
-    method: 'put',
+    url: '/smartor/smstemplet/edit',
+    method: 'post',
     data: data
   })
 }
@@ -38,7 +38,7 @@
 // 鍒犻櫎鐭俊妯℃澘
 export function delSmstemplet(templetid) {
   return request({
-    url: '/smartor/smstemplet/' + templetid,
-    method: 'delete'
+    url: '/smartor/smstemplet/remove/' + templetid,
+    method: 'get'
   })
 }

--
Gitblit v1.9.3