新增通道列表查询页面

This commit is contained in:
2025-04-28 17:41:54 +08:00
parent b20ec85db9
commit b44888a6d7
16 changed files with 290 additions and 117 deletions

View File

@@ -18,6 +18,7 @@ import * as qrcode from 'qrcode'
import Link from 'next/link'
import RechargeModal from '@/components/composites/purchase/_client/recharge'
import {User} from '@/lib/models'
import { Label } from '@/components/ui/label'
export type ProfilePageProps = {}
@@ -454,7 +455,7 @@ function ChangePhoneDialog(props: {
<Form form={form} onSubmit={onSubmit} className="space-y-4 py-4">
{currentPhone && (
<div className="space-y-1">
<FormLabel></FormLabel>
<Label></Label>
<Input value={maskPhone(currentPhone)} disabled/>
</div>
)}