细节优化

This commit is contained in:
devil
2020-10-06 22:24:35 +08:00
parent ea445d3873
commit f7cc2803ea
33 changed files with 370 additions and 173 deletions

View File

@ -119,7 +119,7 @@ class Goodscomments extends Common
public function SaveInfo()
{
// 参数
$params = input();
$params = $this->data_request;
// 数据
$data = [];
@ -166,7 +166,7 @@ class Goodscomments extends Common
}
// 开始处理
$params = input();
$params = $this->data_request;
return GoodsCommentsService::GoodsCommentsSave($params);
}
@ -186,7 +186,7 @@ class Goodscomments extends Common
}
// 开始处理
$params = input();
$params = $this->data_request;
return GoodsCommentsService::GoodsCommentsDelete($params);
}
@ -206,7 +206,7 @@ class Goodscomments extends Common
}
// 开始处理
$params = input();
$params = $this->data_request;
return GoodsCommentsService::GoodsCommentsReply($params);
}
@ -226,7 +226,7 @@ class Goodscomments extends Common
}
// 开始处理
$params = input();
$params = $this->data_request;
return GoodsCommentsService::GoodsCommentsStatusUpdate($params);
}
}