From dad4da593305e5d38a61f8d6b767ea4c198bfb45 Mon Sep 17 00:00:00 2001
From: mayf <m13160102112@163.com>
Date: 星期三, 11 九月 2024 10:01:06 +0800
Subject: [PATCH] 增加联系方式查询条件
---
pages/order/list/index.vue | 14 ++++++++------
1 files changed, 8 insertions(+), 6 deletions(-)
diff --git a/pages/order/list/index.vue b/pages/order/list/index.vue
index 00af407..b82b88e 100644
--- a/pages/order/list/index.vue
+++ b/pages/order/list/index.vue
@@ -27,7 +27,6 @@
import { dateRangeOptions } from '@/utils/options'
import CustomDateRange from '@/components/custom-date-range.vue'
import PrintList from '@/components/order/print-list'
-import GoodsTableItemList from '@/components/order/goods-table-item-list.vue'
export default {
components: {
PrintList,
@@ -74,16 +73,18 @@
}${row.customerAddress || ''}`,
minWidth: 250,
},
- {
- label: '商品信息',
- formatter: (row) => <GoodsTableItemList items={row.items} />,
- minWidth: 250,
- },
{ label: '订单金额(元)', prop: 'totalAmount', minWidth: 150 },
{ label: '底价(元)', prop: 'supplierAmount', minWidth: 150 },
{ label: '订单状态', prop: 'statusBackendStr', minWidth: 120 },
{ label: '下单时间', prop: 'createTime', minWidth: 180 },
{ label: '合伙人', prop: 'partnerName', minWidth: 120 },
+ {
+ label: '备注',
+ formatter: (row) => (
+ <simple-text value={row.remarks} type="primary"></simple-text>
+ ),
+ minWidth: 200,
+ },
],
searchFormAttrs: {
labelWidth: 'auto',
@@ -153,6 +154,7 @@
type: 'input',
el: { placeholder: '收货人姓名/手机号' },
},
+ { label: '收货地址:', id: 'address', type: 'input' },
],
},
],
--
Gitblit v1.9.3