feat: 支付凭证
All checks were successful
构建并部署前端到测试环境 / build-and-deploy (push) Successful in 4m22s

This commit is contained in:
sexygoat
2026-04-23 18:35:29 +08:00
parent cd2ca96873
commit aaa648a86d
6 changed files with 143 additions and 0 deletions

View File

@@ -63,6 +63,7 @@ export interface Order {
purchase_remark?: string // 购买备注
operator_name?: string // 操作者
items: OrderItem[] | null
payment_voucher_key?: string // 支付凭证(线下支付时才有值)
created_at: string
updated_at: string
}

View File

@@ -139,6 +139,7 @@ declare module 'vue' {
MenuStyleSettings: typeof import('./../components/core/layouts/art-settings-panel/widget/MenuStyleSettings.vue')['default']
OperatorSelect: typeof import('./../components/business/OperatorSelect.vue')['default']
PackageSelector: typeof import('./../components/business/PackageSelector.vue')['default']
PaymentVoucherDialog: typeof import('./../components/business/PaymentVoucherDialog.vue')['default']
RealnamePolicyDialog: typeof import('./../components/device/RealnamePolicyDialog.vue')['default']
RouterLink: typeof import('vue-router')['RouterLink']
RouterView: typeof import('vue-router')['RouterView']