工单管理

This commit is contained in:
2022-09-20 16:56:39 +08:00
parent 30ae0a15f6
commit a5055f01d0
6 changed files with 296 additions and 19 deletions

View File

@@ -2,7 +2,7 @@ import {post} from '@config/http.js'
// import store from '../vuex/store'
// 手持登录
export const loginApi = (user, password) => post('api/andxy2/hand/handlogin', {
export const loginApi = (user, password) => post('api/hand/handlogin', {
user: user,
password: password
})

View File

@@ -7,7 +7,7 @@ import {post} from '@config/http.js'
// 1.查询分拣工单及明细(定时查询)
export const sortingOrder = (reg) => post('api/hand/sortingOrder', {})
// export const sortingOrder = () => {
// export const handOrder = () => {
// let res = {
// result: [
// {
@@ -164,3 +164,10 @@ export const orderOperation = (type, uuid, ouuid) => post('api/hand/orderOperati
orderDetail_uuid: uuid,
order_uuid: ouuid
})
/**
* 工单管理
*/
// 1.查询工单及明细
export const handOrder = () => post('api/hand/order', {})