Files
sam-sales/salesmanagement/phone_grep.txt

18 lines
1.9 KiB
Plaintext

236: phone: '',
262: setFormData({ member_id: '', password: '', name: '', phone: '', email: '', role: 'manager', parent_id: '', remarks: '' });
306: phone: member.phone || '',
542: <td className="px-6 py-4 text-slate-600">{m.phone || '-'}</td>
697: value={formData.phone}
698: onChange={(e) => setFormData({...formData, phone: formatPhone(e.target.value)})}
775: <td className="px-6 py-4 text-slate-600">{m.phone || '-'}</td>
1519: phone: '',
1546: setFormData({ member_id: '', password: '', name: '', phone: '', email: '', remarks: '' });
1590: phone: member.phone || '',
1693: <td className="px-6 py-4 text-slate-600">{m.phone || '-'}</td>
1795: value={formData.phone}
1796: onChange={(e) => setFormData({...formData, phone: formatPhone(e.target.value)})}
1878: tenant_name: '', representative: '', business_no: '', contact_phone: '', email: '', address: ''
1942: setTenantFormData({ tenant_name: '', representative: '', business_no: '', contact_phone: '', email: '', address: '' });
2057: <td className="px-6 py-4 text-slate-600">{t.contact_phone || '-'}</td>
2157: <input type="tel" value={tenantFormData.contact_phone} onChange={e => setTenantFormData({...tenantFormData, contact_phone: formatPhone(e.target.value)})} className="w-full px-3 py-2 border border-slate-200 rounded-lg outline-none focus:ring-2 focus:ring-blue-500" placeholder="010-0000-0000" />