From 1391b4269a36f1baf90cf244671a6ab94dbb25b6 Mon Sep 17 00:00:00 2001 From: lijuncheng Date: Wed, 12 Mar 2025 16:39:07 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E7=9B=98=E7=82=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.development | 2 +- src/api/request2.js | 9 +- src/common/directory.js | 1 - src/common/style/new_style.css | 2 +- src/mycomponents/recommend/recommendCount.vue | 32 +- .../scan/winScanPackAndLocation.vue | 2 +- src/pages.json | 15 +- src/pages/count/coms/comCountDetailcards.vue | 162 ++-- src/pages/count/coms/comCountJobCard.vue | 18 +- src/pages/count/coms/comCountRecordCard.vue | 168 ++++ src/pages/count/coms/comwinHint.vue | 103 +++ src/pages/count/job/countJob.vue | 130 +-- src/pages/count/job/countLightDetail.vue | 794 +++++++++-------- .../count/job/countLightDetail_liebiao.vue | 802 ++++++++++++++++++ src/pages/count/job/countRecord.vue | 164 ++++ 15 files changed, 1786 insertions(+), 618 deletions(-) create mode 100644 src/pages/count/coms/comCountRecordCard.vue create mode 100644 src/pages/count/coms/comwinHint.vue create mode 100644 src/pages/count/job/countLightDetail_liebiao.vue create mode 100644 src/pages/count/job/countRecord.vue diff --git a/.env.development b/.env.development index 0032b291..4ba94ebc 100644 --- a/.env.development +++ b/.env.development @@ -1,4 +1,4 @@ -VITE_BASE_URL=http://192.168.0.228:12080/admin-api +VITE_BASE_URL=http://192.168.0.52:12080/admin-api #VITE_BASE_URL=http://localhost:12080/admin-api #VITE_BASE_URL=http://dev.ccwin-in.com:28051/api/admin-api # VITE_BASE_URL_IMAGE=http://172.22.32.9:81/admin-api diff --git a/src/api/request2.js b/src/api/request2.js index a6a9c1c6..596c15a5 100644 --- a/src/api/request2.js +++ b/src/api/request2.js @@ -1814,8 +1814,8 @@ export function inventoryMoveRecordSubmit(params) { */ export function getCountJobList(params) { return request({ - url: baseApi + "/wms/count-job-main/senior", - method: "post", + url: baseApi + "/wms/count-job-main/padJobPageList", + method: "get", data: params, }); } @@ -1835,7 +1835,7 @@ export function getFuzzyCountJobList(params) { */ export function getCountJobDetail(id) { return request({ - url: baseApi + "/wms/count-job-main/getCountJobById?id=" + id, + url: baseApi + "/wms/count-job-main/pdaGetCountJobDetailById?masterId=" + id, method: "get", data: {}, }); @@ -1885,9 +1885,10 @@ export function cancleTakeCountJob(id) { * @param {*} 任务id * */ + export function countJobSubmit(params) { return request({ - url: baseApi + "/wms/count-job-main/execute", + url: baseApi + "/wms/count-job-main/executePdaForIntex", method: "put", data: params, }); diff --git a/src/common/directory.js b/src/common/directory.js index 502af6e7..75038a54 100644 --- a/src/common/directory.js +++ b/src/common/directory.js @@ -77,7 +77,6 @@ export function getDirectoryInfo(type) { var result = []; var list = uni.getStorageSync("dictionary") - console.log(455,uni.getStorageSync("dictionary")) if (list != undefined && list.length > 0) { for (let item of list) { if (item.type == type) { diff --git a/src/common/style/new_style.css b/src/common/style/new_style.css index 5d12769a..51a2a804 100644 --- a/src/common/style/new_style.css +++ b/src/common/style/new_style.css @@ -262,7 +262,7 @@ uni-page-head .uni-page-head__title { right: 0; top: 50%; transform: translateY(-50%); - width: 1px; + width: 4rpx; height: 20px; background-color: #ddd; } diff --git a/src/mycomponents/recommend/recommendCount.vue b/src/mycomponents/recommend/recommendCount.vue index 4d2bc57b..cf3a3e53 100644 --- a/src/mycomponents/recommend/recommendCount.vue +++ b/src/mycomponents/recommend/recommendCount.vue @@ -1,26 +1,21 @@