php dedecmsv57 独立模型添加自定义排序
/include/arc.sglistview.php1366行 添加自定义排序根据商品价钱
else if('price'==$orderby)
{
$ordersql = " ORDER BY arc.price asc";
}
1384行 添加SQL方法
//如果不用默认的sortrank或id排序,使用联合查询(数据量大时非常缓慢)
if(preg_match('/hot|click|price/', $orderby) || $this->sAddTable)
独立模型使用 arc.sglistview.class.php 里面的方法,进行排序,用户可以根据自己的需求来进行修改。