1、租赁订单详情
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run

This commit is contained in:
2025-07-05 17:42:37 +08:00
parent cfdb404ddc
commit 50bc728ffb
5 changed files with 193 additions and 51 deletions

View File

@@ -99,12 +99,6 @@ export const columns: VxeGridProps['columns'] = [
},
width: 100
},
{
title: '租赁商品',
field: 'planId',
// slots: {default: 'planId'},
width: 100
},
{
title: '支付状态',
field: 'paymentStatus',
@@ -135,11 +129,6 @@ export const columns: VxeGridProps['columns'] = [
},
width: 100
},
{
title: '签署时间',
field: 'signTime',
width: 100
},
{
field: 'action',
fixed: 'right',
@@ -175,3 +164,30 @@ export const planInfoColumns: VxeGridProps['columns'] = [
align: 'center'
},
]
export const rentalColumns: VxeGridProps['columns'] = [
{
title: '序号',
field: 'id',
width: 100,
align: 'center'
},
{
title: '产品名称',
field: 'plantName',
minWidth: 100,
align: 'center'
},
{
title: '产品租金(元)',
field: 'rent',
width: 180,
align: 'center'
},
{
title: '租赁数量',
field: 'planProNumber',
width: 180,
align: 'center'
},
]