...
|
...
|
@@ -87,17 +87,18 @@ function bind_table_pagination() { |
|
|
$('.btn_up_query').click(function() {
|
|
|
obj.where = {place: 0};
|
|
|
fetchRender();
|
|
|
obj = {where: {}, order: []};
|
|
|
});
|
|
|
$('.btn_down_query').click(function() {
|
|
|
obj.where = {place: 1};
|
|
|
fetchRender();
|
|
|
obj = {where: {}, order: []};
|
|
|
});
|
|
|
$('.btn_name_query').click(function() {
|
|
|
obj.where = {shop_name: $('.shop_name').val()};
|
|
|
fetchRender();
|
|
|
});
|
|
|
$('.btn_all').click(function() {
|
|
|
obj = {where: {}, order: []};
|
|
|
fetchRender();
|
|
|
});
|
|
|
fetchRender();
|
|
|
|
...
|
...
|
|