From 8d6f27e377ced0cd3b6f9a9e81a82266e2a282df Mon Sep 17 00:00:00 2001 From: wyuu Date: Thu, 29 Jan 2026 17:49:16 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9D=A1=E7=A0=81=E7=AD=BE=E6=94=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 3 + src/api/liswork/work/LisWork.ts | 32 ++++ src/views/checkCode/index.vue | 36 +++-- src/views/liswork/micro/index.vue | 10 +- src/views/liswork/receive/index.vue | 188 ++++++++++++++++++++++++ src/views/liswork/visaRefusal/index.vue | 165 +++++++++++++++++++++ src/views/liswork/work/index.vue | 15 +- vite.config.js | 77 ++++++++-- 8 files changed, 483 insertions(+), 43 deletions(-) create mode 100644 src/views/liswork/receive/index.vue create mode 100644 src/views/liswork/visaRefusal/index.vue diff --git a/package.json b/package.json index b63bc39..d513735 100644 --- a/package.json +++ b/package.json @@ -62,12 +62,15 @@ "eslint-plugin-auto-import": "^0.1.1", "eslint-plugin-vue": "^10.1.0", "globals": "^16.1.0", + "rollup-plugin-visualizer": "^6.0.5", "sass": "1.69.5", + "terser": "^5.46.0", "typescript": "^5.9.3", "unplugin-auto-import": "0.17.1", "unplugin-vue-setup-extend-plus": "1.0.0", "vite": "5.0.4", "vite-plugin-compression": "0.5.1", + "vite-plugin-imagemin": "^0.6.1", "vite-plugin-svg-icons": "2.0.1" } } diff --git a/src/api/liswork/work/LisWork.ts b/src/api/liswork/work/LisWork.ts index cad508c..b38b811 100644 --- a/src/api/liswork/work/LisWork.ts +++ b/src/api/liswork/work/LisWork.ts @@ -439,5 +439,37 @@ export function clearPrintflag(query?: Object) { params: query }) } +// 自动签收条码 +export function autosavebarcode(query?: Object) { + return request({ + url: '/liswork/autosavebarcode', + method: 'get', + params: query + }) +} +// 条码签收 +export function querybarcode(query?: Object) { + return request({ + url: '/liswork/querybarcode', + method: 'get', + params: query + }) +} +// 拒收条码 +export function refusedbarcode(query?: Object) { + return request({ + url: '/refused/getData', + method: 'get', + params: query + }) +} +// 保存拒收条码 +export function refusedSaveData(query?: Object) { + return request({ + url: '/refused/saveData', + method: 'post', + data: query + }) +} diff --git a/src/views/checkCode/index.vue b/src/views/checkCode/index.vue index 5569e1e..f9bbf53 100644 --- a/src/views/checkCode/index.vue +++ b/src/views/checkCode/index.vue @@ -62,9 +62,9 @@ 取消登记 - + 报告查询 @@ -137,18 +137,16 @@ -
- - - - - - 读取 - - - -
+ + + + + + 读取 + + +