From d520288bcad9bc58850a72f9e213169fdc200470 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A3=B7=E5=8F=B6?= <14103883+leaf-phos@user.noreply.gitee.com> Date: Tue, 31 Dec 2024 16:59:57 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E4=BD=93=E9=AA=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 1 + src/api/system/user.js | 4 +- src/components/Business/Price/PriceCheck.vue | 45 +- src/components/Business/Price/PriceInput.vue | 1 + .../Business/ProdOrder/ProdOrderCheck.vue | 38 +- .../Business/ProdOrder/ProdOrderInput.vue | 1 + src/components/Business/User/UserCheck.vue | 2 + src/components/Business/User/UserDrawer.vue | 7 +- src/components/Business/User/UserInput.vue | 1 + src/components/Business/mixins.js | 4 +- src/layout/components/Navbar.vue | 2 +- src/router/index.js | 18 +- src/utils/money.js | 13 +- src/views/yh-ipad/report/index.vue | 52 +- .../yh/price/components/VerifyPriceDialog.vue | 3 +- src/views/yh/price/index.vue | 3 + .../edit/components/ReportProductEdit.vue | 512 ++++++++++++------ .../components/ReportProductOrderListEdit.vue | 25 +- .../edit/components/ReportProductRowEdit.vue | 153 +++--- .../components/ReportProductUserListEdit.vue | 18 +- .../components/UserProductBatchDialog.vue | 142 ++--- src/views/yh/report/edit/edit.vue | 129 +++-- src/views/yh/report/index.vue | 4 +- src/views/yh/report/mixins.js | 4 +- src/views/yh/report/utils.js | 6 + 25 files changed, 749 insertions(+), 439 deletions(-) create mode 100644 src/views/yh/report/utils.js diff --git a/.gitignore b/.gitignore index 78a752d..82c3521 100644 --- a/.gitignore +++ b/.gitignore @@ -21,3 +21,4 @@ selenium-debug.log package-lock.json yarn.lock +dist.zip diff --git a/src/api/system/user.js b/src/api/system/user.js index 2ea737e..a7bd419 100644 --- a/src/api/system/user.js +++ b/src/api/system/user.js @@ -10,11 +10,11 @@ export function listUser(query) { }) } // 查询包含调班的用户列表 -export function listUserWithShift(query) { +export function listUserWithShift(params) { return request({ url: '/system/user/shiftList', method: 'get', - params: query + params }) } diff --git a/src/components/Business/Price/PriceCheck.vue b/src/components/Business/Price/PriceCheck.vue index 067a1c9..974947b 100644 --- a/src/components/Business/Price/PriceCheck.vue +++ b/src/components/Business/Price/PriceCheck.vue @@ -1,10 +1,10 @@