更新报告寄送位置
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
import type { ExamClient, QuickActionType } from '../../data/mockData';
|
||||
import { EXAM_CLIENTS } from '../../data/mockData';
|
||||
import { Button, InfoCard, Input } from '../ui';
|
||||
import { InfoCard } from '../ui';
|
||||
import vipQr from '../../assets/image/vip-qr.png';
|
||||
interface QuickActionModalProps {
|
||||
action: QuickActionType;
|
||||
@@ -28,7 +28,6 @@ export const QuickActionModal = ({
|
||||
const titleMap: Record<Exclude<QuickActionType, 'none'>, string> = {
|
||||
meal: '用餐登记',
|
||||
vip: '太平 VIP 认证说明',
|
||||
delivery: '报告寄送登记',
|
||||
note: '备注窗',
|
||||
};
|
||||
|
||||
@@ -92,35 +91,6 @@ export const QuickActionModal = ({
|
||||
</div>
|
||||
)}
|
||||
|
||||
{action === 'delivery' && (
|
||||
<div className='space-y-3 text-xs text-gray-700'>
|
||||
<div className='grid grid-cols-2 gap-3'>
|
||||
<div>
|
||||
收件人姓名
|
||||
<Input placeholder='请输入收件人姓名' className='mt-1' />
|
||||
</div>
|
||||
<div>
|
||||
联系电话
|
||||
<Input placeholder='用于快递联系' className='mt-1' />
|
||||
</div>
|
||||
<div className='col-span-2'>
|
||||
寄送地址
|
||||
<Input placeholder='请输入详细寄送地址' className='mt-1' />
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
备注说明
|
||||
<textarea
|
||||
className='w-full mt-1 rounded-2xl border px-3 py-2 text-xs outline-none focus:ring-2 focus:ring-gray-200 min-h-[72px]'
|
||||
placeholder='如需多份报告、加急寄送等,请在此备注'
|
||||
/>
|
||||
</div>
|
||||
<div className='text-right'>
|
||||
<Button>保存寄送信息</Button>
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
|
||||
{action === 'note' && (
|
||||
<div className='space-y-3 text-xs text-gray-700'>
|
||||
<div>体检客户服务备注(仅内部可见)</div>
|
||||
|
||||
Reference in New Issue
Block a user