增加搜索广告界面

webht/payment
Jimmy Liow 2 years ago
parent 50c815c6a4
commit f75d6eb20b

@ -27,6 +27,16 @@ class Index extends CI_Controller
$this->load->view('bootstrap3/footer');
}
public function search()
{
$data = array();
$data['groupList'] = $this->Information_model->group_list();
$data['tipsList'] = $this->infoTips_model->get_list();
$this->load->view('bootstrap3/header', $data);
$this->load->view('welcome');
$this->load->view('bootstrap3/footer');
}
//节点绑定信息推荐或者广告
public function bind($is_id)
{

@ -5,6 +5,14 @@
</div>
<div class="col-md-9">
<h4>广告管理 <small><a href="<?php echo site_url('thirdparty/recommend/tips/add'); ?>">添加广告</a></small></h4>
<form method="post" action="<?php echo site_url('thirdparty/recommend/index/search'); ?>" class="navbar-form navbar-left">
<div class="input-group">
<input type="text" class="form-control input-sm" name="keywords" id="keywords" value="" style="min-width:450px;">
<span class="input-group-btn">
<button class="btn btn-default btn-sm" type="submit">搜索</button>
</span>
</div>
</form>
<table class="table table-striped">
<thead>

Loading…
Cancel
Save