文章和产品列表如何调整排序
- 原创
- 2016-12-23 13:13:33
- 薛才杰
- 2046
蝉知 系统的文章和产品列表页面默认是以降序排序显示的。有时我们可能像让他升序排列,该如何调整呢?蝉知后台没有直接的可视化按钮让用户去调整这个排序,需要我们手动修改源文件代码,其实非常简单,改一个值即可,我们来看下操作:
注:
一、产品列表排序调整
asc 按升序排列
desc 按降序排列
找到源文件:\system\module\product\control.php文件,大概第58行:
$products = $this->product->getList($this->tree->getFamily($categoryID, 'product'), '`order` desc', $pager);将后面的desc改为asc:
$products = $this->product->getList($this->tree->getFamily($categoryID, 'product'), '`order` asc', $pager);保持即可,然后去天台看下效果,OK完成,就这么简单!
二、文章内容列表排序调整:
和产品模块一样的道理:
找到目录:\system\module\article\control.php文件,大概第49行:
$articles = $this->article->getList('article', $families, 'addedDate_desc', $pager);
将后面的addedDate_desc改为addedDate_asc
$articles = $this->article->getList('article', $families, 'addedDate_asc', $pager);保持OK,前台看下效果。
注意,这里只是简单的调整了下前台显示顺序,后台相应模块列表排序不受影响。