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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
| import request from '@/utils/request'
|
| // 查询小程序团队预约记录列表
| export function listTeamAppLog(query) {
| return request({
| url: '/hosp/teamAppLog/list',
| method: 'get',
| params: query
| })
| }
|
| // 查询小程序团队预约记录详细
| export function getTeamAppLog(id) {
| return request({
| url: '/hosp/teamAppLog/' + id,
| method: 'get'
| })
| }
|
| // 新增小程序团队预约记录
| export function addTeamAppLog(data) {
| return request({
| url: '/hosp/teamAppLog',
| method: 'post',
| data: data
| })
| }
|
| // 修改小程序团队预约记录
| export function updateTeamAppLog(data) {
| return request({
| url: '/hosp/teamAppLog',
| method: 'put',
| data: data
| })
| }
|
| // 删除小程序团队预约记录
| export function delTeamAppLog(id) {
| return request({
| url: '/hosp/teamAppLog/' + id,
| method: 'delete'
| })
| }
|
| // 查询团队预约沟通记录列表
| export function goutongList(id) {
| return request({
| url: '/hosp/TjTeamContactLog/list',
| method: 'get',
| id: id
| })
| }
|
| // 获取团队预约沟通记录详细信息
| export function TjTeamContactLog(id) {
| return request({
| url: '/hosp/TjTeamContactLog/' + id,
| method: 'get'
| })
| }
|
| // 新增团队预约沟通记录
| export function TjTeamContac(data) {
| return request({
| url: '/hosp/TjTeamContactLog',
| method: 'post',
| data: data
| })
| }
|
|