找到对应的js
1 |
public/assets/js/backend/user/user.js |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
table.bootstrapTable({ url: $.fn.bootstrapTable.defaults.extend.index_url, pk: 'id', sortName: 'weigh,id', sortOrder:'asc,desc', escape: true, search: true, pagination: true, pageList: [10, 20, 50, 'All'], commonSearch: true, columns: [ [ { checkbox: true }, { field: 'id', title: __('Id') }, |
利用sortName可以进行默认排序,如果设定了这个那么sortOrder则不生效
另外再罗列一些其他功能
0 条评论