From a6022f016201a33fc6d8754a8005710f8896e140 Mon Sep 17 00:00:00 2001 From: sunzehua Date: Tue, 30 Apr 2024 18:00:13 +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 --- .env | 12 +- .env.development | 12 +- src/api/modular/main/BookingLedger.js | 8 + src/core/lazy_lib/components_use.js | 4 +- .../main/BookingCustomerLedger/list/index.vue | 52 +++++- src/views/main/BookingDjy/detail/index.vue | 71 ++++++-- src/views/main/BookingGangjie/list/index.vue | 8 +- .../detail/modules/goodsTable.vue | 6 +- src/views/main/CabinManagement/index.vue | 24 +++ src/views/main/Printing/index.vue | 171 +++++++++++------- src/views/main/Taskmanage/BCModify/index.vue | 23 +++ .../main/Taskmanage/BcFileDetail/Editing.vue | 23 +++ src/views/main/mskOrderList/index.vue | 2 +- src/views/main/ruleTemp/detail.vue | 13 +- 14 files changed, 327 insertions(+), 102 deletions(-) diff --git a/.env b/.env index ce55dd7..c84d1c6 100644 --- a/.env +++ b/.env @@ -1,8 +1,8 @@ NODE_ENV=production VUE_APP_PREVIEW=true # VUE_APP_TYPE = 'customer' -# VUE_APP_TYPE = 'hechuan' -VUE_APP_TYPE = 'yunyingduan' +VUE_APP_TYPE = 'hechuan' +# VUE_APP_TYPE = 'yunyingduan' # VUE_APP_TYPE = 'gangjie' # 打包部署的三个端 客户端customer 和川端hechuan 运营端djy @@ -11,8 +11,8 @@ VUE_APP_TYPE = 'yunyingduan' # VUE_APP_SOCKET_BASE_URL=http://47.104.85.216:12345 # 和川大简云测试 -# VUE_APP_API_BASE_URL=http://60.209.125.238:35100 -# VUE_APP_SOCKET_BASE_URL=http://60.209.125.238:35100 +VUE_APP_API_BASE_URL=http://60.209.125.238:35100 +VUE_APP_SOCKET_BASE_URL=http://60.209.125.238:35100 # 客户端测试 # VUE_APP_API_BASE_URL=http://60.209.125.238:30813 @@ -31,5 +31,5 @@ VUE_APP_TYPE = 'yunyingduan' # VUE_APP_SOCKET_BASE_URL=http://118.190.144.189:6001 # 运营端正式 -VUE_APP_API_BASE_URL=http://118.190.144.189:6002 -VUE_APP_SOCKET_BASE_URL=http://118.190.144.189:6002 \ No newline at end of file +# VUE_APP_API_BASE_URL=http://118.190.144.189:6002 +# VUE_APP_SOCKET_BASE_URL=http://118.190.144.189:6002 \ No newline at end of file diff --git a/.env.development b/.env.development index 2afe06a..7caaa7b 100644 --- a/.env.development +++ b/.env.development @@ -1,8 +1,8 @@ NODE_ENV=development VUE_APP_PREVIEW=true # VUE_APP_TYPE = 'customer' -# VUE_APP_TYPE = 'hechuan' -VUE_APP_TYPE = 'yunyingduan' +VUE_APP_TYPE = 'hechuan' +# VUE_APP_TYPE = 'yunyingduan' # VUE_APP_TYPE = 'gangjie' # 打包部署的三个端 客户端customer 和川端hechuan 运营端yunyingduan @@ -11,8 +11,8 @@ VUE_APP_TYPE = 'yunyingduan' # VUE_APP_SOCKET_BASE_URL=http://47.104.85.216:12345 # 和川大简云测试 -# VUE_APP_API_BASE_URL=http://60.209.125.238:35100 -# VUE_APP_SOCKET_BASE_URL=http://60.209.125.238:35100 +VUE_APP_API_BASE_URL=http://60.209.125.238:35100 +VUE_APP_SOCKET_BASE_URL=http://60.209.125.238:35100 # 客户端测试 # VUE_APP_API_BASE_URL=http://60.209.125.238:30813 @@ -30,8 +30,8 @@ VUE_APP_TYPE = 'yunyingduan' # VUE_APP_SOCKET_BASE_URL=http://118.190.144.189:5001 # 运营端正式 -VUE_APP_API_BASE_URL=http://118.190.144.189:6002 -VUE_APP_SOCKET_BASE_URL=http://118.190.144.189:6002 +# VUE_APP_API_BASE_URL=http://118.190.144.189:6002 +# VUE_APP_SOCKET_BASE_URL=http://118.190.144.189:6002 # 客户端正式 # VUE_APP_API_BASE_URL=http://118.190.144.189:6001 diff --git a/src/api/modular/main/BookingLedger.js b/src/api/modular/main/BookingLedger.js index a253ca1..80e7fbf 100644 --- a/src/api/modular/main/BookingLedger.js +++ b/src/api/modular/main/BookingLedger.js @@ -1609,4 +1609,12 @@ export function PostApiSO(parameter) { method: 'post', params: parameter }) +} + +export function ImportBookingCurst(parameter) { + return axios({ + url: '/BookingCustomerOrder/ImportBooking', + method: 'post', + data: parameter + }) } \ No newline at end of file diff --git a/src/core/lazy_lib/components_use.js b/src/core/lazy_lib/components_use.js index 547a72b..b042414 100644 --- a/src/core/lazy_lib/components_use.js +++ b/src/core/lazy_lib/components_use.js @@ -52,7 +52,8 @@ import { Empty, PageHeader, Descriptions, - Result + Result, + Statistic } from 'ant-design-vue' // import VueCropper from 'vue-cropper' @@ -62,6 +63,7 @@ Vue.use(Input) Vue.use(InputNumber) Vue.use(Button) Vue.use(Switch) +Vue.use(Statistic) Vue.use(Radio) Vue.use(Checkbox) Vue.use(Select) diff --git a/src/views/main/BookingCustomerLedger/list/index.vue b/src/views/main/BookingCustomerLedger/list/index.vue index 571f88d..312cf1d 100644 --- a/src/views/main/BookingCustomerLedger/list/index.vue +++ b/src/views/main/BookingCustomerLedger/list/index.vue @@ -69,7 +69,22 @@