修改了预约记录的列表展示

This commit is contained in:
chendaze 2024-03-18 08:33:48 +08:00
parent 3e6f330fa6
commit 5f85b0c380

View File

@ -91,37 +91,40 @@
dataIndex: 'roomContentName' dataIndex: 'roomContentName'
}, },
{ {
title: '用户id', title: '会议类型',
dataIndex: 'roomType'
},
{
title: '预约人',
dataIndex: 'userId' dataIndex: 'userId'
}, },
{ {
title: '优惠卷id', title: '所属公司',
dataIndex: 'ticketId'
},
{
title: '企业id',
dataIndex: 'customerId' dataIndex: 'customerId'
}, },
{
title: '会议开始时间',
dataIndex: 'startTime'
},
{
title: '会议结束时间',
dataIndex: 'endDate'
},
{
title: '时长',
dataIndex: 'duration'
},
{
title: '金额',
dataIndex: 'orderMoney'
},
{ {
title: '预约状态', title: '预约状态',
dataIndex: 'stauts' dataIndex: 'stauts'
}, },
{
title: '订单号',
dataIndex: 'oderNumber'
},
{
title: '订单价格',
dataIndex: 'orderMoney'
},
{
title: '参观目的',
dataIndex: 'visitType'
},
{ {
title: '操作', title: '操作',
width: '200px', width: '100px',
dataIndex: 'action', dataIndex: 'action',
scopedSlots: { customRender: 'action' } scopedSlots: { customRender: 'action' }
} }