update
This commit is contained in:
parent
9475b5c7c9
commit
8fc7710f63
@ -49,7 +49,7 @@ class CustomContactsLogic extends BaseLogic
|
||||
'telephone' => $params['telephone'] ?? '',
|
||||
'email' => $params['email'] ?? '',
|
||||
'notes' => $params['notes'] ?? '',
|
||||
'annex' => $params['annex'] ?json_encode($params['annex']):'',
|
||||
'annex' => $params['annex'] ? json_encode($params['annex']) : null,
|
||||
]);
|
||||
Db::commit();
|
||||
return true;
|
||||
|
@ -107,11 +107,11 @@ class CustomContactsValidate extends BaseValidate
|
||||
|
||||
public function checkAnnex($value): bool|string
|
||||
{
|
||||
if(!empty($value) && !is_array($value)){
|
||||
// $annex = json_decode($value,true);
|
||||
// if(empty($annex) || !is_array($annex)){
|
||||
return '附件数据格式错误';
|
||||
// }
|
||||
if(!empty($value) && $value != ''){
|
||||
$annex = $value;//json_decode($value,true);
|
||||
if(empty($annex) || !is_array($annex)){
|
||||
return '附件格式错误';
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user