ZengTao
2023-12-04 0258088b4e7751431080a1b47e7bc2af18031bbf
CanadaMes-ui/src/api/home.js
@@ -173,9 +173,9 @@
    })
}
export function DeleteProductionQueueGlass(id) {
export function DeleteProductionQueueGlass(FrameNo) {
    return request({
        url: '/home/DeleteProductionQueueGlass?id='+id,
        url: '/home/DeleteProductionQueueGlass?FrameNo='+FrameNo,
        method: 'post',
        data: ""
    })
@@ -189,11 +189,20 @@
    })
}
export function isAllowQueues(isAllowQueue) {
export function isAllowQueues(isAllowQueue,data) {
    return request({
        url: '/home/AddOutSliceS?isAllowQueue'+isAllowQueue,
        url: '/home/isAllowQueues?isAllowQueue=' + isAllowQueue,
        method: 'post',
        data
    })
}
export function isConfirmStates(isConfirmStates) {
    return request({
        url: '/home/isConfirmStates?isConfirmStates=' + isConfirmStates,
        method: 'post',
        data:""
    })
}