下单时间:{{ orderTime }}
@if (orderCreationMethod === 'miniprogram') {
点击同步后将自动填充客户姓名、手机号、微信等信息
}
@if (selectedCustomer) {
已选客户:{{ selectedCustomer.name }}({{ selectedCustomer.phone }})
}
@if (customerSearchResults.length > 0) {
@for (c of customerSearchResults; track c.id) {
{{ c.name }} {{ c.phone }} @if (c.wechat) { wx: {{ c.wechat }} }
}
}
@if (customerForm.get('name')?.touched && customerForm.get('name')?.invalid) {
请填写客户姓名
}
@if (customerForm.get('phone')?.touched && customerForm.get('phone')?.errors?.['required']) {
请填写手机号
} @if (customerForm.get('phone')?.touched && customerForm.get('phone')?.errors?.['pattern']) {
手机号格式不正确
}