zss
2023-11-17 2518e47a3ac999978fbf14612c967c3bbf421d25
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
33
34
35
36
37
38
39
import request from '@/router/axios'
 
export function getPage(query) {
  return request({
    url: '/mp/wxautoreply/page',
    method: 'get',
    params: query
  })
}
 
export function addObj(obj) {
  return request({
    url: '/mp/wxautoreply',
    method: 'post',
    data: obj
  })
}
 
export function getObj(id) {
  return request({
    url: '/mp/wxautoreply/' + id,
    method: 'get'
  })
}
 
export function delObj(id) {
  return request({
    url: '/mp/wxautoreply/' + id,
    method: 'delete'
  })
}
 
export function putObj(obj) {
  return request({
    url: '/mp/wxautoreply',
    method: 'put',
    data: obj
  })
}