|
@@ -328,6 +328,7 @@ class Party extends Common
|
|
|
|
|
|
|
|
|
|
* 获取派对列表排序
|
|
* 获取派对列表排序
|
|
|
|
+ * getPartyRankList改的
|
|
*/
|
|
*/
|
|
public function getPartyList() {
|
|
public function getPartyList() {
|
|
$thispage = input('page',1,"intval");
|
|
$thispage = input('page',1,"intval");
|
|
@@ -2135,10 +2136,10 @@ class Party extends Common
|
|
|
|
|
|
|
|
|
|
public function report_party() {
|
|
public function report_party() {
|
|
- $type = $this->request->param('type');
|
|
+ $type = input('type');
|
|
- $content = $this->request->param('content');
|
|
+ $content = input('content');
|
|
- $images = $this->request->param('images');
|
|
+ $images = input('images');
|
|
- $party_id = $this->request->param('party_id');
|
|
+ $party_id = input('party_id');
|
|
if (!$type || !$content || !$images || !$party_id) {
|
|
if (!$type || !$content || !$images || !$party_id) {
|
|
$this->error("请完成举报内容!");
|
|
$this->error("请完成举报内容!");
|
|
}
|
|
}
|