From 1e9b7415acf64c37a39d1822f40e417a2e176e93 Mon Sep 17 00:00:00 2001
From: "HUOJIN\\92525" <925259474@qq.com>
Date: Mon, 9 Feb 2026 22:25:17 +0800
Subject: [PATCH] no message
---
src/views/shipping/Pick.data.ts | 13 +++++++++++++
src/views/shipping/components/PickForm.vue | 22 ++++++++++++++++++----
2 files changed, 31 insertions(+), 4 deletions(-)
diff --git a/src/views/shipping/Pick.data.ts b/src/views/shipping/Pick.data.ts
index 1d58524..d94730c 100644
--- a/src/views/shipping/Pick.data.ts
+++ b/src/views/shipping/Pick.data.ts
@@ -86,6 +86,19 @@ export const columns: BasicColumn[] = [
align: 'center',
dataIndex: 'customerCode',
},
+ {
+ title: '优先级',
+ align: 'center',
+ dataIndex: 'priority',
+ customRender: ({ text }) => {
+ const priorityMap = {
+ 0: '普通',
+ 1: '加急',
+ 2: '紧急',
+ };
+ return priorityMap[text];
+ },
+ },
{
title: '订单日期',
align: 'center',
diff --git a/src/views/shipping/components/PickForm.vue b/src/views/shipping/components/PickForm.vue
index 646cda8..ede153d 100644
--- a/src/views/shipping/components/PickForm.vue
+++ b/src/views/shipping/components/PickForm.vue
@@ -56,7 +56,11 @@
-
+
+
+
+
+
@@ -115,11 +119,11 @@