diff --git a/src/views/order/orderList.vue b/src/views/order/orderList.vue index 57a905c..feeaa67 100644 --- a/src/views/order/orderList.vue +++ b/src/views/order/orderList.vue @@ -315,12 +315,18 @@ multiHd: [{ prop: "name", label: "姓名", - width: 110 + width: 110, + customFn: (row) => { + return (row.row.member?.name) + } }, { prop: "wechat_nickname", label: "微信昵称", - width: 110 + width: 110, + customFn: (row) => { + return (row.row.member?.wechat_nickname) + } }, { label: "头像", @@ -333,7 +339,7 @@ justifyContent: 'center' } } > ) } }, @@ -341,17 +347,26 @@ { prop: "phone", label: "联系电话", - width: 120 + width: 120, + customFn: (row) => { + return (row.row.member?.phone) + } }, { prop: "area", label: "区域", - width: 110 + width: 110, + customFn: (row) => { + return (row.row.member?.area) + } }, { prop: "due_date", label: "预产期", - width: 120 + width: 120, + customFn: (row) => { + return (row.row.member?.due_date) + } } ], },