1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
| import request from '@/utils/request'
|
| // 案例列表及详情
| export function queryDathInfoBaseInfo(data) {
| return request({
| url: '/project/deathinfo/queryDathInfoBaseInfo',
| method: 'post',
| data: data
| })
| }
| // 死亡信息修改
| export function deathinfoedit(data) {
| return request({
| url: '/project/deathinfo/edit',
| method: 'post',
| data: data
| })
| }
| // 死亡信息详情
| export function deathinfoInfo(id) {
| return request({
| url: '/project/deathinfo/getInfo/' + id,
| method: 'get'
| })
| }
|
|