This commit is contained in:
chenhaodong
2023-03-28 21:22:35 +08:00
parent b2089d3554
commit 08619ea2c1
419 changed files with 21862 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
import { post } from '@/utils/request'
// 更新或者保存数据
export function saveData(data) {
return post('/tsjxxb/controller/save', data)
}
// 分页查询
export function pageList(data){
return post('/tsjxxb/controller/paging', data)
}