Commit d8d9ed95 authored by clone's avatar clone

bug

parent baaf46cf
<?php <?php
namespace app\app\controller; namespace app\app\controller;
use app\model\HouseImgs;
use app\model\HouseInfos;
use think\Response; use think\Response;
class Index class Index
{ {
protected $db;
protected $dbImg;
public function __construct()
{
$this->db = new HouseInfos();
$this->dbImg = new HouseImgs();
}
public function index() public function index()
{ {
return view('index/index'); return view('index/index');
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment