|
@@ -23,9 +23,21 @@ class Merchant extends Controller
|
|
|
*/
|
|
|
public function index(){
|
|
|
$this->title='商家审核管理';
|
|
|
+
|
|
|
+ // 列表选项卡状态
|
|
|
+// if (is_numeric($this->type = trim(input('type', '0'), 't'))) {
|
|
|
+// $where = [];
|
|
|
+// $this->type==0?$where[]=['audit','in',[1,3]]:$where[]=['audit','in',[2]];
|
|
|
+ $this->assign('audit',DataMerchants::getAudit());
|
|
|
+
|
|
|
+// $this->type = trim(input('type', '0'), 't');
|
|
|
+// print_r($this->type);
|
|
|
+// }
|
|
|
+// print_r($where);
|
|
|
DataMerchants::mQuery()
|
|
|
->like('name')
|
|
|
->dateBetween('create_at')
|
|
|
+ ->equal('audit')
|
|
|
->layTable();
|
|
|
}
|
|
|
/**
|