From e66d702523f4244e8651fb7a2b31775e386927aa Mon Sep 17 00:00:00 2001 From: sunzehua Date: Wed, 15 May 2024 16:13:00 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/modular/main/BookingLedger.js | 8 + src/utils/request.js | 6 +- src/views/ServiceItems/index.vue | 436 +++++++++++++++++- src/views/ServiceItems/u1041.svg | 6 + src/views/main/BookingDjy/list/index.vue | 1 + .../detail/components/selectView.vue | 4 +- src/views/main/CabinManagement/index.vue | 112 +++-- src/views/main/ruleTemp/detail.vue | 6 +- 8 files changed, 520 insertions(+), 59 deletions(-) create mode 100644 src/views/ServiceItems/u1041.svg diff --git a/src/api/modular/main/BookingLedger.js b/src/api/modular/main/BookingLedger.js index 80e7fbf..75a2725 100644 --- a/src/api/modular/main/BookingLedger.js +++ b/src/api/modular/main/BookingLedger.js @@ -1617,4 +1617,12 @@ export function ImportBookingCurst(parameter) { method: 'post', data: parameter }) +} + +export function GetTraceFlowInfo(parameter) { + return axios({ + url: '/EmbedTraceProduct/GetTraceFlowInfo', + method: 'post', + data: parameter + }) } \ No newline at end of file diff --git a/src/utils/request.js b/src/utils/request.js index 5065d05..e7fabac 100644 --- a/src/utils/request.js +++ b/src/utils/request.js @@ -5,7 +5,11 @@ import { message, Modal, notification } from 'ant-design-vue' /// es/notificatio import { VueAxios } from './axios' import { ACCESS_TOKEN, X_ACCESS_TOKEN } from '@/store/mutation-types' const iframArr = ['/EmbedProjectGoodsStatus/GetServiceProjectList', '/EmbedProjectGoodsStatus/GetServiceStatusList', - '/EmbedProjectGoodsStatus/CancelServiceProject', '/EmbedProjectGoodsStatus/SaveServiceProject', '/EmbedProjectGoodsStatus/SaveServiceStatus', '/EmbedProjectGoodsStatus/CancelServiceStatus'] + '/EmbedProjectGoodsStatus/CancelServiceProject', '/EmbedTraceProduct/GetTraceFlowInfo', + '/EmbedProjectGoodsStatus/SaveServiceProject', + '/EmbedProjectGoodsStatus/SaveServiceStatus', + '/EmbedProjectGoodsStatus/CancelServiceStatus' +] // 创建 axios 实例ACCESS_TOKEN const service = axios.create({ // baseURL: '/api', // api base_url diff --git a/src/views/ServiceItems/index.vue b/src/views/ServiceItems/index.vue index ccf5bc1..5338f66 100644 --- a/src/views/ServiceItems/index.vue +++ b/src/views/ServiceItems/index.vue @@ -1,6 +1,6 @@