This commit is contained in:
张成
2025-10-09 18:17:41 +08:00
parent 366c18bcea
commit ba61c9e45d
63 changed files with 1133 additions and 295 deletions

View File

@@ -1,12 +1,12 @@
import http from '@/libs/http';
class ai_messagesClServer {
async all(param) {
let res= await http.get('/ai_messages/all', param);
let res= await window.framework.httpget('/ai_messages/all', param);
return res;
}
async page(row) {
let res= await http.post('/ai_messages/page', row);
let res= await window.framework.http.post('/ai_messages/page', row);
return res;
}
@@ -16,17 +16,17 @@ class ai_messagesClServer {
}
async add(row) {
let res= await http.post('/ai_messages/add', row);
let res= await window.framework.http.post('/ai_messages/add', row);
return res;
}
async edit(row) {
let res= await http.post('/ai_messages/edit', row);
let res= await window.framework.http.post('/ai_messages/edit', row);
return res;
}
async del(row) {
let res= await http.post('/ai_messages/del', row);
let res= await window.framework.http.post('/ai_messages/del', row);
return res;
}
}