zhouwx
2025-11-12 d53ceb426b363a9b4d0a7d8cf331427826550ee0
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 getSealFlow(params) {
    return request({
        url: '/seal/flow/list',
        method: 'get',
        params: params
    })
}
 
export function addSealFlow(data) {
    return request({
        url: '/seal/flow/insert',
        method: 'post',
        data: data
    })
}
 
export function editSealFlow(params) {
    return request({
        url: `/seal/flow/update`,
        method: 'post',
        data: params
    })
}
 
export function delSealFlow(data) {
    return request({
        url: `/seal/flow/deleted?flowId=${data}`,
        method: 'get'
    })
}