| | |
| | | */
|
| | | export function home(data) {
|
| | | return request({
|
| | | url: '/storageRack/load',
|
| | | url: '/home/load',
|
| | | method: 'get',
|
| | | data
|
| | | })
|
| | | }
|
| | | export function home2(data) {
|
| | | return request({
|
| | | url: '/storageRack/loads',
|
| | | url: '/home/loads',
|
| | | method: 'get',
|
| | | data
|
| | | })
|
| | | }
|
| | |
|
| | | export function loadtask(type) {
|
| | | return request({
|
| | | url: '/home/loadinout?types=' + type,
|
| | | method: 'get',
|
| | | })
|
| | | }
|
| | |
|
| | | export function InsertOrder(orderid) {
|
| | | return request({
|
| | | url: '/home/InsertOrder?orderid=' + orderid,
|
| | | method: 'get',
|
| | | data :""
|
| | | })
|
| | | }
|
| | |
|
| | | export function Addglassid(glassid) {
|
| | | return request({
|
| | | url: '/home/Addglassid?glassid=' + glassid,
|
| | | method: 'get',
|
| | | data :""
|
| | | })
|
| | | }
|