From 5cdacfa446c57ea229edd5056a19503cd63d51ea Mon Sep 17 00:00:00 2001
From: caill <815519168@qq.com>
Date: Thu, 29 May 2025 13:22:06 +0800
Subject: [PATCH] =?UTF-8?q?add=E6=89=93=E5=8D=B0=E5=8A=9F=E8=83=BD?=
=?UTF-8?q?=EF=BC=8C=E4=BF=AE=E6=94=B9=E8=A1=A8=E5=8D=95=E5=87=BA=E5=BA=93?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
pages/login/setup.vue | 14 ++++++-
pages/outbound/bill-out-store.vue | 20 +++++++--
pages/pick/pick-task.vue | 69 +++++++++++++++++++++++++++++++
utils/CLodopfuncs.js | 19 ++++++---
utils/mork2.js | 22 ++++++++++
vuex/modules/user.js | 5 +++
6 files changed, 140 insertions(+), 9 deletions(-)
diff --git a/pages/login/setup.vue b/pages/login/setup.vue
index b2e46f5..97562c1 100644
--- a/pages/login/setup.vue
+++ b/pages/login/setup.vue
@@ -7,6 +7,10 @@
服务器地址
+
+ 打印地址
+
+
-
+
仓库
@@ -32,6 +32,15 @@
+
+
+ 加急单据
+
+
+
+
+
+
@@ -100,7 +109,8 @@
index1: '',
options2: [{value: 'A1', text: 'A1车间'}, {value: 'A2', text: 'A2车间'}, {value: 'A3', text: 'A3车间'}],
allCheck: false,
- formTypeName: ''
+ formTypeName: '',
+ isChecked: false
};
},
onLoad (options) {
@@ -120,6 +130,9 @@
}
},
methods: {
+ setWStatus () {
+ this.isChecked = !this.isChecked
+ },
// 出库单类型
async _outStorageOrder () {
let res = await outStorageOrder()
@@ -188,7 +201,8 @@
return
}
let arr = this.dataList.filter(el => el.checked === true)
- let obj = Object.assign(this.currentData, {children: arr, stor_code: this.index1})
+ let urgent = this.isChecked ? '1' : '0'
+ let obj = Object.assign(this.currentData, {children: arr, stor_code: this.index1, urgent: urgent})
try {
let res = await outStorageConfirm(obj)
if (res.code === '200') {
diff --git a/pages/pick/pick-task.vue b/pages/pick/pick-task.vue
index fb8a0c2..95cfdd9 100644
--- a/pages/pick/pick-task.vue
+++ b/pages/pick/pick-task.vue
@@ -113,6 +113,7 @@