diff --git a/src/api/modular/main/BookingLedger.js b/src/api/modular/main/BookingLedger.js index 561b596..dc62864 100644 --- a/src/api/modular/main/BookingLedger.js +++ b/src/api/modular/main/BookingLedger.js @@ -999,7 +999,15 @@ export function SubmitRule0pinion (parameter) { export function BookingCustomerOrderPage (parameter) { return axios({ - url: 'BookingCustomerOrder/PageData', + url: '/BookingCustomerOrder/PageData', + method: 'post', + data: parameter + }) +} + +export function BookingCustomerOrderSave (parameter) { + return axios({ + url: '/BookingCustomerOrder/Save', method: 'post', data: parameter }) diff --git a/src/api/modular/system/fileManage.js b/src/api/modular/system/fileManage.js index e60c9f0..66e81c5 100644 --- a/src/api/modular/system/fileManage.js +++ b/src/api/modular/system/fileManage.js @@ -145,3 +145,18 @@ export function UploadTempFile (parameter) { data: parameter }) } + +/** + * 客户订舱下载文件 + * + * @author zuohuaijun + * @date 2021/4/23 00:20 + */ +export function BookingCustomerOrderGetFile (parameter) { + return axios({ + url: '/BookingCustomerOrder/GetFile', + method: 'get', + params: parameter, + responseType: 'blob' + }) +} diff --git a/src/views/main/BookingCustomerLedger/detail/index.less b/src/views/main/BookingCustomerLedger/detail/index.less deleted file mode 100644 index e831c41..0000000 --- a/src/views/main/BookingCustomerLedger/detail/index.less +++ /dev/null @@ -1,6 +0,0 @@ -@import "~ant-design-vue/lib/style/index"; - -// The prefix to use on all css classes from ant-pro. -@ant-pro-prefix : ant-pro; -@ant-global-sider-zindex : 106; -@ant-global-header-zindex : 105; \ No newline at end of file diff --git a/src/views/main/BookingCustomerLedger/detail/index.vue b/src/views/main/BookingCustomerLedger/detail/index.vue index a96c27f..abaf1bb 100644 --- a/src/views/main/BookingCustomerLedger/detail/index.vue +++ b/src/views/main/BookingCustomerLedger/detail/index.vue @@ -1,13 +1,13 @@