Blame view

store-pc/src/api/lqYyjl.js 1.16 KB
b5df6609   “wangming”   ```
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
  import request from '@/utils/request'
  
  export function getYyjlList(data) {
    return request({
      url: '/api/Extend/LqYyjl',
      method: 'get',
      data
    })
  }
  
  /** 门店员工排班一览(含多健康师) */
  export function getStoreSchedule(data) {
    return request({
      url: '/api/Extend/LqYyjl/StoreSchedule',
      method: 'get',
      data
    })
  }
  
  export function getYyjlInfo(id) {
    return request({
      url: `/api/Extend/LqYyjl/${id}`,
      method: 'get'
    })
  }
  
  export function createYyjl(data) {
    return request({
      url: '/api/Extend/LqYyjl',
      method: 'post',
      data
    })
  }
  
  export function updateYyjl(id, data) {
    return request({
      url: `/api/Extend/LqYyjl/${id}`,
      method: 'put',
      data
    })
  }
  
  export function startYyjlService(id) {
    return request({
      url: `/api/Extend/LqYyjl/${id}/StartService`,
      method: 'post',
      data: {}
    })
  }
  
  export function cancelYyjl(id, noDealRemark = '') {
    return request({
      url: `/api/Extend/LqYyjl/${id}/Cancel`,
      method: 'post',
      data: { noDealRemark }
    })
  }
  
  export function completeYyjl(id) {
    return request({
      url: `/api/Extend/LqYyjl/${id}/Complete`,
      method: 'post',
      data: {}
    })
  }