zhouwx
2025-09-18 21eaf20767aee0db24b679b798398dc735b50118
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
27
28
29
30
31
32
import request from "@/utils/request";
 
export function getMonthlyRecord(params) {
    return request({
        url: '/market/monthly/list',
        method: 'get',
        params: params
    })
}
 
export function addMonthlyRecord(data) {
    return request({
        url: '/market/monthly/insert',
        method: 'post',
        data: data
    })
}
 
export function editMonthlyRecord(params) {
    return request({
        url: `/market/monthly/update`,
        method: 'post',
        data: params
    })
}
 
export function delMonthlyRecord(data) {
    return request({
        url: `/market/monthly/deleted?monthlyId=${data}`,
        method: 'get'
    })
}