WXL
2026-03-19 5aa165156994b1b8a601063fa0a1107d1893ea57
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
26
import request from '@/utils/request'
 
// 案例列表及详情
export function witnessList(data) {
  return request({
    url: '/project/donationwitness/getDonationwitnessBaseInfo',
    method: 'post',
    data: data
  })
}
// 获取见证修改
export function witnessadd(data) {
  return request({
    url: '/project/donationwitness/add',
    method: 'post',
    data: data
  })
}
// 获取见证修改
export function witnessedit(data) {
  return request({
    url: '/project/donationwitness/edit',
    method: 'post',
    data: data
  })
}