This commit is contained in:
weiz 2024-02-03 13:41:52 +08:00
parent 31b5a8a636
commit 1397544f1c
2 changed files with 2 additions and 1 deletions

View File

@ -52,6 +52,7 @@ class BidDocumentExaminationController extends BaseAdminController
public function add()
{
$params = (new BidDocumentExaminationValidate())->post()->goCheck('add');
halt($params);
$result = BidDocumentExaminationLogic::add($params,$this->adminId);
if (true === $result) {
return $this->success('添加成功', [], 1, 1);

View File

@ -887,7 +887,7 @@ EOHTML
$style .= sprintf(' title="%s"', empty($attr['dynamic']) ? 'Public property' : 'Runtime added dynamic property');
} elseif ('str' === $style && 1 < $attr['length']) {
$style .= sprintf(' title="%d%s characters"', $attr['length'], $attr['binary'] ? ' binary or non-UTF-8' : '');
} elseif ('note' === $style && 0 < ($attr['depth'] ?: 0) && false !== $c = strrpos($value, '\\')) {
} elseif ('note' === $style && 0 < ($attr['depth'] ?? 0) && false !== $c = strrpos($value, '\\')) {
$style .= ' title=""';
$attr += [
'ellipsis' => \strlen($value) - $c,