小程序新增的功能

This commit is contained in:
gyj
2024-02-29 09:23:36 +08:00
parent aca849d8a4
commit c6c3848842
11 changed files with 384 additions and 130 deletions
+18
View File
@@ -0,0 +1,18 @@
import request from '@/utils/request'
// 调解首页数据
export function todoCount(data) {
return request({
'url': '/caseApplication/todoCount',
method: 'get',
params: data
})
}
// 仲裁调解首页数据
export function toDoCountReferee(data) {
return request({
'url': '/caseApplication/toDoCount',
method: 'get',
params: data
})
}