Authored by whb

修改品牌页

... ... @@ -40,7 +40,15 @@ class Controller_Brand extends Controller_Abstract
public function getbrandAction()
{
$brand = $this->_request->query('brand', '');
$list = Facade_Brand::getBrandByName($brand, 1);
if(empty($brand))
{
$list = Facade_Brand::getBrandByState(1, 0, 400);
}
else
{
$list = Facade_Brand::getBrandByName($brand, 1);
}
return $this->returnJson(true, 200, $list);
}
... ...
<?xml version="1.0" encoding="UTF-8"?>
<sqlMap namespace="brand">
<select id="getBrandByState">
SELECT * FROM tbl_brand where state = :state order by seq desc limit :offset, :limit
SELECT * FROM tbl_brand where state = :state ORDER BY seq DESC LIMIT :offset, :limit
</select>
<select id="getBrand">
SELECT * FROM tbl_brand
... ... @@ -55,7 +55,7 @@
DELETE FROM tbl_news_brand_rela WHERE news_id = :news_id
</select>
<select id="getBrandByName">
SELECT * FROM `tbl_brand` WHERE state = :state AND `name` LIKE :name ORDER BY create_time DESC
SELECT * FROM `tbl_brand` WHERE state = :state AND `name` LIKE :name ORDER BY seq DESC, create_time DESC
</select>
<select id="getSameNewsByNewsID">
SELECT news_id FROM tbl_news_brand_rela WHERE brand_id IN (SELECT brand_id FROM tbl_news_brand_rela WHERE news_id = :news_id) AND news_id &lt;&gt; :news_id
... ...