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 @@