$this->auth->company_id, 'position' => 0, //首页 ]; $index = Db::name('banner')->where($where)->order('weigh desc,id desc')->select(); $index = list_domain_image($index,['image']); $where = [ 'company_id' => $this->auth->company_id, 'position' => 1, //门店印象 ]; $store = Db::name('banner')->where($where)->order('weigh desc,id desc')->autopage()->select(); $store = list_domain_image($store,['image']); $rs = [ 'index' => $index, 'store' => $store, ]; $this->success(1,$rs); } }