From 0ebc22340d4a1009d53ac1f47604891fecd0f47c Mon Sep 17 00:00:00 2001
From: cloudroam <cloudroam>
Date: 星期二, 24 九月 2024 10:18:21 +0800
Subject: [PATCH] add:会员等级筛选

---
 pages/order/list/index.vue |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/pages/order/list/index.vue b/pages/order/list/index.vue
index bc7e38b..3f72adf 100644
--- a/pages/order/list/index.vue
+++ b/pages/order/list/index.vue
@@ -78,6 +78,8 @@
           { label: '订单状态', prop: 'statusBackendStr', minWidth: 120 },
           { label: '下单时间', prop: 'createTime', minWidth: 180 },
           { label: '合伙人', prop: 'partnerName', minWidth: 120 },
+          { label: '库位', prop: 'warehouseLocationCode', minWidth: 120 },
+          { label: '特殊需求', prop: 'specialNeeds', minWidth: 120 },
           {
             label: '备注',
             formatter: (row) => (
@@ -154,6 +156,8 @@
                 type: 'input',
                 el: { placeholder: '收货人姓名/手机号' },
               },
+              { label: '收货地址:', id: 'address', type: 'input' },
+              { label: '库位:', id: 'warehouseLocationCode', type: 'input' },
             ],
           },
         ],
@@ -199,7 +203,7 @@
                         for (const tr of trs) {
                           const tds = tr.querySelectorAll('td')
                           if (tds && tds.length > 0) {
-                            tds[0].colSpan = 7
+                            tds[0].colSpan = 8
                             tds[0].style.textAlign = 'center'
                           }
                         }

--
Gitblit v1.9.3