|
...
|
...
|
@@ -106,8 +106,9 @@ class KeywordLogic extends BaseLogic |
|
|
|
* @time :2023/8/28 14:03
|
|
|
|
*/
|
|
|
|
public function batchAdd(){
|
|
|
|
if(!empty($this->param['title']) && is_array($this->param['title'])){
|
|
|
|
foreach ($this->param['title'] as $v){
|
|
|
|
if(!empty($this->param['title'])){
|
|
|
|
$title = $this->param['title'];
|
|
|
|
foreach ($title as $v){
|
|
|
|
$param['project_id'] = $this->user['project_id'];
|
|
|
|
$param['created_at'] = date('Y-m-d H:i:s');
|
|
|
|
$param['updated_at'] = $param['created_at'];
|
...
|
...
|
|