This commit is contained in:
weicw
2023-11-21 20:52:27 +08:00
parent fa23f190a5
commit 12004b1107
16 changed files with 144 additions and 44 deletions

View File

@@ -44,6 +44,9 @@
<template v-if="column.key === 'user'">
<User v-if="record.user" :record="record.user" />
</template>
<template v-if="column.key === 'touziUser'">
<User v-if="record.touziUser" :record="record.touziUser" />
</template>
<template v-if="column.key === 'qrcode'">
<a-image :src="record.qrcode" :width="50" />
</template>
@@ -180,6 +183,11 @@
dataIndex: 'user',
key: 'user'
},
{
title: '投资人',
dataIndex: 'touziUser',
key: 'touziUser'
},
{
title: '设备名称',
dataIndex: 'equipmentName',

View File

@@ -504,6 +504,11 @@
return '第' + (index + 1) + '期';
}
},
{
title: '订单号',
dataIndex: 'orderNo',
key: 'orderNo'
},
{
title: '订单金额',
dataIndex: 'orderPrice',