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
| import resquest from '@/utils/request'
|
| export function businessStatisticsByDay(params) {
| return resquest({
| url: '/report/businessStatisticsByDay',
| method: 'get',
| params: params
| })
| }
|
| export function testProductByDay(params) {
| return resquest({
| url: '/report/testProductByDay',
| method: 'get',
| params: params
| })
| }
|
|
| export function selectSampleDefects(params) {
| return resquest({
| url: '/report/selectSampleDefects',
| method: 'post',
| params: params
| })
| }
|
| //添加日程
| export function addSchedule(data) {
| return resquest({
| url: '/report/addSchedule',
| method: 'post',
| params: data
| })
| }
|
| //查询日历任务图
| export function calendarWorkByWeek() {
| return resquest({
| url: '/report/calendarWorkByWeek',
| method: 'get',
| })
| }
|
| //查询日历任务图
| export function ScheduleByMe(data) {
| return resquest({
| url: '/report/ScheduleByMe',
| method: 'post',
| params:data
| })
| }
|
|