f
Some checks failed
CI / Test (ubuntu-latest) (push) Has been cancelled
CI / Test (windows-latest) (push) Has been cancelled
CI / Lint (ubuntu-latest) (push) Has been cancelled
CI / Lint (windows-latest) (push) Has been cancelled
CI / Check (ubuntu-latest) (push) Has been cancelled
CI / Check (windows-latest) (push) Has been cancelled
CodeQL / Analyze (javascript-typescript) (push) Has been cancelled
Deploy Website on push / Deploy Push Playground Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Docs Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Antd Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Element Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Naive Ftp (push) Has been cancelled
Release Drafter / update_release_draft (push) Has been cancelled
CI / CI OK (push) Has been cancelled
Deploy Website on push / Rerun on failure (push) Has been cancelled
Lock Threads / action (push) Has been cancelled
Issue Close Require / close-issues (push) Has been cancelled
Close stale issues / stale (push) Has been cancelled

This commit is contained in:
Mrx
2026-02-11 16:31:35 +08:00
parent c8527d582f
commit 9fe7aa5dcd
2 changed files with 6 additions and 0 deletions

View File

@@ -16,6 +16,7 @@ export namespace OrderApi {
create_time: string; create_time: string;
pay_time: null | string; pay_time: null | string;
refund_time: null | string; refund_time: null | string;
update_time: string;
} }
export interface OrderList { export interface OrderList {

View File

@@ -97,6 +97,11 @@ export function useColumns<T = OrderApi.Order>(
title: '创建时间', title: '创建时间',
width: 180, width: 180,
}, },
{
field: 'update_time',
title: '更新时间',
width: 180,
},
{ {
field: 'pay_time', field: 'pay_time',
title: '支付时间', title: '支付时间',