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 url from './TreeIndex'
| import { axios } from '@/utils/request'
|
| /**
| * login func
| * parameter: {
| * username: '',
| * password: '',
| * remember_me: true,
| * captcha: '12345'
| * }
| * @param parameter
| * @returns {*}
| */
| export function queryTreeListByProduction(parameter) {
| return axios({
| url: '/mdc/mdcEquipment/queryTreeListByProduction',
| method: 'get',
| headers: {
| 'Content-Type': 'application/json;charset=UTF-8'
| }
| })
| }
| export function queryTreeListByDepart(parameter) {
| return axios({
| url: '/mdc/mdcEquipment/queryTreeListByDepart',
| method: 'get',
| headers: {
| 'Content-Type': 'application/json;charset=UTF-8'
| }
| })
| }
|
|