|
@@ -22,18 +22,21 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin
|
|
|
url: $.fn.bootstrapTable.defaults.extend.index_url,
|
|
|
pk: 'id',
|
|
|
sortName: 'weigh',
|
|
|
+ sortOrder:'asc',
|
|
|
columns: [
|
|
|
[
|
|
|
{checkbox: true},
|
|
|
{field: 'id', title: __('Id')},
|
|
|
{field: 'cate_id', title: __('Cate_id')},
|
|
|
+ {field: 'cate.name', title: __('Cate.name'), operate: 'LIKE'},
|
|
|
+
|
|
|
{field: 'childcate_id', title: __('Childcate_id')},
|
|
|
+ {field: 'childcate.name', title: __('Childcate.name'), operate: 'LIKE'},
|
|
|
+
|
|
|
{field: 'title', title: __('Title'), operate: 'LIKE'},
|
|
|
{field: 'image', title: __('Image'), operate: false, events: Table.api.events.image, formatter: Table.api.formatter.image},
|
|
|
{field: 'status', title: __('Status'), searchList: {"0":__('Status 0'),"1":__('Status 1')}, formatter: Table.api.formatter.status},
|
|
|
{field: 'weigh', title: __('Weigh'), operate: false},
|
|
|
- {field: 'cate.name', title: __('Cate.name'), operate: 'LIKE'},
|
|
|
- {field: 'childcate.name', title: __('Childcate.name'), operate: 'LIKE'},
|
|
|
{field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}
|
|
|
]
|
|
|
]
|
|
@@ -56,3 +59,11 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin
|
|
|
};
|
|
|
return Controller;
|
|
|
});
|
|
|
+$("#c-childcate_id").data("params", function (obj) {
|
|
|
+ return {
|
|
|
+ custom: {cate_id: $("#c-cate_id").val()}
|
|
|
+ };
|
|
|
+});
|
|
|
+$(document).on("change","#c-cate_id",function(){
|
|
|
+ $("#c-childcate_id").selectPageClear();
|
|
|
+})
|