diff --git a/.env.dev b/.env.dev index d0716c26..96898f1a 100644 --- a/.env.dev +++ b/.env.dev @@ -1,7 +1,7 @@ ### # @Author: Do not edit # @Date: 2023-08-29 09:40:39 - # @LastEditTime: 2024-07-31 14:57:31 + # @LastEditTime: 2024-09-02 09:07:05 # @LastEditors: zhp # @Description: ### @@ -22,7 +22,7 @@ VUE_APP_TITLE = MES系统 # VUE_APP_BASE_API = 'http://192.168.1.56:48082' # VUE_APP_BASE_API = 'http://192.168.4.159:48080' # VUE_APP_BASE_API = 'http://192.168.1.64:48082' -VUE_APP_BASE_API = 'http://192.168.1.99:48082' +VUE_APP_BASE_API = 'http://192.168.1.20:48082' diff --git a/src/api/base/orderManage.js b/src/api/base/orderManage.js index 61e8c222..2c4a59c8 100644 --- a/src/api/base/orderManage.js +++ b/src/api/base/orderManage.js @@ -165,3 +165,34 @@ export function orderVoid(data) { data }) } + +export function orderSplit(data) { + return request({ + url: '/base/order/split', + method: 'post', + data + }) +} + +export function getDetailTree(data) { + return request({ + url: 'base/order/getDetailTree', + method: 'get', + params: data + }) +} +export function getDetailTreeInfo(data) { + return request({ + url: 'base/order/getDetailTreeInfoById', + method: 'get', + params: data + }) +} + +export function orderStop(data) { + return request({ + url: 'base/order/stop', + method: 'post', + params: data + }) +} diff --git a/src/assets/icons/svg/back.svg b/src/assets/icons/svg/back.svg new file mode 100644 index 00000000..004c51b6 --- /dev/null +++ b/src/assets/icons/svg/back.svg @@ -0,0 +1,27 @@ + + + rollback + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/views/OperationalOverview/components/baseTable.vue b/src/views/OperationalOverview/components/baseTable.vue index 52fc5ca8..5f40ba35 100644 --- a/src/views/OperationalOverview/components/baseTable.vue +++ b/src/views/OperationalOverview/components/baseTable.vue @@ -1,41 +1,23 @@